2025-11-03T15:50:57.7206920Z Current runner version: '2.329.0' 2025-11-03T15:50:57.7210220Z Runner name: 'i-09e678448119c7ba2' 2025-11-03T15:50:57.7210710Z Runner group name: 'default' 2025-11-03T15:50:57.7211340Z Machine name: 'ip-10-0-0-209' 2025-11-03T15:50:57.7212840Z ##[group]GITHUB_TOKEN Permissions 2025-11-03T15:50:57.7213930Z Contents: read 2025-11-03T15:50:57.7214230Z Metadata: read 2025-11-03T15:50:57.7214530Z ##[endgroup] 2025-11-03T15:50:57.7215620Z Secret source: Actions 2025-11-03T15:50:57.7215970Z Prepare workflow directory 2025-11-03T15:50:57.8646490Z Prepare all required actions 2025-11-03T15:50:57.8671950Z Getting action download info 2025-11-03T15:50:58.1808400Z Download action repository 'pytorch/test-infra@main' (SHA:dd72a20e27a9820d8aba7291a7d9c1e023f652e1) 2025-11-03T15:50:58.8563760Z Download action repository 'pytorch/pytorch@main' (SHA:94f2657c4b534136aa8958bc35d44ceac5ccd60c) 2025-11-03T15:51:03.5806840Z Download action repository 'nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-11-03T15:51:03.8125940Z Download action repository 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-11-03T15:51:04.1307130Z Getting action download info 2025-11-03T15:51:04.2598200Z Download action repository 'actions/checkout@v4' (SHA:08eba0b27e820071cde6df949e0beb9ba4906955) 2025-11-03T15:51:04.5618590Z Uses: pytorch/pytorch/.github/workflows/_mac-build.yml@refs/heads/main (3f6538febd727b782e6e13cfd026a309fb14351d) 2025-11-03T15:51:04.5620840Z ##[group] Inputs 2025-11-03T15:51:04.5621000Z build-environment: macos-py3-arm64 2025-11-03T15:51:04.5621190Z runner-type: macos-m1-stable 2025-11-03T15:51:04.5621520Z build-generates-artifacts: true 2025-11-03T15:51:04.5621700Z xcode-version: 2025-11-03T15:51:04.5621840Z sync-tag: macos-py3-arm64-build 2025-11-03T15:51:04.5622010Z python-version: 3.12.7 2025-11-03T15:51:04.5622860Z 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-11-03T15:51:04.5623680Z sccache-use-gha: false 2025-11-03T15:51:04.5623820Z ##[endgroup] 2025-11-03T15:51:04.5623960Z Complete job name: macos-py3-arm64 / build 2025-11-03T15:51:04.5911670Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2025-11-03T15:51:04.5912040Z with: 2025-11-03T15:51:04.5912180Z minimum-available-space-in-gb: 6 2025-11-03T15:51:04.5912430Z env: 2025-11-03T15:51:04.5912550Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:51:04.5912720Z SCCACHE_USE_GHA: false 2025-11-03T15:51:04.5912850Z ##[endgroup] 2025-11-03T15:51:04.5966190Z ##[group]Run echo "Print the available disk space for manual inspection" 2025-11-03T15:51:04.5966590Z echo "Print the available disk space for manual inspection" 2025-11-03T15:51:04.5966850Z df -h 2025-11-03T15:51:04.5966970Z  2025-11-03T15:51:04.5967100Z function check_disk_space() { 2025-11-03T15:51:04.5967280Z  set +e 2025-11-03T15:51:04.5967400Z  2025-11-03T15:51:04.5967540Z  # Set the minimum requirement space to 6GB 2025-11-03T15:51:04.5967850Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2025-11-03T15:51:04.5968110Z  2025-11-03T15:51:04.5968270Z  # Use KB to avoid floating point warning like 3.1GB 2025-11-03T15:51:04.5968520Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2025-11-03T15:51:04.5968720Z  do 2025-11-03T15:51:04.5968860Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2025-11-03T15:51:04.5969110Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2025-11-03T15:51:04.5969280Z  2025-11-03T15:51:04.5969670Z  if [ "${MOUNT}" = "/" ]; then 2025-11-03T15:51:04.5969890Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2025-11-03T15:51:04.5970400Z  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-11-03T15:51:04.5970820Z  else 2025-11-03T15:51:04.5971070Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2025-11-03T15:51:04.5971340Z  fi 2025-11-03T15:51:04.5971460Z  fi 2025-11-03T15:51:04.5971580Z  done 2025-11-03T15:51:04.5971690Z  2025-11-03T15:51:04.5971790Z  set -e 2025-11-03T15:51:04.5971910Z } 2025-11-03T15:51:04.5972010Z  2025-11-03T15:51:04.5972130Z RESULT=$(check_disk_space) 2025-11-03T15:51:04.5972300Z echo "${RESULT}" 2025-11-03T15:51:04.5972440Z  2025-11-03T15:51:04.5972610Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2025-11-03T15:51:04.5973080Z  # 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-11-03T15:51:04.5973550Z  # https://github.com/pytorch/pytorch/issues/85440 2025-11-03T15:51:04.5973870Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2025-11-03T15:51:04.5974330Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2025-11-03T15:51:04.5974750Z  sudo launchctl stop com.apple.coresymbolicationd || true 2025-11-03T15:51:04.5975000Z  2025-11-03T15:51:04.5975130Z  # Clean up crash reports on the runner 2025-11-03T15:51:04.5975410Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2025-11-03T15:51:04.5975650Z  2025-11-03T15:51:04.5975810Z  # Also try to clean up torch.hub caching directory 2025-11-03T15:51:04.5976040Z  rm -rf "${HOME}/.cache/torch/hub" || true 2025-11-03T15:51:04.5976220Z  2025-11-03T15:51:04.5976330Z  # Purge conda 2025-11-03T15:51:04.5976480Z  conda clean -p -t -y || true 2025-11-03T15:51:04.5976660Z  # and pip cache 2025-11-03T15:51:04.5976980Z  pip cache purge || true 2025-11-03T15:51:04.5977140Z  2025-11-03T15:51:04.5977330Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2025-11-03T15:51:04.5977570Z  # Re-run the check 2025-11-03T15:51:04.5977730Z  RESULT=$(check_disk_space) 2025-11-03T15:51:04.5977890Z  echo "${RESULT}" 2025-11-03T15:51:04.5978030Z fi 2025-11-03T15:51:04.5978130Z  2025-11-03T15:51:04.5978260Z if [[ "${RESULT}" == *Failure* ]]; then 2025-11-03T15:51:04.5978440Z  df -h 2025-11-03T15:51:04.5978550Z  2025-11-03T15:51:04.5978950Z  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-11-03T15:51:04.5979390Z  exit 1 2025-11-03T15:51:04.5979510Z fi 2025-11-03T15:51:04.5997630Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-11-03T15:51:04.5997840Z env: 2025-11-03T15:51:04.5997970Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:51:04.5998150Z SCCACHE_USE_GHA: false 2025-11-03T15:51:04.5998300Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2025-11-03T15:51:04.5998450Z ##[endgroup] 2025-11-03T15:51:04.6276160Z Print the available disk space for manual inspection 2025-11-03T15:51:04.6280010Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-11-03T15:51:04.6280420Z /dev/disk5s2s1 256Gi 9.6Gi 168Gi 6% 404k 1.8G 0% / 2025-11-03T15:51:04.6280750Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-11-03T15:51:04.6281430Z /dev/disk5s5 256Gi 2.0Gi 168Gi 2% 2 1.8G 0% /System/Volumes/VM 2025-11-03T15:51:04.6281820Z /dev/disk5s3 256Gi 5.9Gi 168Gi 4% 1.1k 1.8G 0% /System/Volumes/Preboot 2025-11-03T15:51:04.6282200Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-11-03T15:51:04.6282660Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-11-03T15:51:04.6283030Z /dev/disk1s3 500Mi 936Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-11-03T15:51:04.6283390Z /dev/disk5s1 256Gi 70Gi 168Gi 30% 3.9M 1.8G 0% /System/Volumes/Data 2025-11-03T15:51:04.6283760Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-11-03T15:51:04.6284210Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-wJtxhC 2025-11-03T15:51:04.6653530Z Success: There is 175651612KB free space left in / for macOS, continue 2025-11-03T15:51:04.6757960Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-11-03T15:51:04.6758230Z with: 2025-11-03T15:51:04.6758360Z submodules: recursive 2025-11-03T15:51:04.6758520Z fetch-depth: 0 2025-11-03T15:51:04.6758660Z env: 2025-11-03T15:51:04.6758800Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:51:04.6758990Z SCCACHE_USE_GHA: false 2025-11-03T15:51:04.6759150Z ##[endgroup] 2025-11-03T15:51:04.6784780Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-11-03T15:51:04.6785350Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-11-03T15:51:04.6801450Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-11-03T15:51:04.6801660Z env: 2025-11-03T15:51:04.6801800Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:51:04.6801980Z SCCACHE_USE_GHA: false 2025-11-03T15:51:04.6802130Z ##[endgroup] 2025-11-03T15:51:04.7089760Z ##[group]Run # Use all available CPUs for fetching 2025-11-03T15:51:04.7090090Z # Use all available CPUs for fetching 2025-11-03T15:51:04.7090310Z cd "${GITHUB_WORKSPACE}" 2025-11-03T15:51:04.7090520Z git config --global fetch.parallel 0 2025-11-03T15:51:04.7090760Z git config --global submodule.fetchJobs 0 2025-11-03T15:51:04.7090960Z  2025-11-03T15:51:04.7091190Z # Clean workspace. The default checkout action should also do this, but 2025-11-03T15:51:04.7091470Z # do it here as well just in case 2025-11-03T15:51:04.7091660Z if [[ -d .git ]]; then 2025-11-03T15:51:04.7091850Z  if [ -z "${NO_SUDO}" ]; then 2025-11-03T15:51:04.7092040Z  sudo git clean -ffdx 2025-11-03T15:51:04.7092210Z  else 2025-11-03T15:51:04.7092360Z  git clean -ffdx 2025-11-03T15:51:04.7092530Z  fi 2025-11-03T15:51:04.7092680Z fi 2025-11-03T15:51:04.7108000Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-11-03T15:51:04.7108220Z env: 2025-11-03T15:51:04.7108350Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:51:04.7108540Z SCCACHE_USE_GHA: false 2025-11-03T15:51:04.7108710Z NO_SUDO: 2025-11-03T15:51:04.7108830Z ##[endgroup] 2025-11-03T15:51:05.7986640Z Removing .additional_ci_files/ 2025-11-03T15:51:05.7987030Z Removing .pytest_cache/ 2025-11-03T15:51:05.7987240Z Removing build/ 2025-11-03T15:51:05.7987390Z Removing dist/ 2025-11-03T15:51:05.7987580Z Removing test/.pytorch-disabled-tests.json 2025-11-03T15:51:05.7987860Z Removing test/__pycache__/ 2025-11-03T15:51:05.7988060Z Removing test/test-reports/ 2025-11-03T15:51:05.7988260Z Removing tools/__pycache__/ 2025-11-03T15:51:05.7988460Z Removing tools/stats/__pycache__/ 2025-11-03T15:51:05.7988770Z Removing tools/stats/upload_utilization_stats/__pycache__/ 2025-11-03T15:51:05.7989660Z Removing tools/testing/__pycache__/ 2025-11-03T15:51:05.7989960Z Removing tools/testing/target_determination/__pycache__/ 2025-11-03T15:51:05.7990300Z Removing tools/testing/target_determination/heuristics/__pycache__/ 2025-11-03T15:51:05.7990600Z Removing usage_log.txt 2025-11-03T15:51:05.8058320Z ##[group]Run actions/checkout@v4 2025-11-03T15:51:05.8058530Z with: 2025-11-03T15:51:05.8058680Z ref: 3f6538febd727b782e6e13cfd026a309fb14351d 2025-11-03T15:51:05.8058880Z fetch-depth: 0 2025-11-03T15:51:05.8059030Z submodules: recursive 2025-11-03T15:51:05.8059180Z show-progress: false 2025-11-03T15:51:05.8059340Z repository: pytorch/pytorch 2025-11-03T15:51:05.8059570Z token: *** 2025-11-03T15:51:05.8059700Z ssh-strict: true 2025-11-03T15:51:05.8059830Z ssh-user: git 2025-11-03T15:51:05.8059970Z persist-credentials: true 2025-11-03T15:51:05.8060130Z clean: true 2025-11-03T15:51:05.8060280Z sparse-checkout-cone-mode: true 2025-11-03T15:51:05.8060460Z fetch-tags: false 2025-11-03T15:51:05.8060600Z lfs: false 2025-11-03T15:51:05.8060750Z set-safe-directory: true 2025-11-03T15:51:05.8061270Z env: 2025-11-03T15:51:05.8061420Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:51:05.8061600Z SCCACHE_USE_GHA: false 2025-11-03T15:51:05.8061760Z ##[endgroup] 2025-11-03T15:51:05.8992270Z Syncing repository: pytorch/pytorch 2025-11-03T15:51:05.8993230Z ##[group]Getting Git version info 2025-11-03T15:51:05.8993540Z Working directory is '/Users/ec2-user/runner/_work/pytorch/pytorch' 2025-11-03T15:51:05.8993960Z [command]/usr/bin/git version 2025-11-03T15:51:05.9030340Z git version 2.39.5 (Apple Git-154) 2025-11-03T15:51:05.9043840Z ##[endgroup] 2025-11-03T15:51:05.9049050Z Copying '/Users/ec2-user/.gitconfig' to '/Users/ec2-user/runner/_work/_temp/f073f8a3-2b97-4178-af56-f1f048c618c1/.gitconfig' 2025-11-03T15:51:05.9055280Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/f073f8a3-2b97-4178-af56-f1f048c618c1' before making global git config changes 2025-11-03T15:51:05.9055970Z Adding repository directory to the temporary git global config as a safe directory 2025-11-03T15:51:05.9058480Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2025-11-03T15:51:05.9128090Z [command]/usr/bin/git config --local --get remote.origin.url 2025-11-03T15:51:05.9180130Z https://github.com/pytorch/pytorch 2025-11-03T15:51:05.9189080Z ##[group]Removing previously created refs, to avoid conflicts 2025-11-03T15:51:05.9191250Z [command]/usr/bin/git rev-parse --symbolic-full-name --verify --quiet HEAD 2025-11-03T15:51:05.9319890Z HEAD 2025-11-03T15:51:05.9394390Z ##[endgroup] 2025-11-03T15:51:05.9396380Z [command]/usr/bin/git submodule status 2025-11-03T15:51:06.0205920Z 7e1e1fe3858c63c251c637ae41a20de425dde96f android/libs/fbjni (v0.1.0-12-g7e1e1fe) 2025-11-03T15:51:06.0470120Z 4dfe081cf6bcd15db339cf2680b9281b8451eeb3 third_party/FP16 (4dfe081) 2025-11-03T15:51:06.0727060Z b408327ac2a15ec3e43352421954f5b1967701d1 third_party/FXdiv (b408327) 2025-11-03T15:51:06.1034480Z c07e3a0400713d546e0dea2d5466dd22ea389c73 third_party/NNPACK (c07e3a0) 2025-11-03T15:51:06.1526910Z 2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07 third_party/NVTX (v3.1.0-263-g2942f16) 2025-11-03T15:51:06.2010550Z 1d8f600fd424278486eade7ed3e877c99f0846b1 third_party/VulkanMemoryAllocator (v2.1.0-982-g1d8f600) 2025-11-03T15:51:06.4187420Z 51a0103656eff6fc9bfd39a4597923c4b542c883 third_party/XNNPACK (remotes/origin/ds/ndk-1243-g51a0103656) 2025-11-03T15:51:06.4763050Z 01aae101b9e5e94d6c16a9514c9fb8df99c93150 third_party/aiter (v0.1.1-92-g01aae101) 2025-11-03T15:51:06.4969900Z 299e5928955cc62af9968370293b916f5130916f third_party/benchmark (v1.9.3) 2025-11-03T15:51:06.5986500Z 7fe50dc3da2069d6645d9deb8c017a876472a977 third_party/composable_kernel (rocm-6.4.3-459-g7fe50dc3d) 2025-11-03T15:51:06.6508400Z 89c932f313c6437c38f2982869beacc89c2f2246 third_party/cpp-httplib (v0.26.0) 2025-11-03T15:51:06.6954820Z 5e3d2445e6a84d9599bee2bf78edbb4d80865e1d third_party/cpuinfo (5e3d244) 2025-11-03T15:51:06.7468620Z 0b1577c8c83401237d601d0d0db5210506705396 third_party/cudnn_frontend (v0.5-61-g0b1577c) 2025-11-03T15:51:06.8123180Z f3fde58372d33e9a5650ba7b80fc48b3b49d40c8 third_party/cutlass (v4.2.1) 2025-11-03T15:51:06.8828510Z c0b988d39a9e47c794d699f29930ed4d7c7e13a4 third_party/fbgemm (v1.4.0-rc1-2-gc0b988d3) 2025-11-03T15:51:06.9268350Z 979702c87a8713a8e0a5e9fee122b90d2ef13be5 third_party/flash-attention (v2.7.4) 2025-11-03T15:51:06.9445980Z a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757 third_party/flatbuffers (v24.12.23) 2025-11-03T15:51:07.0605940Z e424e3f2e607da02742f73db84873b8084fc714c third_party/fmt (12.0.0) 2025-11-03T15:51:07.0970950Z 3fb5c176c17c765a3492cd2f0321b0dab712f350 third_party/gemmlowp/gemmlowp (remotes/origin/revert-87-master-135-g3fb5c17) 2025-11-03T15:51:07.1457800Z 54cbae0d3a67fa890b4c3d9ee162b7860315e341 third_party/gloo (remotes/origin/gh/c-p-i-o/1/base-37-g54cbae0) 2025-11-03T15:51:07.2263060Z 52eb8108c5bdec04579160ae17225d66034bd723 third_party/googletest (release-1.8.0-3544-g52eb8108) 2025-11-03T15:51:07.2702050Z 719d8e6cd7f7a0e01b155657526d693acf97c2b3 third_party/ideep (pytorch-rls-v3.7.1) 2025-11-03T15:51:07.3037710Z dec1d23ca65ab069d225dfe40dea14f455170959 third_party/ittapi (v3.25.5) 2025-11-03T15:51:07.3682600Z 6fcbc53d33dd275c0aba1e5d7701d471b7f6eeb3 third_party/kineto (remotes/origin/sraikund/test-138-g6fcbc53) 2025-11-03T15:51:07.3989800Z d7770c89632329a9914ef1a90289917597639cbe third_party/kleidiai (v1.15.0) 2025-11-03T15:51:07.4194740Z fbd8b99c2b828428947d70fdc046bb55609be93e third_party/mimalloc (v2.2.4) 2025-11-03T15:51:07.4397760Z 55f93686c01528224f448c19128836e7df245f72 third_party/nlohmann (v3.12.0) 2025-11-03T15:51:07.5609690Z e709452ef2bbc1d113faf678c24e6d3467696e83 third_party/onnx (v1.18.0) 2025-11-03T15:51:07.5798150Z a799f4aed9c94b765dcdaabaeab7d5e7e2310878 third_party/opentelemetry-cpp (v1.14.2) 2025-11-03T15:51:07.5987900Z 0fa0ef591e38c2758e3184c6c23e497b9f732ffa third_party/pocketfft (release_for_eigen-40-g0fa0ef5) 2025-11-03T15:51:07.8476920Z d1eca4e4b421cd2997495c4b4e65cea6be4e9b8a third_party/protobuf (v3.7.0-rc.2-1279-gd1eca4e4b) 2025-11-03T15:51:07.8698090Z 072586a71b55b7f8c584153d223e95687148a900 third_party/psimd (heads/master) 2025-11-03T15:51:07.8903990Z 4fe0e1e183925bf8cfa6aae24237e724a96479b8 third_party/pthreadpool (0.1-144-g4fe0e1e) 2025-11-03T15:51:07.9065550Z f5fbe867d2d26e4a0a9177a51f6e568868ad3dc8 third_party/pybind11 (v3.0.1) 2025-11-03T15:51:07.9314250Z f45429b087dd7d5bc78bb40dc7cf06425c252d67 third_party/python-peachpy (remotes/origin/pre-generated) 2025-11-03T15:51:07.9808080Z 5a1d179df9cf652951b59010a2d2075372d67f68 third_party/sleef (3.8) 2025-11-03T15:51:08.0108060Z af0118d13e52f5a08841464a768e01a0bf3e3075 third_party/tensorpipe (heads/main) 2025-11-03T15:51:08.0115560Z ##[group]Cleaning the repository 2025-11-03T15:51:08.0118100Z [command]/usr/bin/git clean -ffdx 2025-11-03T15:51:08.0524120Z [command]/usr/bin/git reset --hard HEAD 2025-11-03T15:51:09.9030150Z HEAD is now at 1cc037fcf07 Update 2025-11-03T15:51:09.9038250Z ##[endgroup] 2025-11-03T15:51:09.9039470Z ##[group]Disabling automatic garbage collection 2025-11-03T15:51:09.9044100Z [command]/usr/bin/git config --local gc.auto 0 2025-11-03T15:51:09.9125150Z ##[endgroup] 2025-11-03T15:51:09.9125460Z ##[group]Setting up auth 2025-11-03T15:51:09.9129240Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-11-03T15:51:09.9190730Z [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-11-03T15:51:09.9663460Z Entering 'android/libs/fbjni' 2025-11-03T15:51:09.9785730Z Entering 'third_party/FP16' 2025-11-03T15:51:09.9891690Z Entering 'third_party/FXdiv' 2025-11-03T15:51:09.9995450Z Entering 'third_party/NNPACK' 2025-11-03T15:51:10.0107550Z Entering 'third_party/NVTX' 2025-11-03T15:51:10.0235570Z Entering 'third_party/VulkanMemoryAllocator' 2025-11-03T15:51:10.0346880Z Entering 'third_party/XNNPACK' 2025-11-03T15:51:10.0596420Z Entering 'third_party/aiter' 2025-11-03T15:51:10.0825750Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-11-03T15:51:10.1028970Z Entering 'third_party/benchmark' 2025-11-03T15:51:10.1147220Z Entering 'third_party/composable_kernel' 2025-11-03T15:51:10.1346410Z Entering 'third_party/cpp-httplib' 2025-11-03T15:51:10.1453950Z Entering 'third_party/cpuinfo' 2025-11-03T15:51:10.1580850Z Entering 'third_party/cudnn_frontend' 2025-11-03T15:51:10.1704270Z Entering 'third_party/cutlass' 2025-11-03T15:51:10.1918250Z Entering 'third_party/fbgemm' 2025-11-03T15:51:10.2172540Z Entering 'third_party/fbgemm/external/asmjit' 2025-11-03T15:51:10.2356340Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-11-03T15:51:10.2616050Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-11-03T15:51:10.2802940Z Entering 'third_party/fbgemm/external/cutlass' 2025-11-03T15:51:10.3085050Z Entering 'third_party/fbgemm/external/googletest' 2025-11-03T15:51:10.3242380Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-11-03T15:51:10.3401410Z Entering 'third_party/fbgemm/external/json' 2025-11-03T15:51:10.3556750Z Entering 'third_party/flash-attention' 2025-11-03T15:51:10.3813820Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-11-03T15:51:10.4052660Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-11-03T15:51:10.4278640Z Entering 'third_party/flatbuffers' 2025-11-03T15:51:10.4444750Z Entering 'third_party/fmt' 2025-11-03T15:51:10.4554080Z Entering 'third_party/gemmlowp/gemmlowp' 2025-11-03T15:51:10.4662840Z Entering 'third_party/gloo' 2025-11-03T15:51:10.4774700Z Entering 'third_party/googletest' 2025-11-03T15:51:10.4885900Z Entering 'third_party/ideep' 2025-11-03T15:51:10.5026450Z Entering 'third_party/ideep/mkl-dnn' 2025-11-03T15:51:10.5229990Z Entering 'third_party/ittapi' 2025-11-03T15:51:10.5334950Z Entering 'third_party/kineto' 2025-11-03T15:51:10.5527560Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-11-03T15:51:10.5729840Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-11-03T15:51:10.5899300Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-11-03T15:51:10.6049890Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-11-03T15:51:10.6210530Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-11-03T15:51:10.6372430Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-11-03T15:51:10.6526880Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-11-03T15:51:10.6667850Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-11-03T15:51:10.6829670Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-11-03T15:51:10.7013170Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-11-03T15:51:10.7173810Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp' 2025-11-03T15:51:10.7353890Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:10.7542220Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:10.7688570Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-11-03T15:51:10.7847660Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-11-03T15:51:10.7967200Z Entering 'third_party/kleidiai' 2025-11-03T15:51:10.8100920Z Entering 'third_party/mimalloc' 2025-11-03T15:51:10.8214850Z Entering 'third_party/nlohmann' 2025-11-03T15:51:10.8367710Z Entering 'third_party/onnx' 2025-11-03T15:51:10.8677790Z Entering 'third_party/onnx/third_party/pybind11' 2025-11-03T15:51:10.8812420Z Entering 'third_party/opentelemetry-cpp' 2025-11-03T15:51:10.9026110Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-11-03T15:51:10.9167990Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-11-03T15:51:10.9332270Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-11-03T15:51:10.9511200Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-11-03T15:51:10.9711350Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-11-03T15:51:10.9871520Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-11-03T15:51:11.0020970Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-11-03T15:51:11.0220130Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:11.0398950Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:11.0533800Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-11-03T15:51:11.0771230Z Entering 'third_party/pocketfft' 2025-11-03T15:51:11.0882620Z Entering 'third_party/protobuf' 2025-11-03T15:51:11.1093130Z Entering 'third_party/protobuf/third_party/benchmark' 2025-11-03T15:51:11.1229290Z Entering 'third_party/protobuf/third_party/googletest' 2025-11-03T15:51:11.1357080Z Entering 'third_party/psimd' 2025-11-03T15:51:11.1463080Z Entering 'third_party/pthreadpool' 2025-11-03T15:51:11.1568160Z Entering 'third_party/pybind11' 2025-11-03T15:51:11.1687670Z Entering 'third_party/python-peachpy' 2025-11-03T15:51:11.1799710Z Entering 'third_party/sleef' 2025-11-03T15:51:11.1912700Z Entering 'third_party/tensorpipe' 2025-11-03T15:51:11.2085280Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-11-03T15:51:11.2234390Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-11-03T15:51:11.2395000Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-11-03T15:51:11.2564000Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-11-03T15:51:11.2731760Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-11-03T15:51:11.2855710Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-11-03T15:51:11.2916170Z [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-11-03T15:51:11.3389960Z Entering 'android/libs/fbjni' 2025-11-03T15:51:11.3491690Z Entering 'third_party/FP16' 2025-11-03T15:51:11.3591150Z Entering 'third_party/FXdiv' 2025-11-03T15:51:11.3689280Z Entering 'third_party/NNPACK' 2025-11-03T15:51:11.3784670Z Entering 'third_party/NVTX' 2025-11-03T15:51:11.3878180Z Entering 'third_party/VulkanMemoryAllocator' 2025-11-03T15:51:11.3973300Z Entering 'third_party/XNNPACK' 2025-11-03T15:51:11.4076830Z Entering 'third_party/aiter' 2025-11-03T15:51:11.4174890Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-11-03T15:51:11.4277200Z Entering 'third_party/benchmark' 2025-11-03T15:51:11.4376750Z Entering 'third_party/composable_kernel' 2025-11-03T15:51:11.4477250Z Entering 'third_party/cpp-httplib' 2025-11-03T15:51:11.4577280Z Entering 'third_party/cpuinfo' 2025-11-03T15:51:11.4675700Z Entering 'third_party/cudnn_frontend' 2025-11-03T15:51:11.4773940Z Entering 'third_party/cutlass' 2025-11-03T15:51:11.4875320Z Entering 'third_party/fbgemm' 2025-11-03T15:51:11.4974420Z Entering 'third_party/fbgemm/external/asmjit' 2025-11-03T15:51:11.5072680Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-11-03T15:51:11.5175540Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-11-03T15:51:11.5274830Z Entering 'third_party/fbgemm/external/cutlass' 2025-11-03T15:51:11.5377000Z Entering 'third_party/fbgemm/external/googletest' 2025-11-03T15:51:11.5474870Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-11-03T15:51:11.5571490Z Entering 'third_party/fbgemm/external/json' 2025-11-03T15:51:11.5669570Z Entering 'third_party/flash-attention' 2025-11-03T15:51:11.5765810Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-11-03T15:51:11.5863490Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-11-03T15:51:11.5964360Z Entering 'third_party/flatbuffers' 2025-11-03T15:51:11.6065150Z Entering 'third_party/fmt' 2025-11-03T15:51:11.6168130Z Entering 'third_party/gemmlowp/gemmlowp' 2025-11-03T15:51:11.6266010Z Entering 'third_party/gloo' 2025-11-03T15:51:11.6364270Z Entering 'third_party/googletest' 2025-11-03T15:51:11.6460450Z Entering 'third_party/ideep' 2025-11-03T15:51:11.6554380Z Entering 'third_party/ideep/mkl-dnn' 2025-11-03T15:51:11.6653340Z Entering 'third_party/ittapi' 2025-11-03T15:51:11.6750290Z Entering 'third_party/kineto' 2025-11-03T15:51:11.6844250Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-11-03T15:51:11.6940590Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-11-03T15:51:11.7039000Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-11-03T15:51:11.7136710Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-11-03T15:51:11.7234420Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-11-03T15:51:11.7331710Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-11-03T15:51:11.7430740Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-11-03T15:51:11.7528540Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-11-03T15:51:11.7627080Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-11-03T15:51:11.7724870Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-11-03T15:51:11.7820890Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp' 2025-11-03T15:51:11.7917210Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:11.8016170Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:11.8118940Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-11-03T15:51:11.8216710Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-11-03T15:51:11.8314690Z Entering 'third_party/kleidiai' 2025-11-03T15:51:11.8413320Z Entering 'third_party/mimalloc' 2025-11-03T15:51:11.8510930Z Entering 'third_party/nlohmann' 2025-11-03T15:51:11.8607140Z Entering 'third_party/onnx' 2025-11-03T15:51:11.8710640Z Entering 'third_party/onnx/third_party/pybind11' 2025-11-03T15:51:11.8812100Z Entering 'third_party/opentelemetry-cpp' 2025-11-03T15:51:11.8910560Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-11-03T15:51:11.9007980Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-11-03T15:51:11.9104920Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-11-03T15:51:11.9200550Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-11-03T15:51:11.9296830Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-11-03T15:51:11.9394710Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-11-03T15:51:11.9490890Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-11-03T15:51:11.9585750Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:11.9686890Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:11.9786400Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-11-03T15:51:11.9893650Z Entering 'third_party/pocketfft' 2025-11-03T15:51:11.9994420Z Entering 'third_party/protobuf' 2025-11-03T15:51:12.0092510Z Entering 'third_party/protobuf/third_party/benchmark' 2025-11-03T15:51:12.0189540Z Entering 'third_party/protobuf/third_party/googletest' 2025-11-03T15:51:12.0288710Z Entering 'third_party/psimd' 2025-11-03T15:51:12.0386710Z Entering 'third_party/pthreadpool' 2025-11-03T15:51:12.0483990Z Entering 'third_party/pybind11' 2025-11-03T15:51:12.0581000Z Entering 'third_party/python-peachpy' 2025-11-03T15:51:12.0679450Z Entering 'third_party/sleef' 2025-11-03T15:51:12.0777990Z Entering 'third_party/tensorpipe' 2025-11-03T15:51:12.0879690Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-11-03T15:51:12.0978350Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-11-03T15:51:12.1075140Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-11-03T15:51:12.1174940Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-11-03T15:51:12.1271130Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-11-03T15:51:12.1385750Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-11-03T15:51:12.1461840Z ##[endgroup] 2025-11-03T15:51:12.1462110Z ##[group]Fetching the repository 2025-11-03T15:51:12.1466620Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-11-03T15:51:17.6345310Z From https://github.com/pytorch/pytorch 2025-11-03T15:51:17.6346130Z - [deleted] (none) -> ciflow/inductor/143544 2025-11-03T15:51:17.7711320Z - [deleted] (none) -> ciflow/inductor/166165 2025-11-03T15:51:17.7711630Z - [deleted] (none) -> ciflow/inductor/166197 2025-11-03T15:51:17.7711890Z - [deleted] (none) -> ciflow/inductor/166812 2025-11-03T15:51:17.7712150Z - [deleted] (none) -> ciflow/inductor/166832 2025-11-03T15:51:17.7712810Z - [deleted] (none) -> ciflow/mps/166215 2025-11-03T15:51:17.7713700Z - [deleted] (none) -> ciflow/trunk/143544 2025-11-03T15:51:17.7714580Z - [deleted] (none) -> ciflow/trunk/165433 2025-11-03T15:51:17.7715270Z - [deleted] (none) -> ciflow/trunk/166165 2025-11-03T15:51:17.7716090Z - [deleted] (none) -> ciflow/trunk/166812 2025-11-03T15:51:19.8650720Z 1cc037fcf07..bf313f72ec7 gh/ezyang/3185/head -> origin/gh/ezyang/3185/head 2025-11-03T15:51:19.8657370Z + 0e68a41b530...c8bc19c0f26 gh/ezyang/3185/orig -> origin/gh/ezyang/3185/orig (forced update) 2025-11-03T15:51:19.8660380Z * [new branch] gh/ezyang/3187/base -> origin/gh/ezyang/3187/base 2025-11-03T15:51:19.8662400Z * [new branch] gh/ezyang/3187/head -> origin/gh/ezyang/3187/head 2025-11-03T15:51:19.8664700Z * [new branch] gh/ezyang/3187/orig -> origin/gh/ezyang/3187/orig 2025-11-03T15:51:19.8667030Z * [new branch] gh/ezyang/3188/base -> origin/gh/ezyang/3188/base 2025-11-03T15:51:19.8668870Z * [new branch] gh/ezyang/3188/head -> origin/gh/ezyang/3188/head 2025-11-03T15:51:19.8671320Z * [new branch] gh/ezyang/3188/orig -> origin/gh/ezyang/3188/orig 2025-11-03T15:51:19.8682470Z 4cdd904de4c..2973dc8db5c gh/guangyey/233/head -> origin/gh/guangyey/233/head 2025-11-03T15:51:19.8690340Z + b2d4a4c8eca...8fe37a9873c gh/guangyey/233/orig -> origin/gh/guangyey/233/orig (forced update) 2025-11-03T15:51:19.8698380Z + 5b84dbeec4a...2e51ade769d gh/guangyey/234/orig -> origin/gh/guangyey/234/orig (forced update) 2025-11-03T15:51:19.8700920Z * [new branch] gh/guangyey/235/base -> origin/gh/guangyey/235/base 2025-11-03T15:51:19.8702580Z * [new branch] gh/guangyey/235/head -> origin/gh/guangyey/235/head 2025-11-03T15:51:19.8705010Z * [new branch] gh/guangyey/235/orig -> origin/gh/guangyey/235/orig 2025-11-03T15:51:19.8726330Z b3e1df2e06b..a735334750b gh/malfet/572/base -> origin/gh/malfet/572/base 2025-11-03T15:51:19.8734580Z 5adb0bdcaab..3dfb3746d39 gh/malfet/572/head -> origin/gh/malfet/572/head 2025-11-03T15:51:19.8742190Z + 613a8619537...eafc8238609 gh/malfet/572/orig -> origin/gh/malfet/572/orig (forced update) 2025-11-03T15:51:19.8774320Z b495c1f82c1..707b50c6572 gh/malfet/586/base -> origin/gh/malfet/586/base 2025-11-03T15:51:19.8782980Z 07486e7d878..b09278e0702 gh/malfet/586/head -> origin/gh/malfet/586/head 2025-11-03T15:51:19.8790850Z + b7639439dc5...c3f4c27b23f gh/malfet/586/orig -> origin/gh/malfet/586/orig (forced update) 2025-11-03T15:51:19.8793790Z * [new branch] gh/malfet/587/base -> origin/gh/malfet/587/base 2025-11-03T15:51:19.8795450Z * [new branch] gh/malfet/587/head -> origin/gh/malfet/587/head 2025-11-03T15:51:19.8797670Z * [new branch] gh/malfet/587/orig -> origin/gh/malfet/587/orig 2025-11-03T15:51:19.8812680Z b68146267ca..b4095c13cc7 gh/robert-hardwick/3/base -> origin/gh/robert-hardwick/3/base 2025-11-03T15:51:19.8820670Z ad49808b778..173c538a071 gh/robert-hardwick/3/head -> origin/gh/robert-hardwick/3/head 2025-11-03T15:51:19.8829490Z + c33e32171b8...6ded5ce0ba2 gh/robert-hardwick/3/orig -> origin/gh/robert-hardwick/3/orig (forced update) 2025-11-03T15:51:19.8836900Z 70f59cea5d9..7c361f343a5 gh/robert-hardwick/4/base -> origin/gh/robert-hardwick/4/base 2025-11-03T15:51:19.8845600Z b054d30bb6d..69db7707408 gh/robert-hardwick/4/head -> origin/gh/robert-hardwick/4/head 2025-11-03T15:51:19.8854430Z + 54d67709359...4a459bbe7ad gh/robert-hardwick/4/orig -> origin/gh/robert-hardwick/4/orig (forced update) 2025-11-03T15:51:19.8862100Z b7186f6284a..0dcbde5299d gh/robert-hardwick/5/base -> origin/gh/robert-hardwick/5/base 2025-11-03T15:51:19.8870480Z 86d50e5d6df..8af5ec86fc3 gh/robert-hardwick/5/head -> origin/gh/robert-hardwick/5/head 2025-11-03T15:51:19.8879850Z + f432c716e26...f753ef638ac gh/robert-hardwick/5/orig -> origin/gh/robert-hardwick/5/orig (forced update) 2025-11-03T15:51:19.8918890Z d7f4524baac..7231d20cb9b gh/tugsbayasgalan/71/head -> origin/gh/tugsbayasgalan/71/head 2025-11-03T15:51:19.8927090Z + 2d085c03a3a...fa93cc8262a gh/tugsbayasgalan/71/orig -> origin/gh/tugsbayasgalan/71/orig (forced update) 2025-11-03T15:51:19.8941310Z 61bcc8d75ad..94f2657c4b5 main -> origin/main 2025-11-03T15:51:19.8949450Z t [tag update] ciflow/binaries_wheel/166407 -> ciflow/binaries_wheel/166407 2025-11-03T15:51:19.8983120Z t [tag update] ciflow/inductor/165367 -> ciflow/inductor/165367 2025-11-03T15:51:19.8991650Z t [tag update] ciflow/inductor/165686 -> ciflow/inductor/165686 2025-11-03T15:51:19.9000660Z t [tag update] ciflow/inductor/166545 -> ciflow/inductor/166545 2025-11-03T15:51:19.9034570Z t [tag update] ciflow/pull/166768 -> ciflow/pull/166768 2025-11-03T15:51:19.9037810Z * [new tag] ciflow/trunk/165646 -> ciflow/trunk/165646 2025-11-03T15:51:19.9039590Z * [new tag] ciflow/trunk/166160 -> ciflow/trunk/166160 2025-11-03T15:51:19.9041770Z * [new tag] ciflow/trunk/166402 -> ciflow/trunk/166402 2025-11-03T15:51:19.9043130Z * [new tag] ciflow/trunk/166715 -> ciflow/trunk/166715 2025-11-03T15:51:19.9044570Z * [new tag] ciflow/trunk/166727 -> ciflow/trunk/166727 2025-11-03T15:51:19.9047150Z t [tag update] ciflow/trunk/166768 -> ciflow/trunk/166768 2025-11-03T15:51:19.9048700Z t [tag update] ciflow/trunk/166813 -> ciflow/trunk/166813 2025-11-03T15:51:19.9050540Z t [tag update] ciflow/trunk/166830 -> ciflow/trunk/166830 2025-11-03T15:51:19.9051840Z * [new tag] ciflow/trunk/166861 -> ciflow/trunk/166861 2025-11-03T15:51:19.9054280Z t [tag update] ciflow/xpu/166830 -> ciflow/xpu/166830 2025-11-03T15:51:19.9055350Z * [new tag] ciflow/xpu/166861 -> ciflow/xpu/166861 2025-11-03T15:51:19.9059040Z * [new tag] trunk/335b5c7d4bf3295d517902370142f007ca024cd0 -> trunk/335b5c7d4bf3295d517902370142f007ca024cd0 2025-11-03T15:51:19.9060320Z * [new tag] trunk/3f6538febd727b782e6e13cfd026a309fb14351d -> trunk/3f6538febd727b782e6e13cfd026a309fb14351d 2025-11-03T15:51:19.9063320Z * [new tag] trunk/73da7a40b6dd0509b179f0ca92d9fa79973ee306 -> trunk/73da7a40b6dd0509b179f0ca92d9fa79973ee306 2025-11-03T15:51:19.9064620Z * [new tag] trunk/76bb27e248750fc558ec4ea9050e09a6f171e9bc -> trunk/76bb27e248750fc558ec4ea9050e09a6f171e9bc 2025-11-03T15:51:19.9067620Z * [new tag] trunk/a2da69385abb4800732e698afacdddd78e9993aa -> trunk/a2da69385abb4800732e698afacdddd78e9993aa 2025-11-03T15:51:19.9070210Z * [new tag] trunk/d17790072381f0e76e177ae4093504a6908a5a4d -> trunk/d17790072381f0e76e177ae4093504a6908a5a4d 2025-11-03T15:51:19.9072830Z * [new tag] trunk/f33abae6957b8ef56268ce22e660d3ed3111c7c3 -> trunk/f33abae6957b8ef56268ce22e660d3ed3111c7c3 2025-11-03T15:51:20.0450240Z [command]/usr/bin/git rev-parse --verify --quiet 3f6538febd727b782e6e13cfd026a309fb14351d^{object} 2025-11-03T15:51:20.0513090Z 3f6538febd727b782e6e13cfd026a309fb14351d 2025-11-03T15:51:20.0516230Z ##[endgroup] 2025-11-03T15:51:20.0516980Z ##[group]Determining the checkout info 2025-11-03T15:51:20.0517270Z ##[endgroup] 2025-11-03T15:51:20.0519260Z [command]/usr/bin/git sparse-checkout disable 2025-11-03T15:51:20.0702200Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-11-03T15:51:20.0762480Z ##[group]Checking out the ref 2025-11-03T15:51:20.0764050Z [command]/usr/bin/git checkout --progress --force 3f6538febd727b782e6e13cfd026a309fb14351d 2025-11-03T15:51:20.5216990Z Previous HEAD position was 1cc037fcf07 Update 2025-11-03T15:51:20.5241550Z HEAD is now at 3f6538febd7 Remove tools from BC linter (#166858) 2025-11-03T15:51:20.5252780Z ##[endgroup] 2025-11-03T15:51:20.5253040Z ##[group]Setting up auth for fetching submodules 2025-11-03T15:51:20.5257230Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-11-03T15:51:20.5327940Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-11-03T15:51:20.5385720Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-11-03T15:51:20.5445100Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-11-03T15:51:20.5499920Z ##[endgroup] 2025-11-03T15:51:20.5500170Z ##[group]Fetching submodules 2025-11-03T15:51:20.5501890Z [command]/usr/bin/git submodule sync --recursive 2025-11-03T15:51:20.5997840Z Synchronizing submodule url for 'android/libs/fbjni' 2025-11-03T15:51:20.6037200Z Synchronizing submodule url for 'third_party/FP16' 2025-11-03T15:51:20.6073620Z Synchronizing submodule url for 'third_party/FXdiv' 2025-11-03T15:51:20.6109880Z Synchronizing submodule url for 'third_party/NNPACK' 2025-11-03T15:51:20.6147060Z Synchronizing submodule url for 'third_party/NVTX' 2025-11-03T15:51:20.6185470Z Synchronizing submodule url for 'third_party/VulkanMemoryAllocator' 2025-11-03T15:51:20.6222230Z Synchronizing submodule url for 'third_party/XNNPACK' 2025-11-03T15:51:20.6263760Z Synchronizing submodule url for 'third_party/aiter' 2025-11-03T15:51:20.6299680Z Synchronizing submodule url for 'third_party/aiter/3rdparty/composable_kernel' 2025-11-03T15:51:20.6340950Z Synchronizing submodule url for 'third_party/benchmark' 2025-11-03T15:51:20.6384900Z Synchronizing submodule url for 'third_party/composable_kernel' 2025-11-03T15:51:20.6424760Z Synchronizing submodule url for 'third_party/cpp-httplib' 2025-11-03T15:51:20.6462640Z Synchronizing submodule url for 'third_party/cpuinfo' 2025-11-03T15:51:20.6500080Z Synchronizing submodule url for 'third_party/cudnn_frontend' 2025-11-03T15:51:20.6537210Z Synchronizing submodule url for 'third_party/cutlass' 2025-11-03T15:51:20.6577080Z Synchronizing submodule url for 'third_party/fbgemm' 2025-11-03T15:51:20.6613010Z Synchronizing submodule url for 'third_party/fbgemm/external/asmjit' 2025-11-03T15:51:20.6649280Z Synchronizing submodule url for 'third_party/fbgemm/external/composable_kernel' 2025-11-03T15:51:20.6688640Z Synchronizing submodule url for 'third_party/fbgemm/external/cpuinfo' 2025-11-03T15:51:20.6726870Z Synchronizing submodule url for 'third_party/fbgemm/external/cutlass' 2025-11-03T15:51:20.6767460Z Synchronizing submodule url for 'third_party/fbgemm/external/googletest' 2025-11-03T15:51:20.6804520Z Synchronizing submodule url for 'third_party/fbgemm/external/hipify_torch' 2025-11-03T15:51:20.6840400Z Synchronizing submodule url for 'third_party/fbgemm/external/json' 2025-11-03T15:51:20.6880350Z Synchronizing submodule url for 'third_party/flash-attention' 2025-11-03T15:51:20.6916630Z Synchronizing submodule url for 'third_party/flash-attention/csrc/composable_kernel' 2025-11-03T15:51:20.6955050Z Synchronizing submodule url for 'third_party/flash-attention/csrc/cutlass' 2025-11-03T15:51:20.6996590Z Synchronizing submodule url for 'third_party/flatbuffers' 2025-11-03T15:51:20.7035220Z Synchronizing submodule url for 'third_party/fmt' 2025-11-03T15:51:20.7072330Z Synchronizing submodule url for 'third_party/gemmlowp/gemmlowp' 2025-11-03T15:51:20.7108480Z Synchronizing submodule url for 'third_party/gloo' 2025-11-03T15:51:20.7145220Z Synchronizing submodule url for 'third_party/googletest' 2025-11-03T15:51:20.7181330Z Synchronizing submodule url for 'third_party/ideep' 2025-11-03T15:51:20.7215080Z Synchronizing submodule url for 'third_party/ideep/mkl-dnn' 2025-11-03T15:51:20.7254540Z Synchronizing submodule url for 'third_party/ittapi' 2025-11-03T15:51:20.7291880Z Synchronizing submodule url for 'third_party/kineto' 2025-11-03T15:51:20.7326240Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog' 2025-11-03T15:51:20.7360400Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-11-03T15:51:20.7397880Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-11-03T15:51:20.7434960Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-11-03T15:51:20.7471360Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-11-03T15:51:20.7505750Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-11-03T15:51:20.7544370Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-11-03T15:51:20.7582700Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-11-03T15:51:20.7619760Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-11-03T15:51:20.7657040Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-11-03T15:51:20.7693620Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp' 2025-11-03T15:51:20.7728680Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:20.7766540Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:20.7807930Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/fmt' 2025-11-03T15:51:20.7844300Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/googletest' 2025-11-03T15:51:20.7882880Z Synchronizing submodule url for 'third_party/kleidiai' 2025-11-03T15:51:20.7920720Z Synchronizing submodule url for 'third_party/mimalloc' 2025-11-03T15:51:20.7957390Z Synchronizing submodule url for 'third_party/nlohmann' 2025-11-03T15:51:20.7994880Z Synchronizing submodule url for 'third_party/onnx' 2025-11-03T15:51:20.8035400Z Synchronizing submodule url for 'third_party/onnx/third_party/pybind11' 2025-11-03T15:51:20.8074590Z Synchronizing submodule url for 'third_party/opentelemetry-cpp' 2025-11-03T15:51:20.8110160Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-11-03T15:51:20.8146040Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/googletest' 2025-11-03T15:51:20.8181930Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-11-03T15:51:20.8217800Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-11-03T15:51:20.8253670Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-11-03T15:51:20.8290110Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-11-03T15:51:20.8326590Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-11-03T15:51:20.8360350Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:20.8396650Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:20.8434840Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-11-03T15:51:20.8481120Z Synchronizing submodule url for 'third_party/pocketfft' 2025-11-03T15:51:20.8519810Z Synchronizing submodule url for 'third_party/protobuf' 2025-11-03T15:51:20.8555670Z Synchronizing submodule url for 'third_party/protobuf/third_party/benchmark' 2025-11-03T15:51:20.8591750Z Synchronizing submodule url for 'third_party/protobuf/third_party/googletest' 2025-11-03T15:51:20.8630690Z Synchronizing submodule url for 'third_party/psimd' 2025-11-03T15:51:20.8668090Z Synchronizing submodule url for 'third_party/pthreadpool' 2025-11-03T15:51:20.8704550Z Synchronizing submodule url for 'third_party/pybind11' 2025-11-03T15:51:20.8741180Z Synchronizing submodule url for 'third_party/python-peachpy' 2025-11-03T15:51:20.8777350Z Synchronizing submodule url for 'third_party/sleef' 2025-11-03T15:51:20.8814080Z Synchronizing submodule url for 'third_party/tensorpipe' 2025-11-03T15:51:20.8848090Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/googletest' 2025-11-03T15:51:20.8883850Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/libnop' 2025-11-03T15:51:20.8919220Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/libuv' 2025-11-03T15:51:20.8955820Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/pybind11' 2025-11-03T15:51:20.8990130Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-11-03T15:51:20.9033180Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --recursive 2025-11-03T15:51:20.9734320Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-11-03T15:51:20.9901540Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-11-03T15:51:21.0064400Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-11-03T15:51:21.0232710Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-11-03T15:51:21.0471000Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-11-03T15:51:21.0710290Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-11-03T15:51:21.1656300Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-11-03T15:51:21.2832850Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-11-03T15:51:21.4934370Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-11-03T15:51:21.5464650Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-11-03T15:51:21.6649050Z Submodule path 'third_party/composable_kernel': checked out '7fe50dc3da2069d6645d9deb8c017a876472a977' 2025-11-03T15:51:21.6928590Z Submodule path 'third_party/cpp-httplib': checked out '89c932f313c6437c38f2982869beacc89c2f2246' 2025-11-03T15:51:21.7465210Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-11-03T15:51:21.7862790Z Submodule path 'third_party/cudnn_frontend': checked out '0b1577c8c83401237d601d0d0db5210506705396' 2025-11-03T15:51:21.8644320Z Submodule path 'third_party/cutlass': checked out 'f3fde58372d33e9a5650ba7b80fc48b3b49d40c8' 2025-11-03T15:51:21.9631610Z Submodule path 'third_party/fbgemm': checked out 'c0b988d39a9e47c794d699f29930ed4d7c7e13a4' 2025-11-03T15:51:22.0136610Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'a3199e8857792cd10b7589ff5d58343d2c9008ea' 2025-11-03T15:51:22.2233920Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out '7fe50dc3da2069d6645d9deb8c017a876472a977' 2025-11-03T15:51:22.2871870Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-11-03T15:51:22.3878100Z Submodule path 'third_party/fbgemm/external/cutlass': checked out '98125ce499b0fdf7ffbe0e3052f5b8709f4840f8' 2025-11-03T15:51:22.4603350Z Submodule path 'third_party/fbgemm/external/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-11-03T15:51:22.4868470Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out '63b6a7b541fa7f08f8475ca7d74054db36ff2691' 2025-11-03T15:51:22.6160080Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-11-03T15:51:22.6946230Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-11-03T15:51:22.9049420Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-11-03T15:51:23.0220650Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-11-03T15:51:23.1288640Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-11-03T15:51:23.1551080Z Submodule path 'third_party/fmt': checked out 'e424e3f2e607da02742f73db84873b8084fc714c' 2025-11-03T15:51:23.1814170Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-11-03T15:51:23.2167670Z Submodule path 'third_party/gloo': checked out '54cbae0d3a67fa890b4c3d9ee162b7860315e341' 2025-11-03T15:51:23.2519430Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-11-03T15:51:23.2720540Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-11-03T15:51:23.5886190Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-11-03T15:51:23.6159200Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-11-03T15:51:23.6547740Z Submodule path 'third_party/kineto': checked out '6fcbc53d33dd275c0aba1e5d7701d471b7f6eeb3' 2025-11-03T15:51:23.7244440Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out 'd2ffe0a4e3acace628db49974246b66fc3e85fb1' 2025-11-03T15:51:23.8294000Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-11-03T15:51:23.8859440Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-11-03T15:51:23.9758140Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-11-03T15:51:24.0071400Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-11-03T15:51:24.0370900Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-11-03T15:51:24.0808080Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-11-03T15:51:24.1530020Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-11-03T15:51:24.2970000Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-11-03T15:51:24.3294610Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-11-03T15:51:24.3831970Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp': checked out 'b1234816facfdda29845c46696a02998a4af115a' 2025-11-03T15:51:24.4877000Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'd7ba35bbb649209c66e582d5a0244ba988a15159' 2025-11-03T15:51:24.5605710Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-11-03T15:51:24.6454170Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-11-03T15:51:24.7168880Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-11-03T15:51:24.7796650Z Submodule path 'third_party/kleidiai': checked out 'd7770c89632329a9914ef1a90289917597639cbe' 2025-11-03T15:51:24.8609450Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-11-03T15:51:24.9881310Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-11-03T15:51:25.0586910Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-11-03T15:51:25.1528750Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-11-03T15:51:25.2553600Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-11-03T15:51:25.3246040Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-11-03T15:51:25.3991890Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-11-03T15:51:25.4416670Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-11-03T15:51:25.5720970Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-11-03T15:51:25.6112390Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-11-03T15:51:25.6395080Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-11-03T15:51:25.6926770Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-11-03T15:51:25.7923990Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-11-03T15:51:25.8621300Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-11-03T15:51:26.1405730Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-11-03T15:51:26.1626820Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-11-03T15:51:26.2471730Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-11-03T15:51:26.3057070Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-11-03T15:51:26.3821590Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-11-03T15:51:26.3982850Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-11-03T15:51:26.4148580Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-11-03T15:51:26.5041020Z Submodule path 'third_party/pybind11': checked out 'f5fbe867d2d26e4a0a9177a51f6e568868ad3dc8' 2025-11-03T15:51:26.5269660Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-11-03T15:51:26.5608810Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-11-03T15:51:26.5992740Z Submodule path 'third_party/tensorpipe': checked out 'af0118d13e52f5a08841464a768e01a0bf3e3075' 2025-11-03T15:51:26.6735290Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-11-03T15:51:26.7029410Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-11-03T15:51:26.8304650Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b' 2025-11-03T15:51:26.9126240Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-11-03T15:51:26.9364080Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-11-03T15:51:26.9436910Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-11-03T15:51:26.9990860Z Entering 'android/libs/fbjni' 2025-11-03T15:51:27.0072870Z Entering 'third_party/FP16' 2025-11-03T15:51:27.0152310Z Entering 'third_party/FXdiv' 2025-11-03T15:51:27.0232780Z Entering 'third_party/NNPACK' 2025-11-03T15:51:27.0311500Z Entering 'third_party/NVTX' 2025-11-03T15:51:27.0390350Z Entering 'third_party/VulkanMemoryAllocator' 2025-11-03T15:51:27.0468960Z Entering 'third_party/XNNPACK' 2025-11-03T15:51:27.0552920Z Entering 'third_party/aiter' 2025-11-03T15:51:27.0631560Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-11-03T15:51:27.0713640Z Entering 'third_party/benchmark' 2025-11-03T15:51:27.0793960Z Entering 'third_party/composable_kernel' 2025-11-03T15:51:27.0874610Z Entering 'third_party/cpp-httplib' 2025-11-03T15:51:27.0954070Z Entering 'third_party/cpuinfo' 2025-11-03T15:51:27.1033260Z Entering 'third_party/cudnn_frontend' 2025-11-03T15:51:27.1113370Z Entering 'third_party/cutlass' 2025-11-03T15:51:27.1194700Z Entering 'third_party/fbgemm' 2025-11-03T15:51:27.1273940Z Entering 'third_party/fbgemm/external/asmjit' 2025-11-03T15:51:27.1352910Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-11-03T15:51:27.1435440Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-11-03T15:51:27.1514740Z Entering 'third_party/fbgemm/external/cutlass' 2025-11-03T15:51:27.1596700Z Entering 'third_party/fbgemm/external/googletest' 2025-11-03T15:51:27.1676960Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-11-03T15:51:27.1756660Z Entering 'third_party/fbgemm/external/json' 2025-11-03T15:51:27.1837660Z Entering 'third_party/flash-attention' 2025-11-03T15:51:27.1917020Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-11-03T15:51:27.2003340Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-11-03T15:51:27.2092360Z Entering 'third_party/flatbuffers' 2025-11-03T15:51:27.2176720Z Entering 'third_party/fmt' 2025-11-03T15:51:27.2258390Z Entering 'third_party/gemmlowp/gemmlowp' 2025-11-03T15:51:27.2339280Z Entering 'third_party/gloo' 2025-11-03T15:51:27.2421310Z Entering 'third_party/googletest' 2025-11-03T15:51:27.2501730Z Entering 'third_party/ideep' 2025-11-03T15:51:27.2578580Z Entering 'third_party/ideep/mkl-dnn' 2025-11-03T15:51:27.2661550Z Entering 'third_party/ittapi' 2025-11-03T15:51:27.2741850Z Entering 'third_party/kineto' 2025-11-03T15:51:27.2820110Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-11-03T15:51:27.2899160Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-11-03T15:51:27.2979800Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-11-03T15:51:27.3058930Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-11-03T15:51:27.3137390Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-11-03T15:51:27.3213990Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-11-03T15:51:27.3295140Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-11-03T15:51:27.3373900Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-11-03T15:51:27.3453400Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-11-03T15:51:27.3532630Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-11-03T15:51:27.3611150Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp' 2025-11-03T15:51:27.3688660Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:27.3768600Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:27.3852550Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-11-03T15:51:27.3931890Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-11-03T15:51:27.4012770Z Entering 'third_party/kleidiai' 2025-11-03T15:51:27.4091360Z Entering 'third_party/mimalloc' 2025-11-03T15:51:27.4170270Z Entering 'third_party/nlohmann' 2025-11-03T15:51:27.4248270Z Entering 'third_party/onnx' 2025-11-03T15:51:27.4334200Z Entering 'third_party/onnx/third_party/pybind11' 2025-11-03T15:51:27.4415350Z Entering 'third_party/opentelemetry-cpp' 2025-11-03T15:51:27.4495910Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-11-03T15:51:27.4575670Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-11-03T15:51:27.4655560Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-11-03T15:51:27.4735370Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-11-03T15:51:27.4818910Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-11-03T15:51:27.4896780Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-11-03T15:51:27.4976390Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-11-03T15:51:27.5053030Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:27.5131930Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:27.5214600Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-11-03T15:51:27.5302040Z Entering 'third_party/pocketfft' 2025-11-03T15:51:27.5384500Z Entering 'third_party/protobuf' 2025-11-03T15:51:27.5465230Z Entering 'third_party/protobuf/third_party/benchmark' 2025-11-03T15:51:27.5544040Z Entering 'third_party/protobuf/third_party/googletest' 2025-11-03T15:51:27.5623350Z Entering 'third_party/psimd' 2025-11-03T15:51:27.5702170Z Entering 'third_party/pthreadpool' 2025-11-03T15:51:27.5780900Z Entering 'third_party/pybind11' 2025-11-03T15:51:27.5859420Z Entering 'third_party/python-peachpy' 2025-11-03T15:51:27.5937990Z Entering 'third_party/sleef' 2025-11-03T15:51:27.6016920Z Entering 'third_party/tensorpipe' 2025-11-03T15:51:27.6093730Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-11-03T15:51:27.6173070Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-11-03T15:51:27.6250410Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-11-03T15:51:27.6329350Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-11-03T15:51:27.6405960Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-11-03T15:51:27.6497420Z ##[endgroup] 2025-11-03T15:51:27.6497690Z ##[group]Persisting credentials for submodules 2025-11-03T15:51:27.6500470Z [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-11-03T15:51:27.6998930Z Entering 'android/libs/fbjni' 2025-11-03T15:51:27.7066970Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7067270Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7131060Z Entering 'third_party/FP16' 2025-11-03T15:51:27.7195940Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7196170Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7260620Z Entering 'third_party/FXdiv' 2025-11-03T15:51:27.7326610Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7326850Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7390170Z Entering 'third_party/NNPACK' 2025-11-03T15:51:27.7455650Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7455870Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7520600Z Entering 'third_party/NVTX' 2025-11-03T15:51:27.7586510Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7587820Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7655950Z Entering 'third_party/VulkanMemoryAllocator' 2025-11-03T15:51:27.7720600Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7720830Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7785660Z Entering 'third_party/XNNPACK' 2025-11-03T15:51:27.7850920Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7851390Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7921420Z Entering 'third_party/aiter' 2025-11-03T15:51:27.7988390Z url.https://github.com/.insteadof 2025-11-03T15:51:27.7988620Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8050240Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-11-03T15:51:27.8114210Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8114460Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8180190Z Entering 'third_party/benchmark' 2025-11-03T15:51:27.8244750Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8244970Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8307280Z Entering 'third_party/composable_kernel' 2025-11-03T15:51:27.8370540Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8370760Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8436400Z Entering 'third_party/cpp-httplib' 2025-11-03T15:51:27.8502370Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8502600Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8566020Z Entering 'third_party/cpuinfo' 2025-11-03T15:51:27.8630670Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8630880Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8693960Z Entering 'third_party/cudnn_frontend' 2025-11-03T15:51:27.8756560Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8756810Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8820920Z Entering 'third_party/cutlass' 2025-11-03T15:51:27.8884940Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8885400Z url.https://github.com/.insteadof 2025-11-03T15:51:27.8952050Z Entering 'third_party/fbgemm' 2025-11-03T15:51:27.9017880Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9018110Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9081850Z Entering 'third_party/fbgemm/external/asmjit' 2025-11-03T15:51:27.9147330Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9209670Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9209940Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-11-03T15:51:27.9272990Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9273200Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9340240Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-11-03T15:51:27.9404900Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9405120Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9469390Z Entering 'third_party/fbgemm/external/cutlass' 2025-11-03T15:51:27.9534290Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9534730Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9599180Z Entering 'third_party/fbgemm/external/googletest' 2025-11-03T15:51:27.9664030Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9664260Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9727590Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-11-03T15:51:27.9793080Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9793290Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9857200Z Entering 'third_party/fbgemm/external/json' 2025-11-03T15:51:27.9919790Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9920010Z url.https://github.com/.insteadof 2025-11-03T15:51:27.9986650Z Entering 'third_party/flash-attention' 2025-11-03T15:51:28.0052360Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0052580Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0117510Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-11-03T15:51:28.0182330Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0182860Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0246680Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-11-03T15:51:28.0310240Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0310470Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0379160Z Entering 'third_party/flatbuffers' 2025-11-03T15:51:28.0446310Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0446530Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0511480Z Entering 'third_party/fmt' 2025-11-03T15:51:28.0576460Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0576690Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0640440Z Entering 'third_party/gemmlowp/gemmlowp' 2025-11-03T15:51:28.0705780Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0706000Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0769620Z Entering 'third_party/gloo' 2025-11-03T15:51:28.0834520Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0834750Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0898700Z Entering 'third_party/googletest' 2025-11-03T15:51:28.0963730Z url.https://github.com/.insteadof 2025-11-03T15:51:28.0963950Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1026870Z Entering 'third_party/ideep' 2025-11-03T15:51:28.1091530Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1092370Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1154110Z Entering 'third_party/ideep/mkl-dnn' 2025-11-03T15:51:28.1218230Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1218850Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1285580Z Entering 'third_party/ittapi' 2025-11-03T15:51:28.1353440Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1353660Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1418060Z Entering 'third_party/kineto' 2025-11-03T15:51:28.1483080Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1483300Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1545010Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-11-03T15:51:28.1609110Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1609330Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1672480Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-11-03T15:51:28.1735620Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1735850Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1802440Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-11-03T15:51:28.1867960Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1868200Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1933360Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-11-03T15:51:28.1999160Z url.https://github.com/.insteadof 2025-11-03T15:51:28.1999390Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2063030Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-11-03T15:51:28.2126670Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2126890Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2188430Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-11-03T15:51:28.2251900Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2252180Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2319740Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-11-03T15:51:28.2384580Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2384800Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2448040Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-11-03T15:51:28.2511380Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2511610Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2576660Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-11-03T15:51:28.2641800Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2642020Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2705590Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-11-03T15:51:28.2770500Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2770730Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2836350Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp' 2025-11-03T15:51:28.2900840Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2901060Z url.https://github.com/.insteadof 2025-11-03T15:51:28.2964330Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:28.3029480Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3029830Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3095730Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:28.3161350Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3161570Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3229990Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-11-03T15:51:28.3294470Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3294690Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3357900Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-11-03T15:51:28.3420880Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3421100Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3488560Z Entering 'third_party/kleidiai' 2025-11-03T15:51:28.3553650Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3553880Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3617870Z Entering 'third_party/mimalloc' 2025-11-03T15:51:28.3683450Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3683670Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3746070Z Entering 'third_party/nlohmann' 2025-11-03T15:51:28.3810390Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3810620Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3873010Z Entering 'third_party/onnx' 2025-11-03T15:51:28.3936390Z url.https://github.com/.insteadof 2025-11-03T15:51:28.3936630Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4004710Z Entering 'third_party/onnx/third_party/pybind11' 2025-11-03T15:51:28.4070770Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4070980Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4137770Z Entering 'third_party/opentelemetry-cpp' 2025-11-03T15:51:28.4203390Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4203620Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4267380Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-11-03T15:51:28.4333040Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4333270Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4395880Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-11-03T15:51:28.4460210Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4460420Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4523570Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-11-03T15:51:28.4589080Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4589510Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4653270Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-11-03T15:51:28.4717420Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4717650Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4782630Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-11-03T15:51:28.4848400Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4848610Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4913490Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-11-03T15:51:28.4978550Z url.https://github.com/.insteadof 2025-11-03T15:51:28.4978770Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5041730Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-11-03T15:51:28.5106690Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5107000Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5169640Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:28.5233140Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5233370Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5298390Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:28.5363340Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5363550Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5430500Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-11-03T15:51:28.5496240Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5496540Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5570150Z Entering 'third_party/pocketfft' 2025-11-03T15:51:28.5638850Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5639080Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5702720Z Entering 'third_party/protobuf' 2025-11-03T15:51:28.5766540Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5766780Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5829210Z Entering 'third_party/protobuf/third_party/benchmark' 2025-11-03T15:51:28.5893880Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5894090Z url.https://github.com/.insteadof 2025-11-03T15:51:28.5956940Z Entering 'third_party/protobuf/third_party/googletest' 2025-11-03T15:51:28.6019850Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6020060Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6085430Z Entering 'third_party/psimd' 2025-11-03T15:51:28.6151400Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6151620Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6216390Z Entering 'third_party/pthreadpool' 2025-11-03T15:51:28.6281850Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6282070Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6345500Z Entering 'third_party/pybind11' 2025-11-03T15:51:28.6408650Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6408900Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6473120Z Entering 'third_party/python-peachpy' 2025-11-03T15:51:28.6537530Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6537750Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6600620Z Entering 'third_party/sleef' 2025-11-03T15:51:28.6665720Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6665950Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6730140Z Entering 'third_party/tensorpipe' 2025-11-03T15:51:28.6795360Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6795580Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6857670Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-11-03T15:51:28.6920710Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6920930Z url.https://github.com/.insteadof 2025-11-03T15:51:28.6983420Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-11-03T15:51:28.7048660Z url.https://github.com/.insteadof 2025-11-03T15:51:28.7048900Z url.https://github.com/.insteadof 2025-11-03T15:51:28.7113520Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-11-03T15:51:28.7178330Z url.https://github.com/.insteadof 2025-11-03T15:51:28.7178560Z url.https://github.com/.insteadof 2025-11-03T15:51:28.7240440Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-11-03T15:51:28.7305410Z url.https://github.com/.insteadof 2025-11-03T15:51:28.7305860Z url.https://github.com/.insteadof 2025-11-03T15:51:28.7367990Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-11-03T15:51:28.7431100Z url.https://github.com/.insteadof 2025-11-03T15:51:28.7431320Z url.https://github.com/.insteadof 2025-11-03T15:51:28.7509220Z [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-11-03T15:51:28.7990900Z Entering 'android/libs/fbjni' 2025-11-03T15:51:28.8089230Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-11-03T15:51:28.8122610Z Entering 'third_party/FP16' 2025-11-03T15:51:28.8217490Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-11-03T15:51:28.8250610Z Entering 'third_party/FXdiv' 2025-11-03T15:51:28.8345280Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-11-03T15:51:28.8378330Z Entering 'third_party/NNPACK' 2025-11-03T15:51:28.8474360Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-11-03T15:51:28.8507850Z Entering 'third_party/NVTX' 2025-11-03T15:51:28.8602280Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-11-03T15:51:28.8636410Z Entering 'third_party/VulkanMemoryAllocator' 2025-11-03T15:51:28.8730380Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-11-03T15:51:28.8764090Z Entering 'third_party/XNNPACK' 2025-11-03T15:51:28.8858900Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-11-03T15:51:28.8897220Z Entering 'third_party/aiter' 2025-11-03T15:51:28.8994460Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-11-03T15:51:28.9026390Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-11-03T15:51:28.9121470Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-11-03T15:51:28.9158720Z Entering 'third_party/benchmark' 2025-11-03T15:51:28.9255570Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-11-03T15:51:28.9289480Z Entering 'third_party/composable_kernel' 2025-11-03T15:51:28.9385830Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-11-03T15:51:28.9422870Z Entering 'third_party/cpp-httplib' 2025-11-03T15:51:28.9519900Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-11-03T15:51:28.9554160Z Entering 'third_party/cpuinfo' 2025-11-03T15:51:28.9649620Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-11-03T15:51:28.9684180Z Entering 'third_party/cudnn_frontend' 2025-11-03T15:51:28.9778220Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-11-03T15:51:28.9811900Z Entering 'third_party/cutlass' 2025-11-03T15:51:28.9907400Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-11-03T15:51:28.9943160Z Entering 'third_party/fbgemm' 2025-11-03T15:51:29.0037640Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-11-03T15:51:29.0069740Z Entering 'third_party/fbgemm/external/asmjit' 2025-11-03T15:51:29.0166250Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-11-03T15:51:29.0198210Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-11-03T15:51:29.0294160Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-11-03T15:51:29.0330110Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-11-03T15:51:29.0427480Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-11-03T15:51:29.0460800Z Entering 'third_party/fbgemm/external/cutlass' 2025-11-03T15:51:29.0556760Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-11-03T15:51:29.0592860Z Entering 'third_party/fbgemm/external/googletest' 2025-11-03T15:51:29.0689430Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-11-03T15:51:29.0721950Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-11-03T15:51:29.0817450Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-11-03T15:51:29.0851050Z Entering 'third_party/fbgemm/external/json' 2025-11-03T15:51:29.0947440Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-11-03T15:51:29.0983040Z Entering 'third_party/flash-attention' 2025-11-03T15:51:29.1081960Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-11-03T15:51:29.1114490Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-11-03T15:51:29.1209660Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-11-03T15:51:29.1243800Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-11-03T15:51:29.1340850Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-11-03T15:51:29.1379010Z Entering 'third_party/flatbuffers' 2025-11-03T15:51:29.1477620Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-11-03T15:51:29.1512250Z Entering 'third_party/fmt' 2025-11-03T15:51:29.1606440Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-11-03T15:51:29.1639890Z Entering 'third_party/gemmlowp/gemmlowp' 2025-11-03T15:51:29.1734060Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-11-03T15:51:29.1767810Z Entering 'third_party/gloo' 2025-11-03T15:51:29.1861880Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-11-03T15:51:29.1894380Z Entering 'third_party/googletest' 2025-11-03T15:51:29.1987600Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-11-03T15:51:29.2021080Z Entering 'third_party/ideep' 2025-11-03T15:51:29.2113430Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-11-03T15:51:29.2145340Z Entering 'third_party/ideep/mkl-dnn' 2025-11-03T15:51:29.2240380Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-11-03T15:51:29.2277710Z Entering 'third_party/ittapi' 2025-11-03T15:51:29.2374300Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-11-03T15:51:29.2407200Z Entering 'third_party/kineto' 2025-11-03T15:51:29.2502570Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-11-03T15:51:29.2534250Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-11-03T15:51:29.2629250Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-11-03T15:51:29.2661550Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-11-03T15:51:29.2757100Z 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-11-03T15:51:29.2790110Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-11-03T15:51:29.2885380Z 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-11-03T15:51:29.2918120Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-11-03T15:51:29.3011580Z 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-11-03T15:51:29.3044250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-11-03T15:51:29.3138570Z 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-11-03T15:51:29.3170630Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-11-03T15:51:29.3266890Z 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-11-03T15:51:29.3302180Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-11-03T15:51:29.3397950Z 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-11-03T15:51:29.3431110Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-11-03T15:51:29.3527850Z 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-11-03T15:51:29.3561270Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-11-03T15:51:29.3657230Z 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-11-03T15:51:29.3691020Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-11-03T15:51:29.3787220Z 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-11-03T15:51:29.3820880Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp' 2025-11-03T15:51:29.3915930Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/prometheus-cpp/config remote.origin.url 2025-11-03T15:51:29.3947800Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:29.4043840Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/prometheus-cpp/modules/civetweb/config remote.origin.url 2025-11-03T15:51:29.4077690Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:29.4177740Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/prometheus-cpp/modules/googletest/config remote.origin.url 2025-11-03T15:51:29.4214550Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-11-03T15:51:29.4309300Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-11-03T15:51:29.4341810Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-11-03T15:51:29.4437470Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-11-03T15:51:29.4473050Z Entering 'third_party/kleidiai' 2025-11-03T15:51:29.4568190Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-11-03T15:51:29.4601520Z Entering 'third_party/mimalloc' 2025-11-03T15:51:29.4695740Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-11-03T15:51:29.4728830Z Entering 'third_party/nlohmann' 2025-11-03T15:51:29.4824250Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-11-03T15:51:29.4857370Z Entering 'third_party/onnx' 2025-11-03T15:51:29.4951710Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-11-03T15:51:29.4990210Z Entering 'third_party/onnx/third_party/pybind11' 2025-11-03T15:51:29.5085870Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-11-03T15:51:29.5120570Z Entering 'third_party/opentelemetry-cpp' 2025-11-03T15:51:29.5215070Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-11-03T15:51:29.5247270Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-11-03T15:51:29.5343420Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-11-03T15:51:29.5376870Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-11-03T15:51:29.5472700Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-11-03T15:51:29.5505550Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-11-03T15:51:29.5600440Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-11-03T15:51:29.5633670Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-11-03T15:51:29.5728100Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-11-03T15:51:29.5762350Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-11-03T15:51:29.5858540Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-11-03T15:51:29.5891160Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-11-03T15:51:29.5991030Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-11-03T15:51:29.6023880Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-11-03T15:51:29.6120200Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-11-03T15:51:29.6152220Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:29.6246940Z 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-11-03T15:51:29.6281050Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:29.6377570Z 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-11-03T15:51:29.6413390Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-11-03T15:51:29.6509050Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-11-03T15:51:29.6550430Z Entering 'third_party/pocketfft' 2025-11-03T15:51:29.6648930Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-11-03T15:51:29.6682320Z Entering 'third_party/protobuf' 2025-11-03T15:51:29.6777210Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-11-03T15:51:29.6811750Z Entering 'third_party/protobuf/third_party/benchmark' 2025-11-03T15:51:29.6907210Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-11-03T15:51:29.6939890Z Entering 'third_party/protobuf/third_party/googletest' 2025-11-03T15:51:29.7034350Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-11-03T15:51:29.7070120Z Entering 'third_party/psimd' 2025-11-03T15:51:29.7166610Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-11-03T15:51:29.7199390Z Entering 'third_party/pthreadpool' 2025-11-03T15:51:29.7293560Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-11-03T15:51:29.7327570Z Entering 'third_party/pybind11' 2025-11-03T15:51:29.7422670Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-11-03T15:51:29.7457860Z Entering 'third_party/python-peachpy' 2025-11-03T15:51:29.7552960Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-11-03T15:51:29.7586180Z Entering 'third_party/sleef' 2025-11-03T15:51:29.7681850Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-11-03T15:51:29.7714790Z Entering 'third_party/tensorpipe' 2025-11-03T15:51:29.7810170Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-11-03T15:51:29.7842660Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-11-03T15:51:29.7936550Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-11-03T15:51:29.7969120Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-11-03T15:51:29.8064430Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-11-03T15:51:29.8098260Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-11-03T15:51:29.8194640Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-11-03T15:51:29.8228280Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-11-03T15:51:29.8324360Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-11-03T15:51:29.8356050Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-11-03T15:51:29.8452570Z 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-11-03T15:51:29.8652240Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-11-03T15:51:29.9142660Z Entering 'android/libs/fbjni' 2025-11-03T15:51:29.9225780Z Entering 'third_party/FP16' 2025-11-03T15:51:29.9306570Z Entering 'third_party/FXdiv' 2025-11-03T15:51:29.9386280Z Entering 'third_party/NNPACK' 2025-11-03T15:51:29.9466860Z Entering 'third_party/NVTX' 2025-11-03T15:51:29.9546270Z Entering 'third_party/VulkanMemoryAllocator' 2025-11-03T15:51:29.9626190Z Entering 'third_party/XNNPACK' 2025-11-03T15:51:29.9712280Z Entering 'third_party/aiter' 2025-11-03T15:51:29.9793840Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-11-03T15:51:29.9877190Z Entering 'third_party/benchmark' 2025-11-03T15:51:29.9960150Z Entering 'third_party/composable_kernel' 2025-11-03T15:51:30.0042130Z Entering 'third_party/cpp-httplib' 2025-11-03T15:51:30.0121730Z Entering 'third_party/cpuinfo' 2025-11-03T15:51:30.0200120Z Entering 'third_party/cudnn_frontend' 2025-11-03T15:51:30.0278500Z Entering 'third_party/cutlass' 2025-11-03T15:51:30.0359800Z Entering 'third_party/fbgemm' 2025-11-03T15:51:30.0438380Z Entering 'third_party/fbgemm/external/asmjit' 2025-11-03T15:51:30.0518030Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-11-03T15:51:30.0601300Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-11-03T15:51:30.0682260Z Entering 'third_party/fbgemm/external/cutlass' 2025-11-03T15:51:30.0763790Z Entering 'third_party/fbgemm/external/googletest' 2025-11-03T15:51:30.0844730Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-11-03T15:51:30.0922800Z Entering 'third_party/fbgemm/external/json' 2025-11-03T15:51:30.1004800Z Entering 'third_party/flash-attention' 2025-11-03T15:51:30.1082370Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-11-03T15:51:30.1164230Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-11-03T15:51:30.1249250Z Entering 'third_party/flatbuffers' 2025-11-03T15:51:30.1332160Z Entering 'third_party/fmt' 2025-11-03T15:51:30.1413010Z Entering 'third_party/gemmlowp/gemmlowp' 2025-11-03T15:51:30.1494060Z Entering 'third_party/gloo' 2025-11-03T15:51:30.1573720Z Entering 'third_party/googletest' 2025-11-03T15:51:30.1653410Z Entering 'third_party/ideep' 2025-11-03T15:51:30.1731690Z Entering 'third_party/ideep/mkl-dnn' 2025-11-03T15:51:30.1815580Z Entering 'third_party/ittapi' 2025-11-03T15:51:30.1896850Z Entering 'third_party/kineto' 2025-11-03T15:51:30.1975520Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-11-03T15:51:30.2053360Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-11-03T15:51:30.2134200Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-11-03T15:51:30.2212810Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-11-03T15:51:30.2292610Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-11-03T15:51:30.2370140Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-11-03T15:51:30.2453740Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-11-03T15:51:30.2535990Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-11-03T15:51:30.2617010Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-11-03T15:51:30.2697790Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-11-03T15:51:30.2777830Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp' 2025-11-03T15:51:30.2859620Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:30.2942230Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:30.3027520Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-11-03T15:51:30.3109200Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-11-03T15:51:30.3190900Z Entering 'third_party/kleidiai' 2025-11-03T15:51:30.3272900Z Entering 'third_party/mimalloc' 2025-11-03T15:51:30.3352260Z Entering 'third_party/nlohmann' 2025-11-03T15:51:30.3431510Z Entering 'third_party/onnx' 2025-11-03T15:51:30.3516020Z Entering 'third_party/onnx/third_party/pybind11' 2025-11-03T15:51:30.3597590Z Entering 'third_party/opentelemetry-cpp' 2025-11-03T15:51:30.3675460Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-11-03T15:51:30.3752840Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-11-03T15:51:30.3828640Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-11-03T15:51:30.3904450Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-11-03T15:51:30.3982820Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-11-03T15:51:30.4061530Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-11-03T15:51:30.4140990Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-11-03T15:51:30.4219490Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:30.4299360Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:30.4381100Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-11-03T15:51:30.4469450Z Entering 'third_party/pocketfft' 2025-11-03T15:51:30.4551760Z Entering 'third_party/protobuf' 2025-11-03T15:51:30.4631770Z Entering 'third_party/protobuf/third_party/benchmark' 2025-11-03T15:51:30.4711280Z Entering 'third_party/protobuf/third_party/googletest' 2025-11-03T15:51:30.4791860Z Entering 'third_party/psimd' 2025-11-03T15:51:30.4871530Z Entering 'third_party/pthreadpool' 2025-11-03T15:51:30.4949280Z Entering 'third_party/pybind11' 2025-11-03T15:51:30.5029620Z Entering 'third_party/python-peachpy' 2025-11-03T15:51:30.5108410Z Entering 'third_party/sleef' 2025-11-03T15:51:30.5187130Z Entering 'third_party/tensorpipe' 2025-11-03T15:51:30.5265170Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-11-03T15:51:30.5343240Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-11-03T15:51:30.5421100Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-11-03T15:51:30.5497840Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-11-03T15:51:30.5572980Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-11-03T15:51:30.5661230Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-11-03T15:51:30.6135590Z Entering 'android/libs/fbjni' 2025-11-03T15:51:30.6219610Z Entering 'third_party/FP16' 2025-11-03T15:51:30.6297930Z Entering 'third_party/FXdiv' 2025-11-03T15:51:30.6376850Z Entering 'third_party/NNPACK' 2025-11-03T15:51:30.6455610Z Entering 'third_party/NVTX' 2025-11-03T15:51:30.6534910Z Entering 'third_party/VulkanMemoryAllocator' 2025-11-03T15:51:30.6612290Z Entering 'third_party/XNNPACK' 2025-11-03T15:51:30.6697110Z Entering 'third_party/aiter' 2025-11-03T15:51:30.6776890Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-11-03T15:51:30.6860950Z Entering 'third_party/benchmark' 2025-11-03T15:51:30.6941780Z Entering 'third_party/composable_kernel' 2025-11-03T15:51:30.7024280Z Entering 'third_party/cpp-httplib' 2025-11-03T15:51:30.7110440Z Entering 'third_party/cpuinfo' 2025-11-03T15:51:30.7190250Z Entering 'third_party/cudnn_frontend' 2025-11-03T15:51:30.7270250Z Entering 'third_party/cutlass' 2025-11-03T15:51:30.7353180Z Entering 'third_party/fbgemm' 2025-11-03T15:51:30.7434230Z Entering 'third_party/fbgemm/external/asmjit' 2025-11-03T15:51:30.7515220Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-11-03T15:51:30.7598710Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-11-03T15:51:30.7679470Z Entering 'third_party/fbgemm/external/cutlass' 2025-11-03T15:51:30.7760280Z Entering 'third_party/fbgemm/external/googletest' 2025-11-03T15:51:30.7841050Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-11-03T15:51:30.7919020Z Entering 'third_party/fbgemm/external/json' 2025-11-03T15:51:30.8000350Z Entering 'third_party/flash-attention' 2025-11-03T15:51:30.8080630Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-11-03T15:51:30.8162190Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-11-03T15:51:30.8245280Z Entering 'third_party/flatbuffers' 2025-11-03T15:51:30.8328350Z Entering 'third_party/fmt' 2025-11-03T15:51:30.8409430Z Entering 'third_party/gemmlowp/gemmlowp' 2025-11-03T15:51:30.8489160Z Entering 'third_party/gloo' 2025-11-03T15:51:30.8567700Z Entering 'third_party/googletest' 2025-11-03T15:51:30.8647550Z Entering 'third_party/ideep' 2025-11-03T15:51:30.8725370Z Entering 'third_party/ideep/mkl-dnn' 2025-11-03T15:51:30.8808610Z Entering 'third_party/ittapi' 2025-11-03T15:51:30.8889470Z Entering 'third_party/kineto' 2025-11-03T15:51:30.8968220Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-11-03T15:51:30.9045180Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-11-03T15:51:30.9123290Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-11-03T15:51:30.9200850Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-11-03T15:51:30.9280670Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-11-03T15:51:30.9358490Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-11-03T15:51:30.9438460Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-11-03T15:51:30.9519370Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-11-03T15:51:30.9599260Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-11-03T15:51:30.9681460Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-11-03T15:51:30.9761890Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp' 2025-11-03T15:51:30.9842720Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:30.9922170Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:31.0006920Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-11-03T15:51:31.0085300Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-11-03T15:51:31.0165760Z Entering 'third_party/kleidiai' 2025-11-03T15:51:31.0244670Z Entering 'third_party/mimalloc' 2025-11-03T15:51:31.0323770Z Entering 'third_party/nlohmann' 2025-11-03T15:51:31.0401900Z Entering 'third_party/onnx' 2025-11-03T15:51:31.0486710Z Entering 'third_party/onnx/third_party/pybind11' 2025-11-03T15:51:31.0568270Z Entering 'third_party/opentelemetry-cpp' 2025-11-03T15:51:31.0648380Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-11-03T15:51:31.0726570Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-11-03T15:51:31.0804290Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-11-03T15:51:31.0883690Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-11-03T15:51:31.0963730Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-11-03T15:51:31.1043850Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-11-03T15:51:31.1124630Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-11-03T15:51:31.1203930Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:31.1284290Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:31.1366410Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-11-03T15:51:31.1456030Z Entering 'third_party/pocketfft' 2025-11-03T15:51:31.1538930Z Entering 'third_party/protobuf' 2025-11-03T15:51:31.1618700Z Entering 'third_party/protobuf/third_party/benchmark' 2025-11-03T15:51:31.1698240Z Entering 'third_party/protobuf/third_party/googletest' 2025-11-03T15:51:31.1777290Z Entering 'third_party/psimd' 2025-11-03T15:51:31.1855150Z Entering 'third_party/pthreadpool' 2025-11-03T15:51:31.1932960Z Entering 'third_party/pybind11' 2025-11-03T15:51:31.2010190Z Entering 'third_party/python-peachpy' 2025-11-03T15:51:31.2087720Z Entering 'third_party/sleef' 2025-11-03T15:51:31.2166350Z Entering 'third_party/tensorpipe' 2025-11-03T15:51:31.2242490Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-11-03T15:51:31.2320380Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-11-03T15:51:31.2397380Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-11-03T15:51:31.2474130Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-11-03T15:51:31.2550630Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-11-03T15:51:31.2639600Z ##[endgroup] 2025-11-03T15:51:31.2762020Z [command]/usr/bin/git log -1 --format=%H 2025-11-03T15:51:31.2825460Z 3f6538febd727b782e6e13cfd026a309fb14351d 2025-11-03T15:51:31.2881320Z ##[group]Run cd "${GITHUB_WORKSPACE}" 2025-11-03T15:51:31.2881520Z cd "${GITHUB_WORKSPACE}" 2025-11-03T15:51:31.2881690Z # Clean stale submodule dirs 2025-11-03T15:51:31.2881880Z if [ -z "${NO_SUDO}" ]; then 2025-11-03T15:51:31.2882090Z  sudo git submodule foreach --recursive git clean -ffdx 2025-11-03T15:51:31.2882300Z else 2025-11-03T15:51:31.2882470Z  git submodule foreach --recursive git clean -ffdx 2025-11-03T15:51:31.2882660Z fi 2025-11-03T15:51:31.3383230Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-11-03T15:51:31.3383430Z env: 2025-11-03T15:51:31.3383550Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:51:31.3383710Z SCCACHE_USE_GHA: false 2025-11-03T15:51:31.3383840Z NO_SUDO: 2025-11-03T15:51:31.3383940Z ##[endgroup] 2025-11-03T15:51:31.4271540Z Entering 'android/libs/fbjni' 2025-11-03T15:51:31.4395200Z Entering 'third_party/FP16' 2025-11-03T15:51:31.4466330Z Entering 'third_party/FXdiv' 2025-11-03T15:51:31.4530120Z Entering 'third_party/NNPACK' 2025-11-03T15:51:31.4749410Z Entering 'third_party/NVTX' 2025-11-03T15:51:31.4969020Z Entering 'third_party/VulkanMemoryAllocator' 2025-11-03T15:51:31.5081270Z Entering 'third_party/XNNPACK' 2025-11-03T15:51:31.5276690Z Entering 'third_party/aiter' 2025-11-03T15:51:31.5352840Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-11-03T15:51:31.5540780Z Entering 'third_party/benchmark' 2025-11-03T15:51:31.5602330Z Entering 'third_party/composable_kernel' 2025-11-03T15:51:31.5807210Z Entering 'third_party/cpp-httplib' 2025-11-03T15:51:31.5869150Z Entering 'third_party/cpuinfo' 2025-11-03T15:51:31.5934840Z Entering 'third_party/cudnn_frontend' 2025-11-03T15:51:31.5999040Z Entering 'third_party/cutlass' 2025-11-03T15:51:31.6166660Z Entering 'third_party/fbgemm' 2025-11-03T15:51:31.6275930Z Entering 'third_party/fbgemm/external/asmjit' 2025-11-03T15:51:31.6335760Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-11-03T15:51:31.6541430Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-11-03T15:51:31.6608600Z Entering 'third_party/fbgemm/external/cutlass' 2025-11-03T15:51:31.6777600Z Entering 'third_party/fbgemm/external/googletest' 2025-11-03T15:51:31.6840710Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-11-03T15:51:31.6897740Z Entering 'third_party/fbgemm/external/json' 2025-11-03T15:51:31.6979820Z Entering 'third_party/flash-attention' 2025-11-03T15:51:31.7057000Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-11-03T15:51:31.7235200Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-11-03T15:51:31.7388570Z Entering 'third_party/flatbuffers' 2025-11-03T15:51:31.7521880Z Entering 'third_party/fmt' 2025-11-03T15:51:31.7583160Z Entering 'third_party/gemmlowp/gemmlowp' 2025-11-03T15:51:31.7644710Z Entering 'third_party/gloo' 2025-11-03T15:51:31.7706950Z Entering 'third_party/googletest' 2025-11-03T15:51:31.7768760Z Entering 'third_party/ideep' 2025-11-03T15:51:31.7823990Z Entering 'third_party/ideep/mkl-dnn' 2025-11-03T15:51:31.7968020Z Entering 'third_party/ittapi' 2025-11-03T15:51:31.8032590Z Entering 'third_party/kineto' 2025-11-03T15:51:31.8101720Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-11-03T15:51:31.8173060Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-11-03T15:51:31.8260200Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-11-03T15:51:31.8320140Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-11-03T15:51:31.8381680Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-11-03T15:51:31.8437740Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-11-03T15:51:31.8495890Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-11-03T15:51:31.8554740Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-11-03T15:51:31.8618050Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-11-03T15:51:31.8694460Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-11-03T15:51:31.8752150Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp' 2025-11-03T15:51:31.8813470Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:31.8906180Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:31.8976960Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-11-03T15:51:31.9038610Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-11-03T15:51:31.9103040Z Entering 'third_party/kleidiai' 2025-11-03T15:51:31.9176720Z Entering 'third_party/mimalloc' 2025-11-03T15:51:31.9239670Z Entering 'third_party/nlohmann' 2025-11-03T15:51:31.9322360Z Entering 'third_party/onnx' 2025-11-03T15:51:32.0045330Z Entering 'third_party/onnx/third_party/pybind11' 2025-11-03T15:51:32.0112140Z Entering 'third_party/opentelemetry-cpp' 2025-11-03T15:51:32.0213640Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-11-03T15:51:32.0272970Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-11-03T15:51:32.0334590Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-11-03T15:51:32.0390420Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-11-03T15:51:32.0468970Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-11-03T15:51:32.0528650Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-11-03T15:51:32.0588690Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-11-03T15:51:32.0649430Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:51:32.0743200Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:51:32.0809100Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-11-03T15:51:32.1363110Z Entering 'third_party/pocketfft' 2025-11-03T15:51:32.1421430Z Entering 'third_party/protobuf' 2025-11-03T15:51:32.1580150Z Entering 'third_party/protobuf/third_party/benchmark' 2025-11-03T15:51:32.1638610Z Entering 'third_party/protobuf/third_party/googletest' 2025-11-03T15:51:32.1705700Z Entering 'third_party/psimd' 2025-11-03T15:51:32.1762400Z Entering 'third_party/pthreadpool' 2025-11-03T15:51:32.1818810Z Entering 'third_party/pybind11' 2025-11-03T15:51:32.1883160Z Entering 'third_party/python-peachpy' 2025-11-03T15:51:32.1943270Z Entering 'third_party/sleef' 2025-11-03T15:51:32.2005750Z Entering 'third_party/tensorpipe' 2025-11-03T15:51:32.2067920Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-11-03T15:51:32.2128660Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-11-03T15:51:32.2186330Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-11-03T15:51:32.2253130Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-11-03T15:51:32.2310780Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-11-03T15:51:32.2422930Z ##[group]Run if [ -n "${XCODE_VERSION}" ]; then 2025-11-03T15:51:32.2423180Z if [ -n "${XCODE_VERSION}" ]; then 2025-11-03T15:51:32.2423530Z  echo "DEVELOPER_DIR=/Applications/Xcode_${XCODE_VERSION}.app/Contents/Developer" >> "${GITHUB_ENV}" 2025-11-03T15:51:32.2423860Z fi 2025-11-03T15:51:32.2440180Z shell: /bin/bash -e {0} 2025-11-03T15:51:32.2440340Z env: 2025-11-03T15:51:32.2440470Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:51:32.2440650Z SCCACHE_USE_GHA: false 2025-11-03T15:51:32.2440810Z XCODE_VERSION: 2025-11-03T15:51:32.2440940Z ##[endgroup] 2025-11-03T15:51:32.2711620Z ##[group]Run pytorch/test-infra/.github/actions/setup-python@main 2025-11-03T15:51:32.2711900Z with: 2025-11-03T15:51:32.2712020Z python-version: 3.12.7 2025-11-03T15:51:32.2712260Z pip-requirements-file: .ci/docker/requirements-ci.txt 2025-11-03T15:51:32.2712470Z env: 2025-11-03T15:51:32.2712600Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:51:32.2712780Z SCCACHE_USE_GHA: false 2025-11-03T15:51:32.2712950Z ##[endgroup] 2025-11-03T15:51:32.3113730Z Warning: HomeBrew only supports version specified by major and minor, but got 3.12.7 2025-11-03T15:51:33.2158940Z ==> Updating Homebrew... 2025-11-03T15:51:35.4095340Z ==> Homebrew collects anonymous analytics. 2025-11-03T15:51:35.4095740Z Read the analytics documentation (and how to opt-out) here: 2025-11-03T15:51:35.4096080Z https://docs.brew.sh/Analytics 2025-11-03T15:51:35.4096420Z No analytics have been recorded yet (nor will be during this `brew` run). 2025-11-03T15:51:35.4096690Z 2025-11-03T15:51:35.4324850Z ==> Homebrew is run entirely by unpaid volunteers. Please consider donating: 2025-11-03T15:51:35.4325320Z https://github.com/Homebrew/brew#donations 2025-11-03T15:51:35.4325550Z 2025-11-03T15:51:36.1554540Z Already up-to-date. 2025-11-03T15:51:37.3082250Z ##[warning]python@3.12 3.12.12 is already installed and up-to-date. To reinstall 3.12.12, run: brew reinstall python@3.12 2025-11-03T15:51:37.3377210Z Using python at /opt/homebrew/bin/python3.12 to create venv /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:51:39.4410380Z Installing requirements from .ci/docker/requirements-ci.txt 2025-11-03T15:51:39.6085070Z Ignoring coremltools: markers 'python_version < "3.12"' don't match your environment 2025-11-03T15:51:39.6086330Z Ignoring librosa: markers 'python_version < "3.11" and platform_machine != "s390x"' don't match your environment 2025-11-03T15:51:39.6087270Z Ignoring mypy: markers 'platform_system == "Linux"' don't match your environment 2025-11-03T15:51:39.6088210Z Ignoring numba: markers 'python_version == "3.10" and platform_machine != "s390x"' don't match your environment 2025-11-03T15:51:39.6089180Z Ignoring numpy: markers 'python_version == "3.10"' don't match your environment 2025-11-03T15:51:39.6090420Z Ignoring numpy: markers 'python_version >= "3.13" and python_version < "3.14"' don't match your environment 2025-11-03T15:51:39.6091110Z Ignoring numpy: markers 'python_version >= "3.14"' don't match your environment 2025-11-03T15:51:39.6092490Z Ignoring pandas: markers 'python_version >= "3.13" and python_version < "3.14"' don't match your environment 2025-11-03T15:51:39.6093170Z Ignoring pandas: markers 'python_version >= "3.14"' don't match your environment 2025-11-03T15:51:39.6094140Z Ignoring optree: markers 'python_version >= "3.14"' don't match your environment 2025-11-03T15:51:39.6095100Z Ignoring scipy: markers 'python_version <= "3.11"' don't match your environment 2025-11-03T15:51:39.6096080Z Ignoring scipy: markers 'python_version >= "3.14"' don't match your environment 2025-11-03T15:51:39.6097180Z Ignoring tensorboard: markers 'python_version >= "3.13"' don't match your environment 2025-11-03T15:51:39.6097860Z Ignoring pywavelets: markers 'python_version < "3.12"' don't match your environment 2025-11-03T15:51:39.6098850Z Ignoring lxml: markers 'python_version >= "3.14"' don't match your environment 2025-11-03T15:51:39.6099770Z Ignoring onnx: markers 'python_version == "3.14"' don't match your environment 2025-11-03T15:51:39.6100550Z Ignoring scons: markers 'platform_machine == "aarch64"' don't match your environment 2025-11-03T15:51:39.6101420Z Ignoring cuda-bindings: markers 'platform_machine != "s390x" and platform_system != "Darwin"' don't match your environment 2025-11-03T15:51:39.7921140Z Collecting boto3==1.35.42 (from -r .ci/docker/requirements-ci.txt (line 8)) 2025-11-03T15:51:39.7962710Z Using cached boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-11-03T15:51:39.8126130Z Collecting build==1.3.0 (from -r .ci/docker/requirements-ci.txt (line 13)) 2025-11-03T15:51:39.8140090Z Using cached build-1.3.0-py3-none-any.whl.metadata (5.6 kB) 2025-11-03T15:51:39.8301050Z Collecting click (from -r .ci/docker/requirements-ci.txt (line 18)) 2025-11-03T15:51:39.8321490Z Using cached click-8.3.0-py3-none-any.whl.metadata (2.6 kB) 2025-11-03T15:51:39.8646110Z Collecting coremltools==8.3 (from -r .ci/docker/requirements-ci.txt (line 24)) 2025-11-03T15:51:39.8693750Z Using cached coremltools-8.3.0-cp312-none-macosx_11_0_arm64.whl.metadata (2.6 kB) 2025-11-03T15:51:39.8821630Z Collecting dill==0.3.7 (from -r .ci/docker/requirements-ci.txt (line 34)) 2025-11-03T15:51:39.8846910Z Using cached dill-0.3.7-py3-none-any.whl.metadata (9.9 kB) 2025-11-03T15:51:39.8963960Z Collecting expecttest==0.3.0 (from -r .ci/docker/requirements-ci.txt (line 39)) 2025-11-03T15:51:39.9008430Z Using cached expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) 2025-11-03T15:51:39.9130960Z Collecting fbscribelogger==0.1.7 (from -r .ci/docker/requirements-ci.txt (line 45)) 2025-11-03T15:51:39.9151150Z Using cached fbscribelogger-0.1.7-py3-none-any.whl.metadata (684 bytes) 2025-11-03T15:51:39.9265640Z Collecting flatbuffers==24.12.23 (from -r .ci/docker/requirements-ci.txt (line 50)) 2025-11-03T15:51:39.9285980Z Using cached flatbuffers-24.12.23-py2.py3-none-any.whl.metadata (876 bytes) 2025-11-03T15:51:40.0359860Z Collecting hypothesis==6.56.4 (from -r .ci/docker/requirements-ci.txt (line 55)) 2025-11-03T15:51:40.0381440Z Using cached hypothesis-6.56.4-py3-none-any.whl.metadata (6.1 kB) 2025-11-03T15:51:40.0563360Z Collecting junitparser==2.1.1 (from -r .ci/docker/requirements-ci.txt (line 61)) 2025-11-03T15:51:40.0577720Z Using cached junitparser-2.1.1-py2.py3-none-any.whl.metadata (7.3 kB) 2025-11-03T15:51:40.0685020Z Collecting lark==0.12.0 (from -r .ci/docker/requirements-ci.txt (line 66)) 2025-11-03T15:51:40.0705610Z Using cached lark-0.12.0-py2.py3-none-any.whl.metadata (1.7 kB) 2025-11-03T15:51:40.0819270Z Collecting librosa==0.10.2 (from -r .ci/docker/requirements-ci.txt (line 72)) 2025-11-03T15:51:40.0838840Z Using cached librosa-0.10.2-py3-none-any.whl.metadata (8.6 kB) 2025-11-03T15:51:40.1013880Z Collecting networkx==2.8.8 (from -r .ci/docker/requirements-ci.txt (line 108)) 2025-11-03T15:51:40.1027830Z Using cached networkx-2.8.8-py3-none-any.whl.metadata (5.1 kB) 2025-11-03T15:51:40.1246650Z Collecting ninja==1.11.1.4 (from -r .ci/docker/requirements-ci.txt (line 114)) 2025-11-03T15:51:40.1260430Z Using cached ninja-1.11.1.4-py3-none-macosx_10_9_universal2.whl.metadata (5.0 kB) 2025-11-03T15:51:40.1867770Z Collecting numba==0.60.0 (from -r .ci/docker/requirements-ci.txt (line 121)) 2025-11-03T15:51:40.1883180Z Using cached numba-0.60.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.7 kB) 2025-11-03T15:51:40.2752290Z Collecting numpy==1.26.2 (from -r .ci/docker/requirements-ci.txt (line 140)) 2025-11-03T15:51:40.2775130Z Using cached numpy-1.26.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (61 kB) 2025-11-03T15:51:40.3501060Z Collecting pandas==2.0.3 (from -r .ci/docker/requirements-ci.txt (line 144)) 2025-11-03T15:51:40.3501420Z Using cached pandas-2.0.3-cp312-cp312-macosx_14_0_arm64.whl 2025-11-03T15:51:40.3786900Z Collecting opt-einsum==3.3 (from -r .ci/docker/requirements-ci.txt (line 153)) 2025-11-03T15:51:40.3807800Z Using cached opt_einsum-3.3.0-py3-none-any.whl.metadata (6.5 kB) 2025-11-03T15:51:40.4230950Z Collecting optree==0.13.0 (from -r .ci/docker/requirements-ci.txt (line 158)) 2025-11-03T15:51:40.4246490Z Using cached optree-0.13.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (47 kB) 2025-11-03T15:51:40.5115070Z Collecting pillow==11.0.0 (from -r .ci/docker/requirements-ci.txt (line 172)) 2025-11-03T15:51:40.5131020Z Using cached pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (9.1 kB) 2025-11-03T15:51:40.6122290Z Collecting protobuf==5.29.5 (from -r .ci/docker/requirements-ci.txt (line 177)) 2025-11-03T15:51:40.6138430Z Using cached protobuf-5.29.5-cp38-abi3-macosx_10_9_universal2.whl.metadata (592 bytes) 2025-11-03T15:51:40.6540480Z Collecting psutil (from -r .ci/docker/requirements-ci.txt (line 182)) 2025-11-03T15:51:40.6555360Z Using cached psutil-7.1.3-cp36-abi3-macosx_11_0_arm64.whl.metadata (23 kB) 2025-11-03T15:51:40.6814550Z Collecting pytest==7.3.2 (from -r .ci/docker/requirements-ci.txt (line 187)) 2025-11-03T15:51:40.6827870Z Using cached pytest-7.3.2-py3-none-any.whl.metadata (8.0 kB) 2025-11-03T15:51:40.7007950Z Collecting pytest-xdist==3.3.1 (from -r .ci/docker/requirements-ci.txt (line 192)) 2025-11-03T15:51:40.7021900Z Using cached pytest_xdist-3.3.1-py3-none-any.whl.metadata (3.1 kB) 2025-11-03T15:51:40.7131700Z Collecting pytest-flakefinder==1.1.0 (from -r .ci/docker/requirements-ci.txt (line 197)) 2025-11-03T15:51:40.7145350Z Using cached pytest_flakefinder-1.1.0-py2.py3-none-any.whl.metadata (3.3 kB) 2025-11-03T15:51:40.7274350Z Collecting pytest-rerunfailures>=10.3 (from -r .ci/docker/requirements-ci.txt (line 202)) 2025-11-03T15:51:40.7292250Z Using cached pytest_rerunfailures-16.1-py3-none-any.whl.metadata (21 kB) 2025-11-03T15:51:40.7416550Z Collecting pytest-subtests==0.13.1 (from -r .ci/docker/requirements-ci.txt (line 207)) 2025-11-03T15:51:40.7429820Z Using cached pytest_subtests-0.13.1-py3-none-any.whl.metadata (6.1 kB) 2025-11-03T15:51:40.7617610Z Collecting xdoctest==1.3.0 (from -r .ci/docker/requirements-ci.txt (line 222)) 2025-11-03T15:51:40.7631800Z Using cached xdoctest-1.3.0-py3-none-any.whl.metadata (35 kB) 2025-11-03T15:51:40.8110820Z Collecting pygments==2.15.0 (from -r .ci/docker/requirements-ci.txt (line 227)) 2025-11-03T15:51:40.8124750Z Using cached Pygments-2.15.0-py3-none-any.whl.metadata (2.5 kB) 2025-11-03T15:51:40.8480040Z Collecting scikit-image==0.22.0 (from -r .ci/docker/requirements-ci.txt (line 247)) 2025-11-03T15:51:40.8496530Z Using cached scikit_image-0.22.0-cp312-cp312-macosx_12_0_arm64.whl.metadata (13 kB) 2025-11-03T15:51:40.9159960Z Collecting scipy==1.14.1 (from -r .ci/docker/requirements-ci.txt (line 258)) 2025-11-03T15:51:40.9176210Z Using cached scipy-1.14.1-cp312-cp312-macosx_14_0_arm64.whl.metadata (60 kB) 2025-11-03T15:51:40.9403290Z Collecting typing-extensions==4.12.2 (from -r .ci/docker/requirements-ci.txt (line 273)) 2025-11-03T15:51:40.9424150Z Using cached typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) 2025-11-03T15:51:40.9555150Z Collecting unittest-xml-reporting<=3.2.0,>=2.0.0 (from -r .ci/docker/requirements-ci.txt (line 283)) 2025-11-03T15:51:40.9569730Z Using cached unittest_xml_reporting-3.2.0-py2.py3-none-any.whl.metadata (11 kB) 2025-11-03T15:51:40.9700570Z Collecting lintrunner==0.12.7 (from -r .ci/docker/requirements-ci.txt (line 289)) 2025-11-03T15:51:40.9715790Z Using cached lintrunner-0.12.7-py3-none-macosx_11_0_arm64.whl.metadata (7.2 kB) 2025-11-03T15:51:40.9915290Z Collecting redis>=4.0.0 (from -r .ci/docker/requirements-ci.txt (line 294)) 2025-11-03T15:51:40.9929770Z Using cached redis-7.0.1-py3-none-any.whl.metadata (12 kB) 2025-11-03T15:51:41.0075200Z Collecting ghstack==0.8.0 (from -r .ci/docker/requirements-ci.txt (line 298)) 2025-11-03T15:51:41.0089130Z Using cached ghstack-0.8.0-py3-none-any.whl.metadata (6.8 kB) 2025-11-03T15:51:41.0226240Z Collecting jinja2==3.1.6 (from -r .ci/docker/requirements-ci.txt (line 303)) 2025-11-03T15:51:41.0243790Z Using cached jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) 2025-11-03T15:51:41.0357920Z Collecting pytest-cpp==2.3.0 (from -r .ci/docker/requirements-ci.txt (line 308)) 2025-11-03T15:51:41.0372120Z Using cached pytest_cpp-2.3.0-py3-none-any.whl.metadata (5.4 kB) 2025-11-03T15:51:41.0540630Z Collecting z3-solver==4.15.1.0 (from -r .ci/docker/requirements-ci.txt (line 313)) 2025-11-03T15:51:41.0553810Z Using cached z3_solver-4.15.1.0-py3-none-macosx_13_0_arm64.whl.metadata (778 bytes) 2025-11-03T15:51:41.0689280Z Collecting tensorboard==2.13.0 (from -r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:41.0703420Z Using cached tensorboard-2.13.0-py3-none-any.whl.metadata (1.8 kB) 2025-11-03T15:51:41.0956990Z Collecting pywavelets==1.7.0 (from -r .ci/docker/requirements-ci.txt (line 325)) 2025-11-03T15:51:41.0972040Z Using cached pywavelets-1.7.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (9.0 kB) 2025-11-03T15:51:41.2189760Z Collecting lxml==5.3.0 (from -r .ci/docker/requirements-ci.txt (line 331)) 2025-11-03T15:51:41.2206220Z Using cached lxml-5.3.0-cp312-cp312-macosx_10_9_universal2.whl.metadata (3.8 kB) 2025-11-03T15:51:41.2352900Z Collecting PyGithub==2.3.0 (from -r .ci/docker/requirements-ci.txt (line 335)) 2025-11-03T15:51:41.2367390Z Using cached PyGithub-2.3.0-py3-none-any.whl.metadata (3.8 kB) 2025-11-03T15:51:41.2496140Z Collecting sympy==1.13.3 (from -r .ci/docker/requirements-ci.txt (line 337)) 2025-11-03T15:51:41.2510100Z Using cached sympy-1.13.3-py3-none-any.whl.metadata (12 kB) 2025-11-03T15:51:41.2818450Z Collecting onnx==1.19.1 (from -r .ci/docker/requirements-ci.txt (line 342)) 2025-11-03T15:51:41.2833320Z Using cached onnx-1.19.1-cp312-cp312-macosx_12_0_universal2.whl.metadata (7.0 kB) 2025-11-03T15:51:41.3299350Z Collecting onnxscript==0.5.4 (from -r .ci/docker/requirements-ci.txt (line 349)) 2025-11-03T15:51:41.3320040Z Using cached onnxscript-0.5.4-py3-none-any.whl.metadata (13 kB) 2025-11-03T15:51:41.3431490Z Collecting parameterized==0.8.1 (from -r .ci/docker/requirements-ci.txt (line 354)) 2025-11-03T15:51:41.3445180Z Using cached parameterized-0.8.1-py2.py3-none-any.whl.metadata (18 kB) 2025-11-03T15:51:41.3592550Z Collecting pwlf==2.2.1 (from -r .ci/docker/requirements-ci.txt (line 363)) 2025-11-03T15:51:41.3592860Z Using cached pwlf-2.2.1-py3-none-any.whl 2025-11-03T15:51:41.3817690Z Collecting pyyaml==6.0.3 (from -r .ci/docker/requirements-ci.txt (line 369)) 2025-11-03T15:51:41.3838930Z Using cached pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.4 kB) 2025-11-03T15:51:41.4332810Z Collecting pyzstd (from -r .ci/docker/requirements-ci.txt (line 370)) 2025-11-03T15:51:41.4361520Z Using cached pyzstd-0.18.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.6 kB) 2025-11-03T15:51:41.4958730Z Collecting setuptools==78.1.1 (from -r .ci/docker/requirements-ci.txt (line 371)) 2025-11-03T15:51:41.4974500Z Using cached setuptools-78.1.1-py3-none-any.whl.metadata (6.5 kB) 2025-11-03T15:51:41.5125080Z Collecting packaging==23.1 (from -r .ci/docker/requirements-ci.txt (line 372)) 2025-11-03T15:51:41.5139320Z Using cached packaging-23.1-py3-none-any.whl.metadata (3.1 kB) 2025-11-03T15:51:41.5256390Z Collecting six (from -r .ci/docker/requirements-ci.txt (line 373)) 2025-11-03T15:51:41.5272180Z Using cached six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) 2025-11-03T15:51:41.5386860Z Collecting pulp==2.9.0 (from -r .ci/docker/requirements-ci.txt (line 377)) 2025-11-03T15:51:41.5400350Z Using cached PuLP-2.9.0-py3-none-any.whl.metadata (5.4 kB) 2025-11-03T15:51:41.5556130Z Collecting dataclasses_json==0.6.7 (from -r .ci/docker/requirements-ci.txt (line 382)) 2025-11-03T15:51:41.5569770Z Using cached dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB) 2025-11-03T15:51:41.6491760Z Collecting cmake==3.31.6 (from -r .ci/docker/requirements-ci.txt (line 387)) 2025-11-03T15:51:41.6511040Z Using cached cmake-3.31.6-py3-none-macosx_10_10_universal2.whl.metadata (6.3 kB) 2025-11-03T15:51:41.6743870Z Collecting tlparse==0.4.0 (from -r .ci/docker/requirements-ci.txt (line 390)) 2025-11-03T15:51:41.6758270Z Using cached tlparse-0.4.0-py3-none-macosx_11_0_arm64.whl.metadata (1.9 kB) 2025-11-03T15:51:41.6904670Z Collecting filelock==3.18.0 (from -r .ci/docker/requirements-ci.txt (line 393)) 2025-11-03T15:51:41.6918540Z Using cached filelock-3.18.0-py3-none-any.whl.metadata (2.9 kB) 2025-11-03T15:51:41.7079550Z Collecting setuptools-git-versioning==2.1.0 (from -r .ci/docker/requirements-ci.txt (line 400)) 2025-11-03T15:51:41.7093800Z Using cached setuptools_git_versioning-2.1.0-py3-none-any.whl.metadata (6.1 kB) 2025-11-03T15:51:41.7218830Z Collecting scikit-build==0.18.1 (from -r .ci/docker/requirements-ci.txt (line 401)) 2025-11-03T15:51:41.7233420Z Using cached scikit_build-0.18.1-py3-none-any.whl.metadata (18 kB) 2025-11-03T15:51:41.7369340Z Collecting pyre-extensions==0.0.32 (from -r .ci/docker/requirements-ci.txt (line 402)) 2025-11-03T15:51:41.7383180Z Using cached pyre_extensions-0.0.32-py3-none-any.whl.metadata (4.0 kB) 2025-11-03T15:51:41.7488570Z Collecting tabulate==0.9.0 (from -r .ci/docker/requirements-ci.txt (line 403)) 2025-11-03T15:51:41.7502290Z Using cached tabulate-0.9.0-py3-none-any.whl.metadata (34 kB) 2025-11-03T15:51:41.9140400Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42->-r .ci/docker/requirements-ci.txt (line 8)) 2025-11-03T15:51:41.9156880Z Using cached botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-11-03T15:51:41.9279200Z Collecting jmespath<2.0.0,>=0.7.1 (from boto3==1.35.42->-r .ci/docker/requirements-ci.txt (line 8)) 2025-11-03T15:51:41.9292860Z Using cached jmespath-1.0.1-py3-none-any.whl.metadata (7.6 kB) 2025-11-03T15:51:41.9425460Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42->-r .ci/docker/requirements-ci.txt (line 8)) 2025-11-03T15:51:41.9445250Z Using cached s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-11-03T15:51:41.9565240Z Collecting pyproject_hooks (from build==1.3.0->-r .ci/docker/requirements-ci.txt (line 13)) 2025-11-03T15:51:41.9585750Z Using cached pyproject_hooks-1.2.0-py3-none-any.whl.metadata (1.3 kB) 2025-11-03T15:51:41.9881310Z Collecting tqdm (from coremltools==8.3->-r .ci/docker/requirements-ci.txt (line 24)) 2025-11-03T15:51:41.9901570Z Using cached tqdm-4.67.1-py3-none-any.whl.metadata (57 kB) 2025-11-03T15:51:42.0052370Z Collecting attrs>=21.3.0 (from coremltools==8.3->-r .ci/docker/requirements-ci.txt (line 24)) 2025-11-03T15:51:42.0072060Z Using cached attrs-25.4.0-py3-none-any.whl.metadata (10 kB) 2025-11-03T15:51:42.0200570Z Collecting cattrs (from coremltools==8.3->-r .ci/docker/requirements-ci.txt (line 24)) 2025-11-03T15:51:42.0223290Z Using cached cattrs-25.3.0-py3-none-any.whl.metadata (8.4 kB) 2025-11-03T15:51:42.0361900Z Collecting pyaml (from coremltools==8.3->-r .ci/docker/requirements-ci.txt (line 24)) 2025-11-03T15:51:42.0387780Z Using cached pyaml-25.7.0-py3-none-any.whl.metadata (12 kB) 2025-11-03T15:51:42.3155320Z Collecting aiohttp<4.0.0,>=3.10.4 (from fbscribelogger==0.1.7->-r .ci/docker/requirements-ci.txt (line 45)) 2025-11-03T15:51:42.3172150Z Using cached aiohttp-3.13.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (8.1 kB) 2025-11-03T15:51:42.3351140Z Collecting thriftpy2<0.6.0,>=0.5.2 (from fbscribelogger==0.1.7->-r .ci/docker/requirements-ci.txt (line 45)) 2025-11-03T15:51:42.3377590Z Using cached thriftpy2-0.5.3-cp312-cp312-macosx_11_0_arm64.whl.metadata (8.2 kB) 2025-11-03T15:51:42.3544280Z Collecting sortedcontainers<3.0.0,>=2.1.0 (from hypothesis==6.56.4->-r .ci/docker/requirements-ci.txt (line 55)) 2025-11-03T15:51:42.3557070Z Using cached sortedcontainers-2.4.0-py2.py3-none-any.whl.metadata (10 kB) 2025-11-03T15:51:42.3671700Z Collecting future (from junitparser==2.1.1->-r .ci/docker/requirements-ci.txt (line 61)) 2025-11-03T15:51:42.3697000Z Using cached future-1.0.0-py3-none-any.whl.metadata (4.0 kB) 2025-11-03T15:51:42.3802560Z Collecting audioread>=2.1.9 (from librosa==0.10.2->-r .ci/docker/requirements-ci.txt (line 72)) 2025-11-03T15:51:42.3823210Z Using cached audioread-3.1.0-py3-none-any.whl.metadata (9.0 kB) 2025-11-03T15:51:42.4353860Z Collecting scikit-learn>=0.20.0 (from librosa==0.10.2->-r .ci/docker/requirements-ci.txt (line 72)) 2025-11-03T15:51:42.4377330Z Using cached scikit_learn-1.7.2-cp312-cp312-macosx_12_0_arm64.whl.metadata (11 kB) 2025-11-03T15:51:42.4583080Z Collecting joblib>=0.14 (from librosa==0.10.2->-r .ci/docker/requirements-ci.txt (line 72)) 2025-11-03T15:51:42.4602500Z Using cached joblib-1.5.2-py3-none-any.whl.metadata (5.6 kB) 2025-11-03T15:51:42.4720010Z Collecting decorator>=4.3.0 (from librosa==0.10.2->-r .ci/docker/requirements-ci.txt (line 72)) 2025-11-03T15:51:42.4740270Z Using cached decorator-5.2.1-py3-none-any.whl.metadata (3.9 kB) 2025-11-03T15:51:42.4871000Z Collecting soundfile>=0.12.1 (from librosa==0.10.2->-r .ci/docker/requirements-ci.txt (line 72)) 2025-11-03T15:51:42.4891580Z Using cached soundfile-0.13.1-py2.py3-none-macosx_11_0_arm64.whl.metadata (16 kB) 2025-11-03T15:51:42.5015920Z Collecting pooch>=1.1 (from librosa==0.10.2->-r .ci/docker/requirements-ci.txt (line 72)) 2025-11-03T15:51:42.5029850Z Using cached pooch-1.8.2-py3-none-any.whl.metadata (10 kB) 2025-11-03T15:51:42.5374060Z Collecting soxr>=0.3.2 (from librosa==0.10.2->-r .ci/docker/requirements-ci.txt (line 72)) 2025-11-03T15:51:42.5402500Z Using cached soxr-1.0.0-cp312-abi3-macosx_11_0_arm64.whl.metadata (5.6 kB) 2025-11-03T15:51:42.5520190Z Collecting lazy-loader>=0.1 (from librosa==0.10.2->-r .ci/docker/requirements-ci.txt (line 72)) 2025-11-03T15:51:42.5539870Z Using cached lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB) 2025-11-03T15:51:42.5928140Z Collecting msgpack>=1.0 (from librosa==0.10.2->-r .ci/docker/requirements-ci.txt (line 72)) 2025-11-03T15:51:42.5948860Z Using cached msgpack-1.1.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (8.1 kB) 2025-11-03T15:51:42.6307410Z Collecting llvmlite<0.44,>=0.43.0dev0 (from numba==0.60.0->-r .ci/docker/requirements-ci.txt (line 121)) 2025-11-03T15:51:42.6323230Z Using cached llvmlite-0.43.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (4.8 kB) 2025-11-03T15:51:42.6595080Z Collecting python-dateutil>=2.8.2 (from pandas==2.0.3->-r .ci/docker/requirements-ci.txt (line 144)) 2025-11-03T15:51:42.6614410Z Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) 2025-11-03T15:51:42.6858790Z Collecting pytz>=2020.1 (from pandas==2.0.3->-r .ci/docker/requirements-ci.txt (line 144)) 2025-11-03T15:51:42.6877910Z Using cached pytz-2025.2-py2.py3-none-any.whl.metadata (22 kB) 2025-11-03T15:51:42.6999500Z Collecting tzdata>=2022.1 (from pandas==2.0.3->-r .ci/docker/requirements-ci.txt (line 144)) 2025-11-03T15:51:42.7013450Z Using cached tzdata-2025.2-py2.py3-none-any.whl.metadata (1.4 kB) 2025-11-03T15:51:42.7221820Z Collecting iniconfig (from pytest==7.3.2->-r .ci/docker/requirements-ci.txt (line 187)) 2025-11-03T15:51:42.7235220Z Using cached iniconfig-2.3.0-py3-none-any.whl.metadata (2.5 kB) 2025-11-03T15:51:42.7353270Z Collecting pluggy<2.0,>=0.12 (from pytest==7.3.2->-r .ci/docker/requirements-ci.txt (line 187)) 2025-11-03T15:51:42.7367050Z Using cached pluggy-1.6.0-py3-none-any.whl.metadata (4.8 kB) 2025-11-03T15:51:42.7496590Z Collecting execnet>=1.1 (from pytest-xdist==3.3.1->-r .ci/docker/requirements-ci.txt (line 192)) 2025-11-03T15:51:42.7510570Z Using cached execnet-2.1.1-py3-none-any.whl.metadata (2.9 kB) 2025-11-03T15:51:42.7901980Z Collecting imageio>=2.27 (from scikit-image==0.22.0->-r .ci/docker/requirements-ci.txt (line 247)) 2025-11-03T15:51:42.7915890Z Using cached imageio-2.37.0-py3-none-any.whl.metadata (5.2 kB) 2025-11-03T15:51:42.8178120Z Collecting tifffile>=2022.8.12 (from scikit-image==0.22.0->-r .ci/docker/requirements-ci.txt (line 247)) 2025-11-03T15:51:42.8191750Z Using cached tifffile-2025.10.16-py3-none-any.whl.metadata (31 kB) 2025-11-03T15:51:42.8648750Z Collecting requests<3,>=2 (from ghstack==0.8.0->-r .ci/docker/requirements-ci.txt (line 298)) 2025-11-03T15:51:42.8663800Z Using cached requests-2.32.5-py3-none-any.whl.metadata (4.9 kB) 2025-11-03T15:51:42.9027850Z Collecting MarkupSafe>=2.0 (from jinja2==3.1.6->-r .ci/docker/requirements-ci.txt (line 303)) 2025-11-03T15:51:42.9043020Z Using cached markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.7 kB) 2025-11-03T15:51:42.9178030Z Collecting colorama (from pytest-cpp==2.3.0->-r .ci/docker/requirements-ci.txt (line 308)) 2025-11-03T15:51:42.9191760Z Using cached colorama-0.4.6-py2.py3-none-any.whl.metadata (17 kB) 2025-11-03T15:51:42.9330670Z Collecting absl-py>=0.4 (from tensorboard==2.13.0->-r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:42.9344520Z Using cached absl_py-2.3.1-py3-none-any.whl.metadata (3.3 kB) 2025-11-03T15:51:43.2099320Z Collecting grpcio>=1.48.2 (from tensorboard==2.13.0->-r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:43.2114930Z Using cached grpcio-1.76.0-cp312-cp312-macosx_11_0_universal2.whl.metadata (3.7 kB) 2025-11-03T15:51:43.2404590Z Collecting google-auth<3,>=1.6.3 (from tensorboard==2.13.0->-r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:43.2420070Z Using cached google_auth-2.42.1-py2.py3-none-any.whl.metadata (6.6 kB) 2025-11-03T15:51:43.2619860Z Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard==2.13.0->-r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:43.2646390Z Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB) 2025-11-03T15:51:43.2779200Z Collecting markdown>=2.6.8 (from tensorboard==2.13.0->-r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:43.2795530Z Using cached markdown-3.9-py3-none-any.whl.metadata (5.1 kB) 2025-11-03T15:51:43.3297100Z Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard==2.13.0->-r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:43.3317610Z Using cached tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB) 2025-11-03T15:51:43.3472810Z Collecting werkzeug>=1.0.1 (from tensorboard==2.13.0->-r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:43.3493340Z Using cached werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB) 2025-11-03T15:51:43.3652660Z Collecting wheel>=0.26 (from tensorboard==2.13.0->-r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:43.3666500Z Using cached wheel-0.45.1-py3-none-any.whl.metadata (2.3 kB) 2025-11-03T15:51:43.3885530Z Collecting pynacl>=1.4.0 (from PyGithub==2.3.0->-r .ci/docker/requirements-ci.txt (line 335)) 2025-11-03T15:51:43.3899690Z Using cached pynacl-1.6.0-cp38-abi3-macosx_10_10_universal2.whl.metadata (9.4 kB) 2025-11-03T15:51:43.4106050Z Collecting pyjwt>=2.4.0 (from pyjwt[crypto]>=2.4.0->PyGithub==2.3.0->-r .ci/docker/requirements-ci.txt (line 335)) 2025-11-03T15:51:43.4127280Z Using cached PyJWT-2.10.1-py3-none-any.whl.metadata (4.0 kB) 2025-11-03T15:51:43.4331820Z Collecting urllib3>=1.26.0 (from PyGithub==2.3.0->-r .ci/docker/requirements-ci.txt (line 335)) 2025-11-03T15:51:43.4352110Z Using cached urllib3-2.5.0-py3-none-any.whl.metadata (6.5 kB) 2025-11-03T15:51:43.4481680Z Collecting Deprecated (from PyGithub==2.3.0->-r .ci/docker/requirements-ci.txt (line 335)) 2025-11-03T15:51:43.4495900Z Using cached deprecated-1.3.1-py2.py3-none-any.whl.metadata (5.9 kB) 2025-11-03T15:51:43.4625970Z Collecting mpmath<1.4,>=1.1.0 (from sympy==1.13.3->-r .ci/docker/requirements-ci.txt (line 337)) 2025-11-03T15:51:43.4652260Z Using cached mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) 2025-11-03T15:51:43.4935330Z Collecting ml_dtypes>=0.5.0 (from onnx==1.19.1->-r .ci/docker/requirements-ci.txt (line 342)) 2025-11-03T15:51:43.4957200Z Using cached ml_dtypes-0.5.3-cp312-cp312-macosx_10_13_universal2.whl.metadata (8.9 kB) 2025-11-03T15:51:43.5106820Z Collecting onnx_ir<2,>=0.1.10 (from onnxscript==0.5.4->-r .ci/docker/requirements-ci.txt (line 349)) 2025-11-03T15:51:43.5120520Z Using cached onnx_ir-0.1.12-py3-none-any.whl.metadata (3.2 kB) 2025-11-03T15:51:43.5314960Z Collecting pyDOE>=0.3.8 (from pwlf==2.2.1->-r .ci/docker/requirements-ci.txt (line 363)) 2025-11-03T15:51:43.5315410Z Using cached pydoe-0.3.8-py3-none-any.whl 2025-11-03T15:51:43.5614090Z Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses_json==0.6.7->-r .ci/docker/requirements-ci.txt (line 382)) 2025-11-03T15:51:43.5628820Z Using cached marshmallow-3.26.1-py3-none-any.whl.metadata (7.3 kB) 2025-11-03T15:51:43.5747150Z Collecting typing-inspect<1,>=0.4.0 (from dataclasses_json==0.6.7->-r .ci/docker/requirements-ci.txt (line 382)) 2025-11-03T15:51:43.5761970Z Using cached typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) 2025-11-03T15:51:43.5916730Z Collecting distro (from scikit-build==0.18.1->-r .ci/docker/requirements-ci.txt (line 401)) 2025-11-03T15:51:43.5930170Z Using cached distro-1.9.0-py3-none-any.whl.metadata (6.8 kB) 2025-11-03T15:51:43.6398550Z Collecting aiohappyeyeballs>=2.5.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .ci/docker/requirements-ci.txt (line 45)) 2025-11-03T15:51:43.6411850Z Using cached aiohappyeyeballs-2.6.1-py3-none-any.whl.metadata (5.9 kB) 2025-11-03T15:51:43.6514720Z Collecting aiosignal>=1.4.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .ci/docker/requirements-ci.txt (line 45)) 2025-11-03T15:51:43.6528220Z Using cached aiosignal-1.4.0-py3-none-any.whl.metadata (3.7 kB) 2025-11-03T15:51:43.6965840Z Collecting frozenlist>=1.1.1 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .ci/docker/requirements-ci.txt (line 45)) 2025-11-03T15:51:43.6983270Z Using cached frozenlist-1.8.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (20 kB) 2025-11-03T15:51:43.8135630Z Collecting multidict<7.0,>=4.5 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .ci/docker/requirements-ci.txt (line 45)) 2025-11-03T15:51:43.8152610Z Using cached multidict-6.7.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (5.3 kB) 2025-11-03T15:51:43.8491390Z Collecting propcache>=0.2.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .ci/docker/requirements-ci.txt (line 45)) 2025-11-03T15:51:43.8506280Z Using cached propcache-0.4.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (13 kB) 2025-11-03T15:51:44.0381710Z Collecting yarl<2.0,>=1.17.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .ci/docker/requirements-ci.txt (line 45)) 2025-11-03T15:51:44.0397550Z Using cached yarl-1.22.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (75 kB) 2025-11-03T15:51:44.0712890Z Collecting cachetools<7.0,>=2.0.0 (from google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:44.0726410Z Using cached cachetools-6.2.1-py3-none-any.whl.metadata (5.5 kB) 2025-11-03T15:51:44.1123850Z Collecting pyasn1-modules>=0.2.1 (from google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:44.1138280Z Using cached pyasn1_modules-0.4.2-py3-none-any.whl.metadata (3.5 kB) 2025-11-03T15:51:44.1264080Z Collecting rsa<5,>=3.1.4 (from google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:44.1278600Z Using cached rsa-4.9.1-py3-none-any.whl.metadata (5.6 kB) 2025-11-03T15:51:44.1497410Z Collecting requests-oauthlib>=0.7.0 (from google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0->-r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:44.1510990Z Using cached requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) 2025-11-03T15:51:44.2101280Z Collecting charset_normalizer<4,>=2 (from requests<3,>=2->ghstack==0.8.0->-r .ci/docker/requirements-ci.txt (line 298)) 2025-11-03T15:51:44.2116550Z Using cached charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl.metadata (37 kB) 2025-11-03T15:51:44.2264890Z Collecting idna<4,>=2.5 (from requests<3,>=2->ghstack==0.8.0->-r .ci/docker/requirements-ci.txt (line 298)) 2025-11-03T15:51:44.2279090Z Using cached idna-3.11-py3-none-any.whl.metadata (8.4 kB) 2025-11-03T15:51:44.2497880Z Collecting certifi>=2017.4.17 (from requests<3,>=2->ghstack==0.8.0->-r .ci/docker/requirements-ci.txt (line 298)) 2025-11-03T15:51:44.2512740Z Using cached certifi-2025.10.5-py3-none-any.whl.metadata (2.5 kB) 2025-11-03T15:51:44.2711420Z Collecting pyasn1>=0.1.3 (from rsa<5,>=3.1.4->google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:44.2725710Z Using cached pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) 2025-11-03T15:51:44.3485760Z Collecting ply<4.0,>=3.4 (from thriftpy2<0.6.0,>=0.5.2->fbscribelogger==0.1.7->-r .ci/docker/requirements-ci.txt (line 45)) 2025-11-03T15:51:44.3498880Z Using cached ply-3.11-py2.py3-none-any.whl.metadata (844 bytes) 2025-11-03T15:51:44.3624810Z Collecting mypy-extensions>=0.3.0 (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7->-r .ci/docker/requirements-ci.txt (line 382)) 2025-11-03T15:51:44.3644460Z Using cached mypy_extensions-1.1.0-py3-none-any.whl.metadata (1.1 kB) 2025-11-03T15:51:44.3909630Z INFO: pip is looking at multiple versions of pytest-rerunfailures to determine which version is compatible with other requirements. This could take a while. 2025-11-03T15:51:44.3911170Z Collecting pytest-rerunfailures>=10.3 (from -r .ci/docker/requirements-ci.txt (line 202)) 2025-11-03T15:51:44.3932370Z Using cached pytest_rerunfailures-16.0.1-py3-none-any.whl.metadata (21 kB) 2025-11-03T15:51:44.4000540Z Using cached pytest_rerunfailures-16.0-py3-none-any.whl.metadata (20 kB) 2025-11-03T15:51:44.4073280Z Using cached pytest_rerunfailures-15.1-py3-none-any.whl.metadata (20 kB) 2025-11-03T15:51:44.4136670Z Using cached pytest_rerunfailures-15.0-py3-none-any.whl.metadata (19 kB) 2025-11-03T15:51:44.4208480Z Using cached pytest_rerunfailures-14.0-py3-none-any.whl.metadata (18 kB) 2025-11-03T15:51:44.4370610Z INFO: pip is looking at multiple versions of pyzstd to determine which version is compatible with other requirements. This could take a while. 2025-11-03T15:51:44.4372990Z Collecting pyzstd (from -r .ci/docker/requirements-ci.txt (line 370)) 2025-11-03T15:51:44.4386720Z Using cached pyzstd-0.17.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.5 kB) 2025-11-03T15:51:44.4446500Z Using cached pyzstd-0.16.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.4 kB) 2025-11-03T15:51:44.5017230Z Collecting platformdirs>=2.5.0 (from pooch>=1.1->librosa==0.10.2->-r .ci/docker/requirements-ci.txt (line 72)) 2025-11-03T15:51:44.5032320Z Using cached platformdirs-4.5.0-py3-none-any.whl.metadata (12 kB) 2025-11-03T15:51:44.6106640Z Collecting cryptography>=3.4.0 (from pyjwt[crypto]>=2.4.0->PyGithub==2.3.0->-r .ci/docker/requirements-ci.txt (line 335)) 2025-11-03T15:51:44.6123240Z Using cached cryptography-46.0.3-cp311-abi3-macosx_10_9_universal2.whl.metadata (5.7 kB) 2025-11-03T15:51:44.6712770Z Collecting cffi>=2.0.0 (from cryptography>=3.4.0->pyjwt[crypto]>=2.4.0->PyGithub==2.3.0->-r .ci/docker/requirements-ci.txt (line 335)) 2025-11-03T15:51:44.6729310Z Using cached cffi-2.0.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.6 kB) 2025-11-03T15:51:44.6926090Z Collecting pycparser (from cffi>=2.0.0->cryptography>=3.4.0->pyjwt[crypto]>=2.4.0->PyGithub==2.3.0->-r .ci/docker/requirements-ci.txt (line 335)) 2025-11-03T15:51:44.6945560Z Using cached pycparser-2.23-py3-none-any.whl.metadata (993 bytes) 2025-11-03T15:51:44.7101920Z Collecting oauthlib>=3.0.0 (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0->-r .ci/docker/requirements-ci.txt (line 318)) 2025-11-03T15:51:44.7122100Z Using cached oauthlib-3.3.1-py3-none-any.whl.metadata (7.9 kB) 2025-11-03T15:51:44.7284960Z Collecting threadpoolctl>=3.1.0 (from scikit-learn>=0.20.0->librosa==0.10.2->-r .ci/docker/requirements-ci.txt (line 72)) 2025-11-03T15:51:44.7305780Z Using cached threadpoolctl-3.6.0-py3-none-any.whl.metadata (13 kB) 2025-11-03T15:51:44.7508490Z INFO: pip is looking at multiple versions of cattrs to determine which version is compatible with other requirements. This could take a while. 2025-11-03T15:51:44.7510820Z Collecting cattrs (from coremltools==8.3->-r .ci/docker/requirements-ci.txt (line 24)) 2025-11-03T15:51:44.7530940Z Using cached cattrs-25.2.0-py3-none-any.whl.metadata (8.4 kB) 2025-11-03T15:51:44.8282920Z Collecting wrapt<3,>=1.10 (from Deprecated->PyGithub==2.3.0->-r .ci/docker/requirements-ci.txt (line 335)) 2025-11-03T15:51:44.8304490Z Using cached wrapt-2.0.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (8.8 kB) 2025-11-03T15:51:44.8503310Z Using cached boto3-1.35.42-py3-none-any.whl (139 kB) 2025-11-03T15:51:44.8529320Z Using cached build-1.3.0-py3-none-any.whl (23 kB) 2025-11-03T15:51:44.8554920Z Using cached coremltools-8.3.0-cp312-none-macosx_11_0_arm64.whl (2.7 MB) 2025-11-03T15:51:44.8674140Z Using cached dill-0.3.7-py3-none-any.whl (115 kB) 2025-11-03T15:51:44.8709140Z Using cached expecttest-0.3.0-py3-none-any.whl (8.2 kB) 2025-11-03T15:51:44.8727630Z Using cached fbscribelogger-0.1.7-py3-none-any.whl (6.9 kB) 2025-11-03T15:51:44.8746710Z Using cached typing_extensions-4.12.2-py3-none-any.whl (37 kB) 2025-11-03T15:51:44.8767140Z Using cached flatbuffers-24.12.23-py2.py3-none-any.whl (30 kB) 2025-11-03T15:51:44.8787830Z Using cached hypothesis-6.56.4-py3-none-any.whl (395 kB) 2025-11-03T15:51:44.8833840Z Using cached junitparser-2.1.1-py2.py3-none-any.whl (10 kB) 2025-11-03T15:51:44.8852550Z Using cached lark-0.12.0-py2.py3-none-any.whl (103 kB) 2025-11-03T15:51:44.8887530Z Using cached librosa-0.10.2-py3-none-any.whl (260 kB) 2025-11-03T15:51:44.8916010Z Using cached networkx-2.8.8-py3-none-any.whl (2.0 MB) 2025-11-03T15:51:44.9022090Z Using cached ninja-1.11.1.4-py3-none-macosx_10_9_universal2.whl (279 kB) 2025-11-03T15:51:44.9061780Z Using cached numba-0.60.0-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB) 2025-11-03T15:51:44.9193130Z Using cached numpy-1.26.2-cp312-cp312-macosx_11_0_arm64.whl (13.7 MB) 2025-11-03T15:51:44.9522570Z Using cached opt_einsum-3.3.0-py3-none-any.whl (65 kB) 2025-11-03T15:51:44.9542400Z Using cached optree-0.13.0-cp312-cp312-macosx_11_0_arm64.whl (305 kB) 2025-11-03T15:51:44.9571930Z Using cached pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB) 2025-11-03T15:51:44.9694080Z Using cached protobuf-5.29.5-cp38-abi3-macosx_10_9_universal2.whl (418 kB) 2025-11-03T15:51:44.9726070Z Using cached pytest-7.3.2-py3-none-any.whl (320 kB) 2025-11-03T15:51:44.9752220Z Using cached pytest_xdist-3.3.1-py3-none-any.whl (41 kB) 2025-11-03T15:51:44.9768390Z Using cached pytest_flakefinder-1.1.0-py2.py3-none-any.whl (4.6 kB) 2025-11-03T15:51:44.9781610Z Using cached pytest_subtests-0.13.1-py3-none-any.whl (8.0 kB) 2025-11-03T15:51:44.9798260Z Using cached xdoctest-1.3.0-py3-none-any.whl (152 kB) 2025-11-03T15:51:44.9822160Z Using cached Pygments-2.15.0-py3-none-any.whl (1.1 MB) 2025-11-03T15:51:44.9878360Z Using cached scikit_image-0.22.0-cp312-cp312-macosx_12_0_arm64.whl (13.3 MB) 2025-11-03T15:51:45.0216310Z Using cached scipy-1.14.1-cp312-cp312-macosx_14_0_arm64.whl (23.1 MB) 2025-11-03T15:51:45.0735610Z Using cached lintrunner-0.12.7-py3-none-macosx_11_0_arm64.whl (1.8 MB) 2025-11-03T15:51:45.0816540Z Using cached ghstack-0.8.0-py3-none-any.whl (89 kB) 2025-11-03T15:51:45.0833960Z Using cached jinja2-3.1.6-py3-none-any.whl (134 kB) 2025-11-03T15:51:45.0851800Z Using cached pytest_cpp-2.3.0-py3-none-any.whl (14 kB) 2025-11-03T15:51:45.0865950Z Using cached z3_solver-4.15.1.0-py3-none-macosx_13_0_arm64.whl (37.5 MB) 2025-11-03T15:51:45.1692420Z Using cached tensorboard-2.13.0-py3-none-any.whl (5.6 MB) 2025-11-03T15:51:45.1874750Z Using cached pywavelets-1.7.0-cp312-cp312-macosx_11_0_arm64.whl (4.3 MB) 2025-11-03T15:51:45.2027060Z Using cached lxml-5.3.0-cp312-cp312-macosx_10_9_universal2.whl (8.2 MB) 2025-11-03T15:51:45.2237220Z Using cached PyGithub-2.3.0-py3-none-any.whl (354 kB) 2025-11-03T15:51:45.2275820Z Using cached sympy-1.13.3-py3-none-any.whl (6.2 MB) 2025-11-03T15:51:45.2662890Z Using cached onnx-1.19.1-cp312-cp312-macosx_12_0_universal2.whl (18.3 MB) 2025-11-03T15:51:45.4676510Z Using cached onnxscript-0.5.4-py3-none-any.whl (679 kB) 2025-11-03T15:51:45.4741770Z Using cached parameterized-0.8.1-py2.py3-none-any.whl (26 kB) 2025-11-03T15:51:45.4760630Z Using cached pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl (173 kB) 2025-11-03T15:51:45.4789340Z Using cached setuptools-78.1.1-py3-none-any.whl (1.3 MB) 2025-11-03T15:51:45.4894450Z Using cached packaging-23.1-py3-none-any.whl (48 kB) 2025-11-03T15:51:45.4918380Z Using cached PuLP-2.9.0-py3-none-any.whl (17.7 MB) 2025-11-03T15:51:45.6849460Z Using cached dataclasses_json-0.6.7-py3-none-any.whl (28 kB) 2025-11-03T15:51:45.6868860Z Using cached cmake-3.31.6-py3-none-macosx_10_10_universal2.whl (47.2 MB) 2025-11-03T15:51:46.2004150Z Using cached tlparse-0.4.0-py3-none-macosx_11_0_arm64.whl (2.2 MB) 2025-11-03T15:51:46.2248370Z Using cached filelock-3.18.0-py3-none-any.whl (16 kB) 2025-11-03T15:51:46.2288740Z Using cached setuptools_git_versioning-2.1.0-py3-none-any.whl (10 kB) 2025-11-03T15:51:46.2303900Z Using cached scikit_build-0.18.1-py3-none-any.whl (85 kB) 2025-11-03T15:51:46.2327200Z Using cached pyre_extensions-0.0.32-py3-none-any.whl (12 kB) 2025-11-03T15:51:46.2341180Z Using cached tabulate-0.9.0-py3-none-any.whl (35 kB) 2025-11-03T15:51:46.2356180Z Using cached click-8.3.0-py3-none-any.whl (107 kB) 2025-11-03T15:51:46.2381600Z Using cached unittest_xml_reporting-3.2.0-py2.py3-none-any.whl (20 kB) 2025-11-03T15:51:46.2400700Z Using cached aiohttp-3.13.2-cp312-cp312-macosx_11_0_arm64.whl (491 kB) 2025-11-03T15:51:46.2441910Z Using cached botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-11-03T15:51:46.3835650Z Using cached google_auth-2.42.1-py2.py3-none-any.whl (222 kB) 2025-11-03T15:51:46.3863480Z Using cached cachetools-6.2.1-py3-none-any.whl (11 kB) 2025-11-03T15:51:46.3878220Z Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB) 2025-11-03T15:51:46.3892840Z Using cached jmespath-1.0.1-py3-none-any.whl (20 kB) 2025-11-03T15:51:46.3906720Z Using cached llvmlite-0.43.0-cp312-cp312-macosx_11_0_arm64.whl (28.8 MB) 2025-11-03T15:51:46.6989990Z Using cached marshmallow-3.26.1-py3-none-any.whl (50 kB) 2025-11-03T15:51:46.7033210Z Using cached mpmath-1.3.0-py3-none-any.whl (536 kB) 2025-11-03T15:51:46.7104260Z Using cached multidict-6.7.0-cp312-cp312-macosx_11_0_arm64.whl (43 kB) 2025-11-03T15:51:46.7124680Z Using cached onnx_ir-0.1.12-py3-none-any.whl (129 kB) 2025-11-03T15:51:46.7147730Z Using cached pluggy-1.6.0-py3-none-any.whl (20 kB) 2025-11-03T15:51:46.7162000Z Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) 2025-11-03T15:51:46.7186470Z Using cached requests-2.32.5-py3-none-any.whl (64 kB) 2025-11-03T15:51:46.7204410Z Using cached charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl (208 kB) 2025-11-03T15:51:46.7228860Z Using cached idna-3.11-py3-none-any.whl (71 kB) 2025-11-03T15:51:46.7245130Z Using cached rsa-4.9.1-py3-none-any.whl (34 kB) 2025-11-03T15:51:46.7265290Z Using cached s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-11-03T15:51:46.7282340Z Using cached sortedcontainers-2.4.0-py2.py3-none-any.whl (29 kB) 2025-11-03T15:51:46.7301960Z Using cached tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB) 2025-11-03T15:51:46.7321220Z Using cached thriftpy2-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (833 kB) 2025-11-03T15:51:46.7365660Z Using cached six-1.17.0-py2.py3-none-any.whl (11 kB) 2025-11-03T15:51:46.7386630Z Using cached ply-3.11-py2.py3-none-any.whl (49 kB) 2025-11-03T15:51:46.7406740Z Using cached typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) 2025-11-03T15:51:46.7421020Z Using cached urllib3-2.5.0-py3-none-any.whl (129 kB) 2025-11-03T15:51:46.7439290Z Using cached yarl-1.22.0-cp312-cp312-macosx_11_0_arm64.whl (94 kB) 2025-11-03T15:51:46.7461780Z Using cached psutil-7.1.3-cp36-abi3-macosx_11_0_arm64.whl (239 kB) 2025-11-03T15:51:46.7488750Z Using cached pytest_rerunfailures-14.0-py3-none-any.whl (12 kB) 2025-11-03T15:51:46.7503210Z Using cached redis-7.0.1-py3-none-any.whl (339 kB) 2025-11-03T15:51:46.7538870Z Using cached pyzstd-0.16.2-cp312-cp312-macosx_11_0_arm64.whl (295 kB) 2025-11-03T15:51:46.7569820Z Using cached absl_py-2.3.1-py3-none-any.whl (135 kB) 2025-11-03T15:51:46.7588870Z Using cached aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB) 2025-11-03T15:51:46.7603670Z Using cached aiosignal-1.4.0-py3-none-any.whl (7.5 kB) 2025-11-03T15:51:46.7616670Z Using cached attrs-25.4.0-py3-none-any.whl (67 kB) 2025-11-03T15:51:46.7636700Z Using cached audioread-3.1.0-py3-none-any.whl (23 kB) 2025-11-03T15:51:46.7651360Z Using cached certifi-2025.10.5-py3-none-any.whl (163 kB) 2025-11-03T15:51:46.7676330Z Using cached decorator-5.2.1-py3-none-any.whl (9.2 kB) 2025-11-03T15:51:46.7690600Z Using cached execnet-2.1.1-py3-none-any.whl (40 kB) 2025-11-03T15:51:46.7715770Z Using cached frozenlist-1.8.0-cp312-cp312-macosx_11_0_arm64.whl (50 kB) 2025-11-03T15:51:46.7732110Z Using cached grpcio-1.76.0-cp312-cp312-macosx_11_0_universal2.whl (11.8 MB) 2025-11-03T15:51:46.8776480Z Using cached imageio-2.37.0-py3-none-any.whl (315 kB) 2025-11-03T15:51:46.8831790Z Using cached joblib-1.5.2-py3-none-any.whl (308 kB) 2025-11-03T15:51:46.8874610Z Using cached lazy_loader-0.4-py3-none-any.whl (12 kB) 2025-11-03T15:51:46.8893060Z Using cached markdown-3.9-py3-none-any.whl (107 kB) 2025-11-03T15:51:46.8911330Z Using cached markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl (12 kB) 2025-11-03T15:51:46.8929630Z Using cached ml_dtypes-0.5.3-cp312-cp312-macosx_10_13_universal2.whl (663 kB) 2025-11-03T15:51:46.8963790Z Using cached msgpack-1.1.2-cp312-cp312-macosx_11_0_arm64.whl (85 kB) 2025-11-03T15:51:46.8986280Z Using cached mypy_extensions-1.1.0-py3-none-any.whl (5.0 kB) 2025-11-03T15:51:46.8999310Z Using cached pooch-1.8.2-py3-none-any.whl (64 kB) 2025-11-03T15:51:46.9016540Z Using cached platformdirs-4.5.0-py3-none-any.whl (18 kB) 2025-11-03T15:51:46.9033880Z Using cached propcache-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (47 kB) 2025-11-03T15:51:46.9048970Z Using cached pyasn1-0.6.1-py3-none-any.whl (83 kB) 2025-11-03T15:51:46.9071800Z Using cached pyasn1_modules-0.4.2-py3-none-any.whl (181 kB) 2025-11-03T15:51:46.9092430Z Using cached PyJWT-2.10.1-py3-none-any.whl (22 kB) 2025-11-03T15:51:46.9115550Z Using cached cryptography-46.0.3-cp311-abi3-macosx_10_9_universal2.whl (7.2 MB) 2025-11-03T15:51:46.9786810Z Using cached cffi-2.0.0-cp312-cp312-macosx_11_0_arm64.whl (181 kB) 2025-11-03T15:51:46.9831710Z Using cached pynacl-1.6.0-cp38-abi3-macosx_10_10_universal2.whl (382 kB) 2025-11-03T15:51:46.9894490Z Using cached pytz-2025.2-py2.py3-none-any.whl (509 kB) 2025-11-03T15:51:46.9927890Z Using cached requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) 2025-11-03T15:51:46.9945970Z Using cached oauthlib-3.3.1-py3-none-any.whl (160 kB) 2025-11-03T15:51:46.9965370Z Using cached scikit_learn-1.7.2-cp312-cp312-macosx_12_0_arm64.whl (8.6 MB) 2025-11-03T15:51:47.0909550Z Using cached soundfile-0.13.1-py2.py3-none-macosx_11_0_arm64.whl (1.1 MB) 2025-11-03T15:51:47.1032860Z Using cached soxr-1.0.0-cp312-abi3-macosx_11_0_arm64.whl (163 kB) 2025-11-03T15:51:47.1053330Z Using cached threadpoolctl-3.6.0-py3-none-any.whl (18 kB) 2025-11-03T15:51:47.1069000Z Using cached tifffile-2025.10.16-py3-none-any.whl (231 kB) 2025-11-03T15:51:47.1092960Z Using cached tzdata-2025.2-py2.py3-none-any.whl (347 kB) 2025-11-03T15:51:47.1125150Z Using cached werkzeug-3.1.3-py3-none-any.whl (224 kB) 2025-11-03T15:51:47.1149360Z Using cached wheel-0.45.1-py3-none-any.whl (72 kB) 2025-11-03T15:51:47.1166580Z Using cached cattrs-25.2.0-py3-none-any.whl (70 kB) 2025-11-03T15:51:47.1191310Z Using cached colorama-0.4.6-py2.py3-none-any.whl (25 kB) 2025-11-03T15:51:47.1208160Z Using cached deprecated-1.3.1-py2.py3-none-any.whl (11 kB) 2025-11-03T15:51:47.1232260Z Using cached wrapt-2.0.0-cp312-cp312-macosx_11_0_arm64.whl (61 kB) 2025-11-03T15:51:47.1248430Z Using cached distro-1.9.0-py3-none-any.whl (20 kB) 2025-11-03T15:51:47.1264820Z Using cached future-1.0.0-py3-none-any.whl (491 kB) 2025-11-03T15:51:47.1306360Z Using cached iniconfig-2.3.0-py3-none-any.whl (7.5 kB) 2025-11-03T15:51:47.1320900Z Using cached pyaml-25.7.0-py3-none-any.whl (26 kB) 2025-11-03T15:51:47.1336470Z Using cached pycparser-2.23-py3-none-any.whl (118 kB) 2025-11-03T15:51:47.1354810Z Using cached pyproject_hooks-1.2.0-py3-none-any.whl (10 kB) 2025-11-03T15:51:47.1368590Z Using cached tqdm-4.67.1-py3-none-any.whl (78 kB) 2025-11-03T15:51:47.5431950Z Installing collected packages: z3-solver, sortedcontainers, pytz, ply, parameterized, mpmath, lark, flatbuffers, xdoctest, wrapt, wheel, urllib3, tzdata, typing-extensions, tqdm, tlparse, threadpoolctl, tensorboard-data-server, tabulate, sympy, six, setuptools, redis, pyzstd, pyyaml, pyproject_hooks, pyjwt, pygments, pycparser, pyasn1, pulp, psutil, protobuf, propcache, pluggy, platformdirs, pillow, packaging, oauthlib, numpy, ninja, networkx, mypy-extensions, multidict, msgpack, MarkupSafe, markdown, lxml, llvmlite, lintrunner, joblib, jmespath, iniconfig, idna, future, frozenlist, filelock, expecttest, execnet, distro, dill, decorator, colorama, cmake, click, charset_normalizer, certifi, cachetools, audioread, attrs, aiohappyeyeballs, absl-py, yarl, werkzeug, unittest-xml-reporting, typing-inspect, tifffile, thriftpy2, soxr, setuptools-git-versioning, scipy, scikit-build, rsa, requests, pywavelets, python-dateutil, pytest, pyasn1-modules, pyaml, optree, opt-einsum, numba, ml_dtypes, marshmallow, lazy-loader, junitparser, jinja2, imageio, hypothesis, grpcio, Deprecated, cffi, cattrs, build, aiosignal, soundfile, scikit-learn, scikit-image, requests-oauthlib, pytest-xdist, pytest-subtests, pytest-rerunfailures, pytest-flakefinder, pytest-cpp, pyre-extensions, pynacl, pyDOE, pooch, pandas, onnx, google-auth, dataclasses_json, cryptography, coremltools, botocore, aiohttp, s3transfer, pwlf, onnx_ir, librosa, google-auth-oauthlib, ghstack, fbscribelogger, tensorboard, PyGithub, onnxscript, boto3 2025-11-03T15:52:12.8338170Z 2025-11-03T15:52:12.8395930Z Successfully installed Deprecated-1.3.1 MarkupSafe-3.0.3 PyGithub-2.3.0 absl-py-2.3.1 aiohappyeyeballs-2.6.1 aiohttp-3.13.2 aiosignal-1.4.0 attrs-25.4.0 audioread-3.1.0 boto3-1.35.42 botocore-1.35.99 build-1.3.0 cachetools-6.2.1 cattrs-25.2.0 certifi-2025.10.5 cffi-2.0.0 charset_normalizer-3.4.4 click-8.3.0 cmake-3.31.6 colorama-0.4.6 coremltools-8.3.0 cryptography-46.0.3 dataclasses_json-0.6.7 decorator-5.2.1 dill-0.3.7 distro-1.9.0 execnet-2.1.1 expecttest-0.3.0 fbscribelogger-0.1.7 filelock-3.18.0 flatbuffers-24.12.23 frozenlist-1.8.0 future-1.0.0 ghstack-0.8.0 google-auth-2.42.1 google-auth-oauthlib-1.0.0 grpcio-1.76.0 hypothesis-6.56.4 idna-3.11 imageio-2.37.0 iniconfig-2.3.0 jinja2-3.1.6 jmespath-1.0.1 joblib-1.5.2 junitparser-2.1.1 lark-0.12.0 lazy-loader-0.4 librosa-0.10.2 lintrunner-0.12.7 llvmlite-0.43.0 lxml-5.3.0 markdown-3.9 marshmallow-3.26.1 ml_dtypes-0.5.3 mpmath-1.3.0 msgpack-1.1.2 multidict-6.7.0 mypy-extensions-1.1.0 networkx-2.8.8 ninja-1.11.1.4 numba-0.60.0 numpy-1.26.2 oauthlib-3.3.1 onnx-1.19.1 onnx_ir-0.1.12 onnxscript-0.5.4 opt-einsum-3.3.0 optree-0.13.0 packaging-23.1 pandas-2.0.3 parameterized-0.8.1 pillow-11.0.0 platformdirs-4.5.0 pluggy-1.6.0 ply-3.11 pooch-1.8.2 propcache-0.4.1 protobuf-5.29.5 psutil-7.1.3 pulp-2.9.0 pwlf-2.2.1 pyDOE-0.3.8 pyaml-25.7.0 pyasn1-0.6.1 pyasn1-modules-0.4.2 pycparser-2.23 pygments-2.15.0 pyjwt-2.10.1 pynacl-1.6.0 pyproject_hooks-1.2.0 pyre-extensions-0.0.32 pytest-7.3.2 pytest-cpp-2.3.0 pytest-flakefinder-1.1.0 pytest-rerunfailures-14.0 pytest-subtests-0.13.1 pytest-xdist-3.3.1 python-dateutil-2.9.0.post0 pytz-2025.2 pywavelets-1.7.0 pyyaml-6.0.3 pyzstd-0.16.2 redis-7.0.1 requests-2.32.5 requests-oauthlib-2.0.0 rsa-4.9.1 s3transfer-0.10.4 scikit-build-0.18.1 scikit-image-0.22.0 scikit-learn-1.7.2 scipy-1.14.1 setuptools-78.1.1 setuptools-git-versioning-2.1.0 six-1.17.0 sortedcontainers-2.4.0 soundfile-0.13.1 soxr-1.0.0 sympy-1.13.3 tabulate-0.9.0 tensorboard-2.13.0 tensorboard-data-server-0.7.2 threadpoolctl-3.6.0 thriftpy2-0.5.3 tifffile-2025.10.16 tlparse-0.4.0 tqdm-4.67.1 typing-extensions-4.12.2 typing-inspect-0.9.0 tzdata-2025.2 unittest-xml-reporting-3.2.0 urllib3-2.5.0 werkzeug-3.1.3 wheel-0.45.1 wrapt-2.0.0 xdoctest-1.3.0 yarl-1.22.0 z3-solver-4.15.1.0 2025-11-03T15:52:13.5603540Z ##[group]Run nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e 2025-11-03T15:52:13.5603780Z with: 2025-11-03T15:52:13.5603890Z timeout_minutes: 5 2025-11-03T15:52:13.5604020Z max_attempts: 3 2025-11-03T15:52:13.5604150Z retry_wait_seconds: 90 2025-11-03T15:52:13.5606570Z 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-11-03T15:52:13.5608950Z polling_interval_seconds: 1 2025-11-03T15:52:13.5609100Z warning_on_retry: true 2025-11-03T15:52:13.5609240Z continue_on_error: false 2025-11-03T15:52:13.5609370Z env: 2025-11-03T15:52:13.5609490Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:52:13.5609650Z SCCACHE_USE_GHA: false 2025-11-03T15:52:13.5609850Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:52:13.5610060Z ##[endgroup] 2025-11-03T15:52:13.6387450Z + DOWNLOAD_SCCACHE=0 2025-11-03T15:52:13.6387730Z + SCCACHE_VERSION=0.4.1 2025-11-03T15:52:13.6388010Z + LOCAL_PATH=/usr/local/bin 2025-11-03T15:52:13.6388210Z + '[' '!' -f /usr/local/bin/sccache ']' 2025-11-03T15:52:13.6391530Z ++ /usr/local/bin/sccache --version 2025-11-03T15:52:13.6392340Z ++ cut '-d ' -f2 2025-11-03T15:52:13.6422060Z + LOCAL_VERSION=0.4.1 2025-11-03T15:52:13.6422760Z + '[' 0.4.1 '!=' 0.4.1 ']' 2025-11-03T15:52:13.6423430Z + '[' 0 == 1 ']' 2025-11-03T15:52:13.6423610Z + [[ false == \t\r\u\e ]] 2025-11-03T15:52:13.6423840Z + echo SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2 2025-11-03T15:52:13.6424110Z + echo SCCACHE_S3_KEY_PREFIX=trunk 2025-11-03T15:52:13.6433710Z + echo /usr/local/bin 2025-11-03T15:52:14.6397400Z Command completed after 1 attempt(s). 2025-11-03T15:52:14.6579260Z Prepare all required actions 2025-11-03T15:52:14.6651480Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-11-03T15:52:14.6652320Z with: 2025-11-03T15:52:14.6653560Z github-token: *** 2025-11-03T15:52:14.6654110Z env: 2025-11-03T15:52:14.6654590Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:52:14.6655260Z SCCACHE_USE_GHA: false 2025-11-03T15:52:14.6656070Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:52:14.6657160Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-11-03T15:52:14.6657990Z SCCACHE_S3_KEY_PREFIX: trunk 2025-11-03T15:52:14.6658610Z ##[endgroup] 2025-11-03T15:52:14.6694560Z ##[group]Run set -eux 2025-11-03T15:52:14.6695050Z set -eux 2025-11-03T15:52:14.6695830Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-11-03T15:52:14.6765370Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-11-03T15:52:14.6765890Z env: 2025-11-03T15:52:14.6766290Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:52:14.6766770Z SCCACHE_USE_GHA: false 2025-11-03T15:52:14.6767310Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:52:14.6768030Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-11-03T15:52:14.6768580Z SCCACHE_S3_KEY_PREFIX: trunk 2025-11-03T15:52:14.6769220Z GITHUB_TOKEN: *** 2025-11-03T15:52:14.6769550Z ##[endgroup] 2025-11-03T15:52:14.7191530Z + python3 .github/scripts/get_workflow_job_id.py 19040285449 i-09e678448119c7ba2 2025-11-03T15:52:15.3591580Z Setting output job-id=54375339888 2025-11-03T15:52:15.3594260Z Setting output job-name=macos-py3-arm64 / build 2025-11-03T15:52:15.4042080Z Prepare all required actions 2025-11-03T15:52:15.4042590Z Getting action download info 2025-11-03T15:52:15.5880680Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-11-03T15:52:15.8007400Z ##[group]Run ./.github/actions/filter-test-configs 2025-11-03T15:52:15.8007640Z with: 2025-11-03T15:52:15.8007920Z github-token: *** 2025-11-03T15:52:15.8008690Z 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-11-03T15:52:15.8009480Z job-name: macos-py3-arm64 / build 2025-11-03T15:52:15.8009660Z env: 2025-11-03T15:52:15.8009840Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:52:15.8010040Z SCCACHE_USE_GHA: false 2025-11-03T15:52:15.8010450Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:52:15.8010770Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-11-03T15:52:15.8010990Z SCCACHE_S3_KEY_PREFIX: trunk 2025-11-03T15:52:15.8011300Z ##[endgroup] 2025-11-03T15:52:15.8045510Z ##[group]Run nick-fields/retry@v3.0.0 2025-11-03T15:52:15.8045670Z with: 2025-11-03T15:52:15.8045770Z shell: bash 2025-11-03T15:52:15.8045880Z timeout_minutes: 10 2025-11-03T15:52:15.8046000Z max_attempts: 5 2025-11-03T15:52:15.8046120Z retry_wait_seconds: 30 2025-11-03T15:52:15.8046570Z 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-11-03T15:52:15.8047050Z polling_interval_seconds: 1 2025-11-03T15:52:15.8047230Z warning_on_retry: true 2025-11-03T15:52:15.8047390Z continue_on_error: false 2025-11-03T15:52:15.8047550Z env: 2025-11-03T15:52:15.8047680Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:52:15.8047860Z SCCACHE_USE_GHA: false 2025-11-03T15:52:15.8048070Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:52:15.8048390Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-11-03T15:52:15.8048610Z SCCACHE_S3_KEY_PREFIX: trunk 2025-11-03T15:52:15.8048850Z GITHUB_TOKEN: *** 2025-11-03T15:52:15.8048990Z ##[endgroup] 2025-11-03T15:52:15.8780300Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-11-03T15:52:16.0742120Z Collecting requests==2.27.1 2025-11-03T15:52:16.0763630Z Using cached requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-11-03T15:52:16.0977880Z Collecting pyyaml==6.0.2 2025-11-03T15:52:16.0993030Z Using cached PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.1 kB) 2025-11-03T15:52:16.1158670Z Collecting urllib3<1.27,>=1.21.1 (from requests==2.27.1) 2025-11-03T15:52:16.1179090Z Using cached urllib3-1.26.20-py2.py3-none-any.whl.metadata (50 kB) 2025-11-03T15:52:16.1252660Z Requirement already satisfied: certifi>=2017.4.17 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/lib/python3.12/site-packages (from requests==2.27.1) (2025.10.5) 2025-11-03T15:52:16.1693350Z Collecting charset-normalizer~=2.0.0 (from requests==2.27.1) 2025-11-03T15:52:16.1722950Z Using cached charset_normalizer-2.0.12-py3-none-any.whl.metadata (11 kB) 2025-11-03T15:52:16.1767240Z Requirement already satisfied: idna<4,>=2.5 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/lib/python3.12/site-packages (from requests==2.27.1) (3.11) 2025-11-03T15:52:16.1802100Z Using cached requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-11-03T15:52:16.1826060Z Using cached PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl (173 kB) 2025-11-03T15:52:16.1855830Z Using cached charset_normalizer-2.0.12-py3-none-any.whl (39 kB) 2025-11-03T15:52:16.1876520Z Using cached urllib3-1.26.20-py2.py3-none-any.whl (144 kB) 2025-11-03T15:52:16.2777770Z Installing collected packages: urllib3, pyyaml, charset-normalizer, requests 2025-11-03T15:52:16.2779390Z Attempting uninstall: urllib3 2025-11-03T15:52:16.2791900Z Found existing installation: urllib3 2.5.0 2025-11-03T15:52:16.2816490Z Uninstalling urllib3-2.5.0: 2025-11-03T15:52:16.2825680Z Successfully uninstalled urllib3-2.5.0 2025-11-03T15:52:16.3301250Z Attempting uninstall: pyyaml 2025-11-03T15:52:16.3324980Z Found existing installation: PyYAML 6.0.3 2025-11-03T15:52:16.3340190Z Uninstalling PyYAML-6.0.3: 2025-11-03T15:52:16.3347480Z Successfully uninstalled PyYAML-6.0.3 2025-11-03T15:52:16.3659650Z Attempting uninstall: charset-normalizer 2025-11-03T15:52:16.3689350Z Found existing installation: charset-normalizer 3.4.4 2025-11-03T15:52:16.3707900Z Uninstalling charset-normalizer-3.4.4: 2025-11-03T15:52:16.3717390Z Successfully uninstalled charset-normalizer-3.4.4 2025-11-03T15:52:16.3905230Z Attempting uninstall: requests 2025-11-03T15:52:16.3921090Z Found existing installation: requests 2.32.5 2025-11-03T15:52:16.3936030Z Uninstalling requests-2.32.5: 2025-11-03T15:52:16.3941980Z Successfully uninstalled requests-2.32.5 2025-11-03T15:52:16.4176640Z 2025-11-03T15:52:16.4225320Z Successfully installed charset-normalizer-2.0.12 pyyaml-6.0.2 requests-2.27.1 urllib3-1.26.20 2025-11-03T15:52:16.8813940Z Command completed after 1 attempt(s). 2025-11-03T15:52:16.8960620Z ##[group]Run set -x 2025-11-03T15:52:16.8961350Z set -x 2025-11-03T15:52:16.8961980Z  2025-11-03T15:52:16.8962970Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-11-03T15:52:16.8964210Z # in runner workspace 2025-11-03T15:52:16.8965240Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-11-03T15:52:16.9030830Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-11-03T15:52:16.9031590Z env: 2025-11-03T15:52:16.9032090Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:52:16.9032690Z SCCACHE_USE_GHA: false 2025-11-03T15:52:16.9033350Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:52:16.9034130Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-11-03T15:52:16.9034740Z SCCACHE_S3_KEY_PREFIX: trunk 2025-11-03T15:52:16.9035200Z ##[endgroup] 2025-11-03T15:52:16.9515860Z + python3 /Users/ec2-user/runner/_work/pytorch/pytorch/./.github/actions/filter-test-configs/../../scripts/parse_ref.py 2025-11-03T15:52:16.9717450Z Setting output branch=main 2025-11-03T15:52:16.9775700Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-11-03T15:52:16.9775970Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-11-03T15:52:16.9776170Z echo "Job name: ${JOB_NAME}" 2025-11-03T15:52:16.9776360Z  2025-11-03T15:52:16.9776590Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-11-03T15:52:16.9776890Z # in runner workspace 2025-11-03T15:52:16.9777210Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-11-03T15:52:16.9777510Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-11-03T15:52:16.9777720Z  --job-name "${JOB_NAME}" \ 2025-11-03T15:52:16.9777910Z  --test-matrix "{ include: [ 2025-11-03T15:52:16.9778180Z  { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, 2025-11-03T15:52:16.9778540Z  { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, 2025-11-03T15:52:16.9778890Z  { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, 2025-11-03T15:52:16.9779220Z  { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-14" }, 2025-11-03T15:52:16.9779530Z  { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, 2025-11-03T15:52:16.9779770Z ]} 2025-11-03T15:52:16.9779890Z " \ 2025-11-03T15:52:16.9780040Z  --selected-test-configs "" \ 2025-11-03T15:52:16.9780550Z  --pr-number "${PR_NUMBER}" \ 2025-11-03T15:52:16.9780750Z  --tag "${TAG}" \ 2025-11-03T15:52:16.9780930Z  --event-name "${EVENT_NAME}" \ 2025-11-03T15:52:16.9781130Z  --schedule "${SCHEDULE}" \ 2025-11-03T15:52:16.9781340Z  --branch "${HEAD_BRANCH}" 2025-11-03T15:52:16.9798320Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-11-03T15:52:16.9798540Z env: 2025-11-03T15:52:16.9798670Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:52:16.9798860Z SCCACHE_USE_GHA: false 2025-11-03T15:52:16.9799100Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:52:16.9799390Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-11-03T15:52:16.9799610Z SCCACHE_S3_KEY_PREFIX: trunk 2025-11-03T15:52:16.9800070Z GITHUB_TOKEN: *** 2025-11-03T15:52:16.9800220Z JOB_NAME: macos-py3-arm64 / build 2025-11-03T15:52:16.9800390Z PR_NUMBER: 2025-11-03T15:52:16.9800520Z TAG: 2025-11-03T15:52:16.9800660Z EVENT_NAME: push 2025-11-03T15:52:16.9800800Z SCHEDULE: 2025-11-03T15:52:16.9800920Z HEAD_BRANCH: main 2025-11-03T15:52:16.9801050Z ##[endgroup] 2025-11-03T15:52:17.0050170Z Workflow: trunk 2025-11-03T15:52:17.0050410Z Job name: macos-py3-arm64 / build 2025-11-03T15:52:17.3827870Z Setting output keep-going=True 2025-11-03T15:52:17.3828520Z Setting output ci-verbose-test-logs=False 2025-11-03T15:52:17.3829050Z Setting output ci-test-showlocals=False 2025-11-03T15:52:17.3829560Z Setting output ci-no-test-timeout=False 2025-11-03T15:52:17.3830060Z Setting output ci-no-td=False 2025-11-03T15:52:17.3830540Z Setting output ci-td-distributed=False 2025-11-03T15:52:17.3831020Z Setting output is-unstable=False 2025-11-03T15:52:17.3831530Z Setting output reenabled-issues= 2025-11-03T15:52:17.3833790Z 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-11-03T15:52:17.3836100Z Setting output is-test-matrix-empty=False 2025-11-03T15:52:17.4047910Z ##[group]Run echo "Filtered matrix:" 2025-11-03T15:52:17.4048240Z echo "Filtered matrix:" 2025-11-03T15:52:17.4049520Z 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-11-03T15:52:17.4050790Z  2025-11-03T15:52:17.4050960Z echo 2025-11-03T15:52:17.4051220Z echo "Is the current job unstable? False" 2025-11-03T15:52:17.4051530Z  2025-11-03T15:52:17.4051690Z echo 2025-11-03T15:52:17.4051910Z echo "Is keep-going label set? True" 2025-11-03T15:52:17.4052190Z  2025-11-03T15:52:17.4052360Z echo 2025-11-03T15:52:17.4052560Z echo "Reenabled issues? " 2025-11-03T15:52:17.4078870Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-11-03T15:52:17.4079210Z env: 2025-11-03T15:52:17.4079400Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:52:17.4079680Z SCCACHE_USE_GHA: false 2025-11-03T15:52:17.4080000Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:52:17.4080440Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-11-03T15:52:17.4080770Z SCCACHE_S3_KEY_PREFIX: trunk 2025-11-03T15:52:17.4081000Z ##[endgroup] 2025-11-03T15:52:17.4372450Z Filtered matrix: 2025-11-03T15:52:17.4373670Z {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-11-03T15:52:17.4374600Z 2025-11-03T15:52:17.4374690Z Is the current job unstable? False 2025-11-03T15:52:17.4374840Z 2025-11-03T15:52:17.4374910Z Is keep-going label set? True 2025-11-03T15:52:17.4375030Z 2025-11-03T15:52:17.4375090Z Reenabled issues? 2025-11-03T15:52:17.4401770Z ##[group]Run # TODO: Remove me later, and properly activate venv 2025-11-03T15:52:17.4402110Z # TODO: Remove me later, and properly activate venv 2025-11-03T15:52:17.4402350Z PATH="$VENV_PATH/bin:$PATH" 2025-11-03T15:52:17.4402530Z export PATH 2025-11-03T15:52:17.4402680Z  2025-11-03T15:52:17.4402920Z # NB: Same trick as Linux, there is no need to initialize sccache with the risk of getting 2025-11-03T15:52:17.4403340Z # it hangs or timeout at initialization. The cache will be started automatically 2025-11-03T15:52:17.4403650Z export SKIP_SCCACHE_INITIALIZATION=1 2025-11-03T15:52:17.4403870Z .ci/pytorch/macos-build.sh 2025-11-03T15:52:17.4420940Z shell: /bin/bash -e {0} 2025-11-03T15:52:17.4421110Z env: 2025-11-03T15:52:17.4421250Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:52:17.4421430Z SCCACHE_USE_GHA: false 2025-11-03T15:52:17.4421690Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:52:17.4421980Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-11-03T15:52:17.4422200Z SCCACHE_S3_KEY_PREFIX: trunk 2025-11-03T15:52:17.4422370Z OUR_GITHUB_JOB_ID: 54375339888 2025-11-03T15:52:17.4422550Z ##[endgroup] 2025-11-03T15:52:17.5003100Z +++ [[ macos-py3-arm64 == *rocm* ]] 2025-11-03T15:52:17.5003390Z +++ BUILD_TEST_LIBTORCH=0 2025-11-03T15:52:17.5005420Z ++ sysctl -a 2025-11-03T15:52:17.5006750Z ++ grep machdep.cpu 2025-11-03T15:52:17.5124630Z machdep.cpu.cores_per_package: 8 2025-11-03T15:52:17.5124860Z machdep.cpu.core_count: 8 2025-11-03T15:52:17.5125050Z machdep.cpu.logical_per_package: 8 2025-11-03T15:52:17.5125260Z machdep.cpu.thread_count: 8 2025-11-03T15:52:17.5125450Z machdep.cpu.brand_string: Apple M1 2025-11-03T15:52:17.5125790Z ++ export MACOSX_DEPLOYMENT_TARGET=11.1 2025-11-03T15:52:17.5126000Z ++ MACOSX_DEPLOYMENT_TARGET=11.1 2025-11-03T15:52:17.5126570Z ++ export CXX=clang++ 2025-11-03T15:52:17.5126760Z ++ CXX=clang++ 2025-11-03T15:52:17.5126950Z ++ export CC=clang 2025-11-03T15:52:17.5127110Z ++ CC=clang 2025-11-03T15:52:17.5129970Z ++ dirname .ci/pytorch/macos-build.sh 2025-11-03T15:52:17.5138950Z + source .ci/pytorch/common-build.sh 2025-11-03T15:52:17.5147190Z ++ [[ macos-py3-arm64 != *win-* ]] 2025-11-03T15:52:17.5151930Z ++++ dirname .ci/pytorch/common-build.sh 2025-11-03T15:52:17.5162930Z +++ cd .ci/pytorch 2025-11-03T15:52:17.5163190Z +++ pwd -P 2025-11-03T15:52:17.5164520Z ++ script_dir=/Users/ec2-user/runner/_work/pytorch/pytorch/.ci/pytorch 2025-11-03T15:52:17.5164830Z ++ [[ macos-py3-arm64 == *-pch* ]] 2025-11-03T15:52:17.5165020Z ++ which sccache 2025-11-03T15:52:17.5196060Z ++ [[ -z ossci-compiler-cache-circleci-v2 ]] 2025-11-03T15:52:17.5196300Z ++ sccache --stop-server 2025-11-03T15:52:17.5239570Z ++ true 2025-11-03T15:52:17.5239730Z ++ rm -f /Users/ec2-user/sccache_error.log 2025-11-03T15:52:17.5278450Z ++ trap_add sccache_epilogue EXIT 2025-11-03T15:52:17.5278700Z ++ trap_add_cmd=sccache_epilogue 2025-11-03T15:52:17.5278890Z ++ shift 2025-11-03T15:52:17.5279100Z ++ for trap_add_name in '"$@"' 2025-11-03T15:52:17.5284100Z ++++ trap -p EXIT 2025-11-03T15:52:17.5285280Z +++ eval 'extract_trap_cmd ' 2025-11-03T15:52:17.5285480Z ++++ extract_trap_cmd 2025-11-03T15:52:17.5285650Z ++++ printf '%s\n' '' 2025-11-03T15:52:17.5285860Z +++ printf '%s\n' sccache_epilogue 2025-11-03T15:52:17.5287290Z ++ trap -- ' 2025-11-03T15:52:17.5287440Z sccache_epilogue' EXIT 2025-11-03T15:52:17.5287590Z ++ [[ -n 1 ]] 2025-11-03T15:52:17.5288210Z ++ echo 'Skipping sccache server initialization, setting environment variables' 2025-11-03T15:52:17.5288620Z Skipping sccache server initialization, setting environment variables 2025-11-03T15:52:17.5288930Z ++ export SCCACHE_IDLE_TIMEOUT=0 2025-11-03T15:52:17.5289110Z ++ SCCACHE_IDLE_TIMEOUT=0 2025-11-03T15:52:17.5289340Z ++ export SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2025-11-03T15:52:17.5289630Z ++ SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2025-11-03T15:52:17.5294300Z ++ export RUST_LOG=sccache::server=error 2025-11-03T15:52:17.5294510Z ++ RUST_LOG=sccache::server=error 2025-11-03T15:52:17.5294690Z ++ sccache --zero-stats 2025-11-03T15:52:17.9910750Z Compile requests 0 2025-11-03T15:52:17.9911200Z Compile requests executed 0 2025-11-03T15:52:17.9911560Z Cache hits 0 2025-11-03T15:52:17.9911890Z Cache misses 0 2025-11-03T15:52:17.9912240Z Cache timeouts 0 2025-11-03T15:52:17.9912590Z Cache read errors 0 2025-11-03T15:52:17.9912930Z Forced recaches 0 2025-11-03T15:52:17.9913260Z Cache write errors 0 2025-11-03T15:52:17.9913610Z Compilation failures 0 2025-11-03T15:52:17.9913940Z Cache errors 0 2025-11-03T15:52:17.9914260Z Non-cacheable compilations 0 2025-11-03T15:52:17.9914610Z Non-cacheable calls 0 2025-11-03T15:52:17.9914990Z Non-compilation calls 0 2025-11-03T15:52:17.9915360Z Unsupported compiler calls 0 2025-11-03T15:52:17.9915720Z Average cache write 0.000 s 2025-11-03T15:52:17.9916090Z Average compiler 0.000 s 2025-11-03T15:52:17.9916430Z Average cache read hit 0.000 s 2025-11-03T15:52:17.9916790Z Failed distributed compilations 0 2025-11-03T15:52:17.9917330Z Cache location s3, name: ossci-compiler-cache-circleci-v2, prefix: /trunk/ 2025-11-03T15:52:17.9917920Z Version (client) 0.4.1 2025-11-03T15:52:17.9918260Z ++ which ccache 2025-11-03T15:52:17.9941460Z + '[' -z true ']' 2025-11-03T15:52:17.9942040Z + which sccache 2025-11-03T15:52:17.9965750Z ++ mktemp -d 2025-11-03T15:52:18.2661660Z + tmp_dir=/var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ 2025-11-03T15:52:18.2667540Z + trap 'rm -rfv ${tmp_dir}' EXIT 2025-11-03T15:52:18.2770130Z + write_sccache_stub /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang++ 2025-11-03T15:52:18.2777210Z + output=/var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang++ 2025-11-03T15:52:18.2778280Z ++ basename /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang++ 2025-11-03T15:52:18.2778910Z + binary=clang++ 2025-11-03T15:52:18.2780980Z ++ which clang++ 2025-11-03T15:52:18.2807660Z ++ which clang++ 2025-11-03T15:52:18.2827560Z + 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-11-03T15:52:18.2830880Z + chmod a+x /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang++ 2025-11-03T15:52:18.2895420Z + write_sccache_stub /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang 2025-11-03T15:52:18.2896680Z + output=/var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang 2025-11-03T15:52:18.2902750Z ++ basename /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang 2025-11-03T15:52:18.2949620Z + binary=clang 2025-11-03T15:52:18.2958890Z ++ which clang 2025-11-03T15:52:18.3000130Z ++ which clang 2025-11-03T15:52:18.3033230Z + 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-11-03T15:52:18.3037360Z + chmod a+x /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang 2025-11-03T15:52:18.3078540Z + export PATH=/var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ:/Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin:/usr/local/bin:/Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/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-11-03T15:52:18.3084580Z + PATH=/var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ:/Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin:/usr/local/bin:/Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/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-11-03T15:52:18.3087450Z + print_cmake_info 2025-11-03T15:52:18.3087840Z ++ which cmake 2025-11-03T15:52:18.3112560Z + CMAKE_EXEC=/Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin/cmake 2025-11-03T15:52:18.3148190Z + echo /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin/cmake 2025-11-03T15:52:18.3149900Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin/cmake 2025-11-03T15:52:18.3150950Z ++ dirname /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin/cmake 2025-11-03T15:52:18.3152090Z + CONDA_INSTALLATION_DIR=/Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin 2025-11-03T15:52:18.3153210Z + ls -la /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin/../lib 2025-11-03T15:52:18.3200550Z total 0 2025-11-03T15:52:18.3200930Z drwxr-xr-x 3 ec2-user staff 96 Nov 3 15:51 . 2025-11-03T15:52:18.3201570Z drwxr-xr-x 8 ec2-user staff 256 Nov 3 15:51 .. 2025-11-03T15:52:18.3202190Z drwxr-xr-x 3 ec2-user staff 96 Nov 3 15:51 python3.12 2025-11-03T15:52:18.3204650Z + [[ macos-py3-arm64 == *\d\i\s\t\r\i\b\u\t\e\d* ]] 2025-11-03T15:52:18.3205220Z + USE_DISTRIBUTED=0 2025-11-03T15:52:18.3205600Z + USE_OPENMP=1 2025-11-03T15:52:18.3205920Z + MACOSX_DEPLOYMENT_TARGET=11.0 2025-11-03T15:52:18.3206280Z + WERROR=1 2025-11-03T15:52:18.3206570Z + BUILD_TEST=OFF 2025-11-03T15:52:18.3206900Z + USE_PYTORCH_METAL=1 2025-11-03T15:52:18.3207590Z + python -m build --wheel --no-isolation -C--build-option=--plat-name=macosx_11_0_arm64 2025-11-03T15:52:18.4193050Z * Getting build dependencies for wheel... 2025-11-03T15:52:18.5349500Z Building wheel torch-2.10.0a0+git3f6538f 2025-11-03T15:52:19.2243550Z Found cmake (/Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin/cmake) version: 3.31.6 (>=3.27) 2025-11-03T15:52:19.4706620Z Could not find an up-to-date installation of `packaging`. License expressions might not be validated. To enforce validation, please install `packaging>=24.2`. 2025-11-03T15:52:19.4740670Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated 2025-11-03T15:52:19.4741330Z !! 2025-11-03T15:52:19.4741610Z 2025-11-03T15:52:19.4741740Z ******************************************************************************** 2025-11-03T15:52:19.4742270Z Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). 2025-11-03T15:52:19.4742700Z 2025-11-03T15:52:19.4742850Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-11-03T15:52:19.4743140Z or your builds will no longer be supported. 2025-11-03T15:52:19.4743290Z 2025-11-03T15:52:19.4743530Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-11-03T15:52:19.4743880Z ******************************************************************************** 2025-11-03T15:52:19.4744020Z 2025-11-03T15:52:19.4744060Z !! 2025-11-03T15:52:19.4744330Z corresp(dist, value, root_dir) 2025-11-03T15:52:19.5044610Z running egg_info 2025-11-03T15:52:19.5080470Z creating torch.egg-info 2025-11-03T15:52:19.5081370Z writing torch.egg-info/PKG-INFO 2025-11-03T15:52:19.5087850Z writing dependency_links to torch.egg-info/dependency_links.txt 2025-11-03T15:52:19.5088920Z writing entry points to torch.egg-info/entry_points.txt 2025-11-03T15:52:19.5091980Z writing requirements to torch.egg-info/requires.txt 2025-11-03T15:52:19.5093280Z writing top-level names to torch.egg-info/top_level.txt 2025-11-03T15:52:19.5094010Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-11-03T15:52:19.6613530Z reading manifest file 'torch.egg-info/SOURCES.txt' 2025-11-03T15:52:19.6614920Z reading manifest template 'MANIFEST.in' 2025-11-03T15:52:19.8378180Z warning: no directories found matching 'ios' 2025-11-03T15:52:21.2803630Z no previously-included directories found matching 'third_party/nccl/pkg/debian' 2025-11-03T15:52:21.4106880Z no previously-included directories found matching '**/.gitlab' 2025-11-03T15:52:21.4630350Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-11-03T15:52:21.5154650Z warning: no previously-included files matching '*.obj' found anywhere in distribution 2025-11-03T15:52:21.5677390Z warning: no previously-included files matching '*.so' found anywhere in distribution 2025-11-03T15:52:21.6201050Z warning: no previously-included files matching '*.dylib' found anywhere in distribution 2025-11-03T15:52:21.6723590Z warning: no previously-included files matching '*.a' found anywhere in distribution 2025-11-03T15:52:21.9338990Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-11-03T15:52:21.9847280Z warning: no previously-included files matching '*~' found anywhere in distribution 2025-11-03T15:52:22.2236900Z adding license file 'LICENSE' 2025-11-03T15:52:22.2237110Z adding license file 'NOTICE' 2025-11-03T15:52:22.8618570Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-11-03T15:52:22.9485950Z * Building wheel... 2025-11-03T15:52:23.0422810Z Building wheel torch-2.10.0a0+git3f6538f 2025-11-03T15:52:23.1246760Z Found cmake (/Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin/cmake) version: 3.31.6 (>=3.27) 2025-11-03T15:52:23.1604260Z -- Building version 2.10.0a0+git3f6538f 2025-11-03T15:52:26.1775360Z 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-1762185092/lib/python3.12/site-packages -DPython_EXECUTABLE=/Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin/python -DPython_NumPy_INCLUDE_DIR=/Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/lib/python3.12/site-packages/numpy/core/include -DTORCH_BUILD_VERSION=2.10.0a0+git3f6538f -DUSE_DISTRIBUTED=0 -DUSE_NUMPY=True -DUSE_OPENMP=1 -DUSE_PYTORCH_METAL=1 -DWERROR=1 /Users/ec2-user/runner/_work/pytorch/pytorch 2025-11-03T15:52:26.3013990Z CMake Deprecation Warning at CMakeLists.txt:8 (cmake_policy): 2025-11-03T15:52:26.3014410Z The OLD behavior for policy CMP0126 will be removed from a future version 2025-11-03T15:52:26.3014700Z of CMake. 2025-11-03T15:52:26.3014780Z 2025-11-03T15:52:26.3014920Z The cmake-policies(7) manual explains that the OLD behaviors of all 2025-11-03T15:52:26.3015280Z policies are deprecated and that a policy should be set to OLD only under 2025-11-03T15:52:26.3015670Z specific short-term circumstances. Projects should be ported to the NEW 2025-11-03T15:52:26.3015990Z behavior and not rely on setting a policy to OLD. 2025-11-03T15:52:26.3016150Z 2025-11-03T15:52:26.3016150Z 2025-11-03T15:52:26.7892260Z -- The CXX compiler identification is AppleClang 16.0.0.16000026 2025-11-03T15:52:27.0449990Z -- The C compiler identification is AppleClang 16.0.0.16000026 2025-11-03T15:52:27.0518760Z -- Detecting CXX compiler ABI info 2025-11-03T15:52:27.2159190Z -- Detecting CXX compiler ABI info - done 2025-11-03T15:52:27.2255640Z -- Check for working CXX compiler: /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang++ - skipped 2025-11-03T15:52:27.2257390Z -- Detecting CXX compile features 2025-11-03T15:52:27.2261830Z -- Detecting CXX compile features - done 2025-11-03T15:52:27.2304780Z -- Detecting C compiler ABI info 2025-11-03T15:52:27.3465210Z -- Detecting C compiler ABI info - done 2025-11-03T15:52:27.3558960Z -- Check for working C compiler: /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang - skipped 2025-11-03T15:52:27.3560480Z -- Detecting C compile features 2025-11-03T15:52:27.3563720Z -- Detecting C compile features - done 2025-11-03T15:52:27.3624760Z -- Not forcing any particular BLAS to be found 2025-11-03T15:52:27.3849380Z -- CLANG_VERSION_STRING: 16.0 2025-11-03T15:52:27.3923270Z -- sdk version: 15.2, mps supported: ON 2025-11-03T15:52:27.4079220Z -- MPSGraph framework found 2025-11-03T15:52:27.4103690Z -- Could not find ccache. Consider installing ccache to speed up compilation. 2025-11-03T15:52:27.4135750Z -- Performing Test C_HAS_AVX_1 2025-11-03T15:52:27.5796790Z -- Performing Test C_HAS_AVX_1 - Failed 2025-11-03T15:52:27.5797130Z -- Performing Test C_HAS_AVX_2 2025-11-03T15:52:27.6558090Z -- Performing Test C_HAS_AVX_2 - Failed 2025-11-03T15:52:27.6558330Z -- Performing Test C_HAS_AVX_3 2025-11-03T15:52:27.7044900Z -- Performing Test C_HAS_AVX_3 - Failed 2025-11-03T15:52:27.7045300Z -- Performing Test C_HAS_AVX2_1 2025-11-03T15:52:27.7805430Z -- Performing Test C_HAS_AVX2_1 - Failed 2025-11-03T15:52:27.7805710Z -- Performing Test C_HAS_AVX2_2 2025-11-03T15:52:27.8569720Z -- Performing Test C_HAS_AVX2_2 - Failed 2025-11-03T15:52:27.8569990Z -- Performing Test C_HAS_AVX2_3 2025-11-03T15:52:27.9047090Z -- Performing Test C_HAS_AVX2_3 - Failed 2025-11-03T15:52:27.9047600Z -- Performing Test C_HAS_AVX512_1 2025-11-03T15:52:27.9811980Z -- Performing Test C_HAS_AVX512_1 - Failed 2025-11-03T15:52:27.9812280Z -- Performing Test C_HAS_AVX512_2 2025-11-03T15:52:28.0569450Z -- Performing Test C_HAS_AVX512_2 - Failed 2025-11-03T15:52:28.0569710Z -- Performing Test C_HAS_AVX512_3 2025-11-03T15:52:28.1054780Z -- Performing Test C_HAS_AVX512_3 - Failed 2025-11-03T15:52:28.1055270Z -- Performing Test CXX_HAS_AVX_1 2025-11-03T15:52:28.1817730Z -- Performing Test CXX_HAS_AVX_1 - Failed 2025-11-03T15:52:28.1818010Z -- Performing Test CXX_HAS_AVX_2 2025-11-03T15:52:28.2576500Z -- Performing Test CXX_HAS_AVX_2 - Failed 2025-11-03T15:52:28.2576770Z -- Performing Test CXX_HAS_AVX_3 2025-11-03T15:52:28.3059020Z -- Performing Test CXX_HAS_AVX_3 - Failed 2025-11-03T15:52:28.3059560Z -- Performing Test CXX_HAS_AVX2_1 2025-11-03T15:52:28.3827320Z -- Performing Test CXX_HAS_AVX2_1 - Failed 2025-11-03T15:52:28.3827790Z -- Performing Test CXX_HAS_AVX2_2 2025-11-03T15:52:28.4590900Z -- Performing Test CXX_HAS_AVX2_2 - Failed 2025-11-03T15:52:28.4591180Z -- Performing Test CXX_HAS_AVX2_3 2025-11-03T15:52:28.5062520Z -- Performing Test CXX_HAS_AVX2_3 - Failed 2025-11-03T15:52:28.5063030Z -- Performing Test CXX_HAS_AVX512_1 2025-11-03T15:52:28.5819310Z -- Performing Test CXX_HAS_AVX512_1 - Failed 2025-11-03T15:52:28.5819550Z -- Performing Test CXX_HAS_AVX512_2 2025-11-03T15:52:28.6586150Z -- Performing Test CXX_HAS_AVX512_2 - Failed 2025-11-03T15:52:28.6586460Z -- Performing Test CXX_HAS_AVX512_3 2025-11-03T15:52:28.7073780Z -- Performing Test CXX_HAS_AVX512_3 - Failed 2025-11-03T15:52:28.7078160Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-11-03T15:52:28.8235430Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Success 2025-11-03T15:52:28.8239460Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-11-03T15:52:28.9508810Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Success 2025-11-03T15:52:28.9512830Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC 2025-11-03T15:52:29.0660330Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC - Success 2025-11-03T15:52:29.0681050Z -- No OMAP3 processor on this machine. 2025-11-03T15:52:29.0681580Z -- No OMAP4 processor on this machine. 2025-11-03T15:52:29.0681850Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-11-03T15:52:29.0711760Z CMake Warning at CMakeLists.txt:853 (message): 2025-11-03T15:52:29.0712070Z x64 operating system is required for FBGEMM. Not compiling with FBGEMM. 2025-11-03T15:52:29.0712380Z Turn this warning off by USE_FBGEMM=OFF. 2025-11-03T15:52:29.0712510Z 2025-11-03T15:52:29.0712520Z 2025-11-03T15:52:29.0857180Z CUDA_TOOLKIT_ROOT_DIR not found or specified 2025-11-03T15:52:30.3515620Z -- Could NOT find CUDA (missing: CUDA_TOOLKIT_ROOT_DIR CUDA_NVCC_EXECUTABLE CUDA_INCLUDE_DIRS CUDA_CUDART_LIBRARY) 2025-11-03T15:52:30.3528210Z CMake Warning at cmake/public/cuda.cmake:31 (message): 2025-11-03T15:52:30.3528610Z PyTorch: CUDA cannot be found. Depending on whether you are building 2025-11-03T15:52:30.3529040Z PyTorch or a PyTorch dependent library, the next warning / error will give 2025-11-03T15:52:30.3529320Z you more info. 2025-11-03T15:52:30.3529470Z Call Stack (most recent call first): 2025-11-03T15:52:30.3529660Z cmake/Dependencies.cmake:44 (include) 2025-11-03T15:52:30.3529910Z CMakeLists.txt:881 (include) 2025-11-03T15:52:30.3530030Z 2025-11-03T15:52:30.3530030Z 2025-11-03T15:52:30.3530160Z CMake Warning at cmake/Dependencies.cmake:76 (message): 2025-11-03T15:52:30.3530480Z Not compiling with CUDA. Suppress this warning with -DUSE_CUDA=OFF. 2025-11-03T15:52:30.3530760Z Call Stack (most recent call first): 2025-11-03T15:52:30.3530960Z CMakeLists.txt:881 (include) 2025-11-03T15:52:30.3531070Z 2025-11-03T15:52:30.3531080Z 2025-11-03T15:52:30.3551070Z CMake Warning at cmake/Dependencies.cmake:95 (message): 2025-11-03T15:52:30.3551440Z Not compiling with XPU. Could NOT find SYCL. Suppress this warning with 2025-11-03T15:52:30.3551720Z -DUSE_XPU=OFF. 2025-11-03T15:52:30.3551870Z Call Stack (most recent call first): 2025-11-03T15:52:30.3552050Z CMakeLists.txt:881 (include) 2025-11-03T15:52:30.3552150Z 2025-11-03T15:52:30.3552160Z 2025-11-03T15:52:30.3559680Z -- Building using own protobuf under third_party per request. 2025-11-03T15:52:30.3559960Z -- Use custom protobuf build. 2025-11-03T15:52:30.3572520Z CMake Deprecation Warning at third_party/protobuf/cmake/CMakeLists.txt:2 (cmake_minimum_required): 2025-11-03T15:52:30.3572970Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-11-03T15:52:30.3573240Z CMake. 2025-11-03T15:52:30.3573320Z 2025-11-03T15:52:30.3573490Z Update the VERSION argument value. Or, use the ... syntax 2025-11-03T15:52:30.3573840Z to tell CMake that the project requires at least but has been updated 2025-11-03T15:52:30.3574130Z to work with policies introduced by or earlier. 2025-11-03T15:52:30.3574300Z 2025-11-03T15:52:30.3574300Z 2025-11-03T15:52:30.3590970Z -- 2025-11-03T15:52:30.3591100Z -- 3.13.0.0 2025-11-03T15:52:30.3597070Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-11-03T15:52:30.5471040Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-11-03T15:52:30.5476830Z -- Found Threads: TRUE 2025-11-03T15:52:30.5479020Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS 2025-11-03T15:52:30.7034070Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS - Success 2025-11-03T15:52:30.7233770Z -- Caffe2 protobuf include directory: $$ 2025-11-03T15:52:30.7244800Z -- Trying to find preferred BLAS backend of choice: MKL 2025-11-03T15:52:30.7277000Z CMake Warning at cmake/Dependencies.cmake:221 (message): 2025-11-03T15:52:30.7277260Z MKL could not be found. Defaulting to Eigen 2025-11-03T15:52:30.7277460Z Call Stack (most recent call first): 2025-11-03T15:52:30.7277640Z CMakeLists.txt:881 (include) 2025-11-03T15:52:30.7277750Z 2025-11-03T15:52:30.7277760Z 2025-11-03T15:52:30.7277860Z CMake Warning at cmake/Dependencies.cmake:287 (message): 2025-11-03T15:52:30.7278160Z Preferred BLAS (MKL) cannot be found, now searching for a general BLAS 2025-11-03T15:52:30.7278590Z library 2025-11-03T15:52:30.7278710Z Call Stack (most recent call first): 2025-11-03T15:52:30.7278890Z CMakeLists.txt:881 (include) 2025-11-03T15:52:30.7279000Z 2025-11-03T15:52:30.7279010Z 2025-11-03T15:52:30.7291630Z -- Checking for [blis] 2025-11-03T15:52:30.7299600Z -- Library blis: BLAS_blis_LIBRARY-NOTFOUND 2025-11-03T15:52:30.7299880Z -- Checking for [Accelerate] 2025-11-03T15:52:30.7306850Z -- Library Accelerate: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework 2025-11-03T15:52:30.7307270Z -- Looking for sgemm_ 2025-11-03T15:52:30.8659410Z -- Looking for sgemm_ - found 2025-11-03T15:52:30.8669190Z -- Performing Test BLAS_F2C_DOUBLE_WORKS 2025-11-03T15:52:31.1834280Z -- Performing Test BLAS_F2C_DOUBLE_WORKS - Success 2025-11-03T15:52:31.1922920Z -- Performing Test BLAS_F2C_FLOAT_WORKS 2025-11-03T15:52:31.5663180Z -- Performing Test BLAS_F2C_FLOAT_WORKS - Failed 2025-11-03T15:52:31.5763480Z -- This BLAS uses the F2C return conventions 2025-11-03T15:52:31.5764180Z -- Performing Test BLAS_USE_CBLAS_DOT 2025-11-03T15:52:31.8899300Z -- Performing Test BLAS_USE_CBLAS_DOT - Success 2025-11-03T15:52:31.8899550Z -- BLAS_USE_CBLAS_DOT: TRUE 2025-11-03T15:52:31.8899700Z -- BLAS_F2C: TRUE 2025-11-03T15:52:31.8900160Z -- Found a library with BLAS API (accelerate). Full path: (/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework) 2025-11-03T15:52:31.8900990Z -- Looking for sbgemm_ 2025-11-03T15:52:32.0480110Z -- Looking for sbgemm_ - not found 2025-11-03T15:52:32.0480500Z -- Using pocketfft in directory: /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/pocketfft/ 2025-11-03T15:52:32.0493920Z CMake Deprecation Warning at third_party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-11-03T15:52:32.0494370Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-11-03T15:52:32.0494620Z CMake. 2025-11-03T15:52:32.0494700Z 2025-11-03T15:52:32.0494850Z Update the VERSION argument value. Or, use the ... syntax 2025-11-03T15:52:32.0495200Z to tell CMake that the project requires at least but has been updated 2025-11-03T15:52:32.0495500Z to work with policies introduced by or earlier. 2025-11-03T15:52:32.0495660Z 2025-11-03T15:52:32.0495660Z 2025-11-03T15:52:32.0528070Z CMake Deprecation Warning at third_party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-11-03T15:52:32.0528480Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-11-03T15:52:32.0528730Z CMake. 2025-11-03T15:52:32.0528790Z 2025-11-03T15:52:32.0528930Z Update the VERSION argument value. Or, use the ... syntax 2025-11-03T15:52:32.0529270Z to tell CMake that the project requires at least but has been updated 2025-11-03T15:52:32.0529570Z to work with policies introduced by or earlier. 2025-11-03T15:52:32.0529730Z 2025-11-03T15:52:32.0529730Z 2025-11-03T15:52:32.0566910Z CMake Deprecation Warning at third_party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-11-03T15:52:32.0567320Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-11-03T15:52:32.0567560Z CMake. 2025-11-03T15:52:32.0567630Z 2025-11-03T15:52:32.0567770Z Update the VERSION argument value. Or, use the ... syntax 2025-11-03T15:52:32.0568110Z to tell CMake that the project requires at least but has been updated 2025-11-03T15:52:32.0568410Z to work with policies introduced by or earlier. 2025-11-03T15:52:32.0568570Z 2025-11-03T15:52:32.0568570Z 2025-11-03T15:52:32.0636890Z CMake Deprecation Warning at aten/src/ATen/native/quantized/cpu/qnnpack/CMakeLists.txt:7 (cmake_minimum_required): 2025-11-03T15:52:32.0637360Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-11-03T15:52:32.0637610Z CMake. 2025-11-03T15:52:32.0637670Z 2025-11-03T15:52:32.0637810Z Update the VERSION argument value. Or, use the ... syntax 2025-11-03T15:52:32.0638350Z to tell CMake that the project requires at least but has been updated 2025-11-03T15:52:32.0638630Z to work with policies introduced by or earlier. 2025-11-03T15:52:32.0638780Z 2025-11-03T15:52:32.0638780Z 2025-11-03T15:52:32.1095200Z -- The ASM compiler identification is AppleClang 2025-11-03T15:52:32.1110350Z -- Found assembler: /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang 2025-11-03T15:52:32.1173320Z CMake Deprecation Warning at third_party/psimd/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-11-03T15:52:32.1173730Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-11-03T15:52:32.1173990Z CMake. 2025-11-03T15:52:32.1174060Z 2025-11-03T15:52:32.1174200Z Update the VERSION argument value. Or, use the ... syntax 2025-11-03T15:52:32.1174550Z to tell CMake that the project requires at least but has been updated 2025-11-03T15:52:32.1174860Z to work with policies introduced by or earlier. 2025-11-03T15:52:32.1175020Z 2025-11-03T15:52:32.1175020Z 2025-11-03T15:52:32.1202720Z CMake Deprecation Warning at third_party/FP16/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-11-03T15:52:32.1203150Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-11-03T15:52:32.1203400Z CMake. 2025-11-03T15:52:32.1203460Z 2025-11-03T15:52:32.1203600Z Update the VERSION argument value. Or, use the ... syntax 2025-11-03T15:52:32.1203940Z to tell CMake that the project requires at least but has been updated 2025-11-03T15:52:32.1204230Z to work with policies introduced by or earlier. 2025-11-03T15:52:32.1204390Z 2025-11-03T15:52:32.1204390Z 2025-11-03T15:52:32.1224730Z -- Brace yourself, we are building NNPACK 2025-11-03T15:52:32.1250450Z CMake Deprecation Warning at third_party/NNPACK/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-11-03T15:52:32.1250840Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-11-03T15:52:32.1251090Z CMake. 2025-11-03T15:52:32.1251150Z 2025-11-03T15:52:32.1251290Z Update the VERSION argument value. Or, use the ... syntax 2025-11-03T15:52:32.1251630Z to tell CMake that the project requires at least but has been updated 2025-11-03T15:52:32.1251920Z to work with policies introduced by or earlier. 2025-11-03T15:52:32.1252080Z 2025-11-03T15:52:32.1252080Z 2025-11-03T15:52:32.1277150Z -- NNPACK backend is neon 2025-11-03T15:52:32.1374020Z -- Building for XNNPACK_TARGET_PROCESSOR: arm64 2025-11-03T15:52:32.1386350Z -- Generating microkernels.cmake 2025-11-03T15:52:40.3971360Z 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-11-03T15:52:40.3972330Z 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-11-03T15:52:40.3972950Z No microkernel found in src/reference/unary-elementwise.cc 2025-11-03T15:52:40.3973210Z No microkernel found in src/reference/packing.cc 2025-11-03T15:52:40.3973460Z No microkernel found in src/reference/binary-elementwise.cc 2025-11-03T15:52:40.4698000Z -- Using third party subdirectory Eigen. 2025-11-03T15:52:40.6984320Z -- Found Python: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin/python (found version "3.12.12") found components: Interpreter Development.Module NumPy 2025-11-03T15:52:40.6984850Z -- Using third_party/pybind11. 2025-11-03T15:52:40.6985200Z -- pybind11 include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-11-03T15:52:40.7735120Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-11-03T15:52:40.7735460Z -- Using third_party/opentelemetry-cpp. 2025-11-03T15:52:40.7736180Z -- opentelemetry api include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-11-03T15:52:40.7843360Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2025-11-03T15:52:40.8395900Z CMake Warning at cmake/Modules/FindOpenMP.cmake:335 (message): 2025-11-03T15:52:40.8396270Z Detecting C OpenMP compiler ABI info compiled with the following output: 2025-11-03T15:52:40.8396500Z 2025-11-03T15:52:40.8396570Z Change Dir: 2025-11-03T15:52:40.8397100Z '/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp' 2025-11-03T15:52:40.8397340Z 2025-11-03T15:52:40.8397340Z 2025-11-03T15:52:40.8397350Z 2025-11-03T15:52:40.8397400Z Run Build Command(s): 2025-11-03T15:52:40.8397630Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin/ninja -v 2025-11-03T15:52:40.8397870Z cmTC_f2e89 2025-11-03T15:52:40.8397940Z 2025-11-03T15:52:40.8398100Z [1/2] /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang 2025-11-03T15:52:40.8404000Z -Xpreprocessor -fopenmp -v -std=gnu11 -arch arm64 -isysroot 2025-11-03T15:52:40.8404340Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-11-03T15:52:40.8404600Z -mmacosx-version-min=11.0 -MD -MT 2025-11-03T15:52:40.8404820Z CMakeFiles/cmTC_f2e89.dir/OpenMPTryFlag.c.o -MF 2025-11-03T15:52:40.8405070Z CMakeFiles/cmTC_f2e89.dir/OpenMPTryFlag.c.o.d -o 2025-11-03T15:52:40.8405300Z CMakeFiles/cmTC_f2e89.dir/OpenMPTryFlag.c.o -c 2025-11-03T15:52:40.8405640Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-11-03T15:52:40.8405910Z 2025-11-03T15:52:40.8405910Z 2025-11-03T15:52:40.8406010Z FAILED: CMakeFiles/cmTC_f2e89.dir/OpenMPTryFlag.c.o 2025-11-03T15:52:40.8406180Z 2025-11-03T15:52:40.8406320Z /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang 2025-11-03T15:52:40.8406650Z -Xpreprocessor -fopenmp -v -std=gnu11 -arch arm64 -isysroot 2025-11-03T15:52:40.8406920Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-11-03T15:52:40.8407150Z -mmacosx-version-min=11.0 -MD -MT 2025-11-03T15:52:40.8407350Z CMakeFiles/cmTC_f2e89.dir/OpenMPTryFlag.c.o -MF 2025-11-03T15:52:40.8407590Z CMakeFiles/cmTC_f2e89.dir/OpenMPTryFlag.c.o.d -o 2025-11-03T15:52:40.8407820Z CMakeFiles/cmTC_f2e89.dir/OpenMPTryFlag.c.o -c 2025-11-03T15:52:40.8408160Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-11-03T15:52:40.8408410Z 2025-11-03T15:52:40.8408420Z 2025-11-03T15:52:40.8408500Z Apple clang version 16.0.0 (clang-1600.0.26.6) 2025-11-03T15:52:40.8408640Z 2025-11-03T15:52:40.8408710Z Target: arm64-apple-darwin23.6.0 2025-11-03T15:52:40.8408830Z 2025-11-03T15:52:40.8408890Z Thread model: posix 2025-11-03T15:52:40.8408970Z 2025-11-03T15:52:40.8409080Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2025-11-03T15:52:40.8409260Z 2025-11-03T15:52:40.8417300Z "/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=15.2 -fvisibility-inlines-hidden-static-local-var -fno-modulemap-allow-subdirectory-search -target-cpu apple-m1 -target-feature +v8.5a -target-feature +aes -target-feature +crc -target-feature +dotprod -target-feature +fp-armv8 -target-feature +fp16fml -target-feature +lse -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sha2 -target-feature +sha3 -target-feature +neon -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-abi darwinpcs -debugger-tuning=lldb -target-linker-version 1115.7.3 -v -P -fcoverage-compilation-dir=/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/16 -dependency-file CMakeFiles/cmTC_f2e89.dir/OpenMPTryFlag.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_f2e89.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/16/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 -clang-vendor-feature=+disableAtImportPrivateFrameworkInImplementationError -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o - -x c /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-11-03T15:52:40.8425410Z 2025-11-03T15:52:40.8425520Z clang -cc1 version 16.0.0 (clang-1600.0.26.6) default target 2025-11-03T15:52:40.8425760Z arm64-apple-darwin23.6.0 2025-11-03T15:52:40.8425870Z 2025-11-03T15:52:40.8425960Z ignoring nonexistent directory "/usr/local/include" 2025-11-03T15:52:40.8426130Z 2025-11-03T15:52:40.8426180Z ignoring nonexistent directory 2025-11-03T15:52:40.8426450Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2025-11-03T15:52:40.8426670Z 2025-11-03T15:52:40.8426730Z ignoring nonexistent directory 2025-11-03T15:52:40.8427000Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2025-11-03T15:52:40.8427220Z 2025-11-03T15:52:40.8427280Z #include "..." search starts here: 2025-11-03T15:52:40.8427400Z 2025-11-03T15:52:40.8427460Z #include <...> search starts here: 2025-11-03T15:52:40.8427580Z 2025-11-03T15:52:40.8427700Z /Library/Developer/CommandLineTools/usr/lib/clang/16/include 2025-11-03T15:52:40.8428010Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-11-03T15:52:40.8428300Z /Library/Developer/CommandLineTools/usr/include 2025-11-03T15:52:40.8428670Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2025-11-03T15:52:40.8428970Z 2025-11-03T15:52:40.8429020Z End of search list. 2025-11-03T15:52:40.8429110Z 2025-11-03T15:52:40.8429110Z 2025-11-03T15:52:40.8429320Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c:2:10: 2025-11-03T15:52:40.8429670Z fatal error: 'omp.h' file not found 2025-11-03T15:52:40.8429800Z 2025-11-03T15:52:40.8429850Z 2 | #include 2025-11-03T15:52:40.8430000Z | ^~~~~~~ 2025-11-03T15:52:40.8430100Z 2025-11-03T15:52:40.8430140Z 1 error generated. 2025-11-03T15:52:40.8430230Z 2025-11-03T15:52:40.8430310Z ninja: build stopped: subcommand failed. 2025-11-03T15:52:40.8430440Z 2025-11-03T15:52:40.8430440Z 2025-11-03T15:52:40.8430440Z 2025-11-03T15:52:40.8430500Z Call Stack (most recent call first): 2025-11-03T15:52:40.8430720Z cmake/Modules/FindOpenMP.cmake:551 (_OPENMP_GET_FLAGS) 2025-11-03T15:52:40.8430940Z cmake/Dependencies.cmake:909 (include) 2025-11-03T15:52:40.8431200Z CMakeLists.txt:881 (include) 2025-11-03T15:52:40.8431310Z 2025-11-03T15:52:40.8431310Z 2025-11-03T15:52:40.9480910Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -v 2025-11-03T15:52:41.1591640Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2025-11-03T15:52:41.2147610Z CMake Warning at cmake/Modules/FindOpenMP.cmake:335 (message): 2025-11-03T15:52:41.2148290Z Detecting CXX OpenMP compiler ABI info compiled with the following output: 2025-11-03T15:52:41.2148530Z 2025-11-03T15:52:41.2148570Z Change Dir: 2025-11-03T15:52:41.2148800Z '/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp' 2025-11-03T15:52:41.2149020Z 2025-11-03T15:52:41.2149020Z 2025-11-03T15:52:41.2149020Z 2025-11-03T15:52:41.2149080Z Run Build Command(s): 2025-11-03T15:52:41.2149330Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin/ninja -v 2025-11-03T15:52:41.2149590Z cmTC_6cf4b 2025-11-03T15:52:41.2149660Z 2025-11-03T15:52:41.2149700Z [1/2] 2025-11-03T15:52:41.2149910Z /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang++ 2025-11-03T15:52:41.2150290Z -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Xpreprocessor -fopenmp -v 2025-11-03T15:52:41.2150570Z -std=gnu++17 -arch arm64 -isysroot 2025-11-03T15:52:41.2150800Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-11-03T15:52:41.2151020Z -mmacosx-version-min=11.0 -MD -MT 2025-11-03T15:52:41.2151240Z CMakeFiles/cmTC_6cf4b.dir/OpenMPTryFlag.cpp.o -MF 2025-11-03T15:52:41.2151500Z CMakeFiles/cmTC_6cf4b.dir/OpenMPTryFlag.cpp.o.d -o 2025-11-03T15:52:41.2151740Z CMakeFiles/cmTC_6cf4b.dir/OpenMPTryFlag.cpp.o -c 2025-11-03T15:52:41.2152100Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-11-03T15:52:41.2152370Z 2025-11-03T15:52:41.2152370Z 2025-11-03T15:52:41.2152470Z FAILED: CMakeFiles/cmTC_6cf4b.dir/OpenMPTryFlag.cpp.o 2025-11-03T15:52:41.2152650Z 2025-11-03T15:52:41.2152790Z /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang++ 2025-11-03T15:52:41.2153160Z -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Xpreprocessor -fopenmp -v 2025-11-03T15:52:41.2153440Z -std=gnu++17 -arch arm64 -isysroot 2025-11-03T15:52:41.2153650Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-11-03T15:52:41.2153870Z -mmacosx-version-min=11.0 -MD -MT 2025-11-03T15:52:41.2154080Z CMakeFiles/cmTC_6cf4b.dir/OpenMPTryFlag.cpp.o -MF 2025-11-03T15:52:41.2154330Z CMakeFiles/cmTC_6cf4b.dir/OpenMPTryFlag.cpp.o.d -o 2025-11-03T15:52:41.2154580Z CMakeFiles/cmTC_6cf4b.dir/OpenMPTryFlag.cpp.o -c 2025-11-03T15:52:41.2154930Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-11-03T15:52:41.2155180Z 2025-11-03T15:52:41.2155190Z 2025-11-03T15:52:41.2155300Z Apple clang version 16.0.0 (clang-1600.0.26.6) 2025-11-03T15:52:41.2155440Z 2025-11-03T15:52:41.2155500Z Target: arm64-apple-darwin23.6.0 2025-11-03T15:52:41.2155620Z 2025-11-03T15:52:41.2155670Z Thread model: posix 2025-11-03T15:52:41.2155750Z 2025-11-03T15:52:41.2155860Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2025-11-03T15:52:41.2156020Z 2025-11-03T15:52:41.2156080Z ignoring nonexistent directory 2025-11-03T15:52:41.2156300Z "/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1" 2025-11-03T15:52:41.2156480Z 2025-11-03T15:52:41.2165130Z "/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=15.2 -fvisibility-inlines-hidden-static-local-var -fno-modulemap-allow-subdirectory-search -target-cpu apple-m1 -target-feature +v8.5a -target-feature +aes -target-feature +crc -target-feature +dotprod -target-feature +fp-armv8 -target-feature +fp16fml -target-feature +lse -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sha2 -target-feature +sha3 -target-feature +neon -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-abi darwinpcs -debugger-tuning=lldb -target-linker-version 1115.7.3 -v -P -fcoverage-compilation-dir=/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/16 -dependency-file CMakeFiles/cmTC_6cf4b.dir/OpenMPTryFlag.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_6cf4b.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/16/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 -clang-vendor-feature=+disableAtImportPrivateFrameworkInImplementationError -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o - -x c++ /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-11-03T15:52:41.2173780Z 2025-11-03T15:52:41.2173890Z clang -cc1 version 16.0.0 (clang-1600.0.26.6) default target 2025-11-03T15:52:41.2174120Z arm64-apple-darwin23.6.0 2025-11-03T15:52:41.2174220Z 2025-11-03T15:52:41.2174310Z ignoring nonexistent directory "/usr/local/include" 2025-11-03T15:52:41.2174470Z 2025-11-03T15:52:41.2174520Z ignoring nonexistent directory 2025-11-03T15:52:41.2174780Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2025-11-03T15:52:41.2174990Z 2025-11-03T15:52:41.2175040Z ignoring nonexistent directory 2025-11-03T15:52:41.2175300Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2025-11-03T15:52:41.2175510Z 2025-11-03T15:52:41.2175560Z #include "..." search starts here: 2025-11-03T15:52:41.2175680Z 2025-11-03T15:52:41.2175730Z #include <...> search starts here: 2025-11-03T15:52:41.2175850Z 2025-11-03T15:52:41.2175990Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 2025-11-03T15:52:41.2176310Z /Library/Developer/CommandLineTools/usr/lib/clang/16/include 2025-11-03T15:52:41.2176610Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-11-03T15:52:41.2176880Z /Library/Developer/CommandLineTools/usr/include 2025-11-03T15:52:41.2177250Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2025-11-03T15:52:41.2177610Z 2025-11-03T15:52:41.2177660Z End of search list. 2025-11-03T15:52:41.2177740Z 2025-11-03T15:52:41.2177740Z 2025-11-03T15:52:41.2177970Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp:2:10: 2025-11-03T15:52:41.2178320Z fatal error: 'omp.h' file not found 2025-11-03T15:52:41.2178440Z 2025-11-03T15:52:41.2178490Z 2 | #include 2025-11-03T15:52:41.2178630Z | ^~~~~~~ 2025-11-03T15:52:41.2178730Z 2025-11-03T15:52:41.2178880Z 1 error generated. 2025-11-03T15:52:41.2178970Z 2025-11-03T15:52:41.2179040Z ninja: build stopped: subcommand failed. 2025-11-03T15:52:41.2179180Z 2025-11-03T15:52:41.2179180Z 2025-11-03T15:52:41.2179190Z 2025-11-03T15:52:41.2179250Z Call Stack (most recent call first): 2025-11-03T15:52:41.2179470Z cmake/Modules/FindOpenMP.cmake:551 (_OPENMP_GET_FLAGS) 2025-11-03T15:52:41.2179700Z cmake/Dependencies.cmake:909 (include) 2025-11-03T15:52:41.2179890Z CMakeLists.txt:881 (include) 2025-11-03T15:52:41.2180000Z 2025-11-03T15:52:41.2180000Z 2025-11-03T15:52:41.3237970Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -v 2025-11-03T15:52:41.5807600Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-11-03T15:52:41.7072360Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-11-03T15:52:41.7073530Z -- Found OpenMP: TRUE 2025-11-03T15:52:41.7074220Z -- Adding OpenMP CXX_FLAGS: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-11-03T15:52:41.7074660Z -- Will link against OpenMP libraries: /opt/homebrew/opt/libomp/lib/libomp.dylib 2025-11-03T15:52:41.7075940Z -- Found nvtx3: /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-11-03T15:52:41.8252200Z -- Found Python3: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin/python (found version "3.12.12") found components: Interpreter 2025-11-03T15:52:41.8254870Z -- ONNX_PROTOC_EXECUTABLE: $ 2025-11-03T15:52:41.8255130Z -- Protobuf_VERSION: Protobuf_VERSION_NOTFOUND 2025-11-03T15:52:41.8256550Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-11-03T15:52:41.8258080Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-11-03T15:52:41.8259400Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-11-03T15:52:42.0081240Z -- 2025-11-03T15:52:42.0081400Z -- ******** Summary ******** 2025-11-03T15:52:42.0081580Z -- CMake version : 3.31.6 2025-11-03T15:52:42.0081990Z -- CMake command : /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/lib/python3.12/site-packages/cmake/data/bin/cmake 2025-11-03T15:52:42.0082390Z -- System : Darwin 2025-11-03T15:52:42.0082710Z -- C++ compiler : /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang++ 2025-11-03T15:52:42.0083070Z -- C++ compiler version : 16.0.0.16000026 2025-11-03T15:52:42.0083400Z -- CXX flags : -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor 2025-11-03T15:52:42.0083690Z -- Build type : Release 2025-11-03T15:52:42.0083950Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 2025-11-03T15:52:42.0084380Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/lib/python3.12/site-packages 2025-11-03T15:52:42.0084820Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2025-11-03T15:52:42.0085410Z -- 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-11-03T15:52:42.0086110Z -- 2025-11-03T15:52:42.0086240Z -- ONNX version : 1.18.0 2025-11-03T15:52:42.0086450Z -- ONNX NAMESPACE : onnx_torch 2025-11-03T15:52:42.0086660Z -- ONNX_USE_LITE_PROTO : OFF 2025-11-03T15:52:42.0086860Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-11-03T15:52:42.0087060Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-11-03T15:52:42.0087260Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-11-03T15:52:42.0087460Z -- ONNX_WERROR : OFF 2025-11-03T15:52:42.0087890Z -- ONNX_BUILD_TESTS : OFF 2025-11-03T15:52:42.0088090Z -- BUILD_SHARED_LIBS : OFF 2025-11-03T15:52:42.0088260Z -- 2025-11-03T15:52:42.0088460Z -- Protobuf compiler : $ 2025-11-03T15:52:42.0088720Z -- Protobuf includes : 2025-11-03T15:52:42.0088910Z -- Protobuf libraries : 2025-11-03T15:52:42.0089110Z -- ONNX_BUILD_PYTHON : OFF 2025-11-03T15:52:42.0089350Z CMake Warning at cmake/Dependencies.cmake:1436 (message): 2025-11-03T15:52:42.0089660Z Not compiling with MAGMA. Suppress this warning with -DUSE_MAGMA=OFF. 2025-11-03T15:52:42.0089920Z Call Stack (most recent call first): 2025-11-03T15:52:42.0090100Z CMakeLists.txt:881 (include) 2025-11-03T15:52:42.0090210Z 2025-11-03T15:52:42.0090220Z 2025-11-03T15:52:42.0090340Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-11-03T15:52:42.0090630Z -- Adding -DNDEBUG to compile flags 2025-11-03T15:52:42.0099120Z -- No OMAP3 processor on this machine. 2025-11-03T15:52:42.0099350Z -- No OMAP4 processor on this machine. 2025-11-03T15:52:42.0099560Z -- Neon found with compiler flag : -D__NEON__ 2025-11-03T15:52:42.0114220Z -- Looking for cheev_ 2025-11-03T15:52:42.1419490Z -- Looking for cheev_ - found 2025-11-03T15:52:42.1419730Z disabling CUDA because NOT USE_CUDA is set 2025-11-03T15:52:42.1419960Z -- Found a library with LAPACK API (accelerate). 2025-11-03T15:52:42.1420210Z disabling ROCM because NOT USE_ROCM is set 2025-11-03T15:52:42.1420420Z disabling MKLDNN because USE_MKLDNN is not set 2025-11-03T15:52:42.1420660Z -- MIOpen not found. Compiling without MIOpen support 2025-11-03T15:52:42.1511980Z -- Looking for mmap 2025-11-03T15:52:42.2729850Z -- Looking for mmap - found 2025-11-03T15:52:42.2730060Z -- Looking for shm_open 2025-11-03T15:52:42.3923130Z -- Looking for shm_open - found 2025-11-03T15:52:42.3923340Z -- Looking for shm_unlink 2025-11-03T15:52:42.5423200Z -- Looking for shm_unlink - found 2025-11-03T15:52:42.5423440Z -- Looking for malloc_usable_size 2025-11-03T15:52:42.6572010Z -- Looking for malloc_usable_size - not found 2025-11-03T15:52:42.6572260Z -- Looking for posix_fallocate 2025-11-03T15:52:42.7773690Z -- Looking for posix_fallocate - not found 2025-11-03T15:52:42.7850500Z -- {fmt} version: 12.0.0 2025-11-03T15:52:42.7850680Z -- Build type: Release 2025-11-03T15:52:42.7862320Z -- Performing Test HAS_NULLPTR_WARNING 2025-11-03T15:52:42.9046980Z -- Performing Test HAS_NULLPTR_WARNING - Success 2025-11-03T15:52:42.9077310Z -- Using CPU-only version of Kineto 2025-11-03T15:52:42.9077530Z -- Configuring Kineto dependency: 2025-11-03T15:52:42.9078650Z -- KINETO_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-11-03T15:52:42.9079000Z -- KINETO_BUILD_TESTS = OFF 2025-11-03T15:52:42.9079180Z -- KINETO_LIBRARY_TYPE = static 2025-11-03T15:52:43.0227520Z -- ROCM_SOURCE_DIR = 2025-11-03T15:52:43.0264040Z -- Could not find nvcc, please set CUDAToolkit_ROOT. 2025-11-03T15:52:43.0264380Z INFO LIBKINETO_NOAIUPTI NOT DEFINED adding subdirectory(src/plugin/aiupti) 2025-11-03T15:52:43.0298820Z CMake Warning at third_party/kineto/libkineto/src/plugin/aiupti/FindAIUToolkit.cmake:42 (message): 2025-11-03T15:52:43.0299270Z Cannot find RUNTIME_FULL_INSTALL_DIR or SENDNN_DIR, please set up the AIU 2025-11-03T15:52:43.0299530Z environment. 2025-11-03T15:52:43.0299660Z Call Stack (most recent call first): 2025-11-03T15:52:43.0300200Z third_party/kineto/libkineto/src/plugin/aiupti/CMakeLists.txt:14 (include) 2025-11-03T15:52:43.0300430Z 2025-11-03T15:52:43.0300430Z 2025-11-03T15:52:43.0300630Z CMake Warning at third_party/kineto/libkineto/src/plugin/aiupti/CMakeLists.txt:17 (message): 2025-11-03T15:52:43.0300960Z AIU PTI has not built because 2025-11-03T15:52:43.0301070Z 2025-11-03T15:52:43.0301080Z 2025-11-03T15:52:43.0470010Z -- CUPTI unavailable or disabled - not building GPU profilers 2025-11-03T15:52:43.0812720Z -- ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-11-03T15:52:43.0813190Z -- DYNOLOG_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-11-03T15:52:43.0813850Z -- IPCFABRIC_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-11-03T15:52:43.0814300Z -- Configured Kineto (CPU) 2025-11-03T15:52:43.0825440Z -- Running on macOS with Apple silicon 2025-11-03T15:52:43.0841720Z -- Performing Test HAS_WERROR_RETURN_TYPE 2025-11-03T15:52:43.2126830Z -- Performing Test HAS_WERROR_RETURN_TYPE - Success 2025-11-03T15:52:43.2131150Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR 2025-11-03T15:52:43.3286870Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR - Success 2025-11-03T15:52:43.3291160Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT 2025-11-03T15:52:43.4573860Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT - Success 2025-11-03T15:52:43.4578260Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT 2025-11-03T15:52:43.6158850Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT - Success 2025-11-03T15:52:43.6163300Z -- Performing Test HAS_WERROR_BOOL_OPERATION 2025-11-03T15:52:43.7339670Z -- Performing Test HAS_WERROR_BOOL_OPERATION - Success 2025-11-03T15:52:43.7343970Z -- Performing Test HAS_WNARROWING 2025-11-03T15:52:43.8642210Z -- Performing Test HAS_WNARROWING - Success 2025-11-03T15:52:43.8646580Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS 2025-11-03T15:52:43.9945650Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS - Success 2025-11-03T15:52:43.9949950Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS 2025-11-03T15:52:44.1115530Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS - Success 2025-11-03T15:52:44.1120250Z -- Performing Test HAS_WNO_UNUSED_PARAMETER 2025-11-03T15:52:44.2297340Z -- Performing Test HAS_WNO_UNUSED_PARAMETER - Success 2025-11-03T15:52:44.2301620Z -- Performing Test HAS_WNO_STRICT_OVERFLOW 2025-11-03T15:52:44.3442310Z -- Performing Test HAS_WNO_STRICT_OVERFLOW - Success 2025-11-03T15:52:44.3446670Z -- Performing Test HAS_WNO_STRICT_ALIASING 2025-11-03T15:52:44.4598180Z -- Performing Test HAS_WNO_STRICT_ALIASING - Success 2025-11-03T15:52:44.4602560Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-11-03T15:52:44.5783120Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-11-03T15:52:44.5787480Z -- Performing Test HAS_WVLA_EXTENSION 2025-11-03T15:52:44.7114580Z -- Performing Test HAS_WVLA_EXTENSION - Success 2025-11-03T15:52:44.7118940Z -- Performing Test HAS_WSUGGEST_OVERRIDE 2025-11-03T15:52:44.8266950Z -- Performing Test HAS_WSUGGEST_OVERRIDE - Success 2025-11-03T15:52:44.8271250Z -- Performing Test HAS_WNEWLINE_EOF 2025-11-03T15:52:44.9418000Z -- Performing Test HAS_WNEWLINE_EOF - Success 2025-11-03T15:52:44.9422310Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE 2025-11-03T15:52:45.0825660Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE - Success 2025-11-03T15:52:45.0830110Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE 2025-11-03T15:52:45.1979610Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE - Success 2025-11-03T15:52:45.1984020Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST 2025-11-03T15:52:45.3150760Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST - Success 2025-11-03T15:52:45.3155030Z -- Performing Test HAS_WCONSTANT_CONVERSION 2025-11-03T15:52:45.4356640Z -- Performing Test HAS_WCONSTANT_CONVERSION - Success 2025-11-03T15:52:45.4361010Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE 2025-11-03T15:52:45.5684990Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE - Failed 2025-11-03T15:52:45.5689230Z -- Performing Test HAS_QUNUSED_ARGUMENTS 2025-11-03T15:52:45.7112320Z -- Performing Test HAS_QUNUSED_ARGUMENTS - Success 2025-11-03T15:52:45.7116640Z -- Performing Test HAS_FALIGNED_NEW 2025-11-03T15:52:45.8634170Z -- Performing Test HAS_FALIGNED_NEW - Success 2025-11-03T15:52:45.8638410Z -- Performing Test HAS_WERROR 2025-11-03T15:52:45.9812560Z -- Performing Test HAS_WERROR - Success 2025-11-03T15:52:45.9816710Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED 2025-11-03T15:52:46.0347610Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED - Failed 2025-11-03T15:52:46.0351940Z -- Performing Test HAS_FSTANDALONE_DEBUG 2025-11-03T15:52:46.1534340Z -- Performing Test HAS_FSTANDALONE_DEBUG - Success 2025-11-03T15:52:46.1538720Z -- Performing Test HAS_FNO_MATH_ERRNO 2025-11-03T15:52:46.2695920Z -- Performing Test HAS_FNO_MATH_ERRNO - Success 2025-11-03T15:52:46.2700050Z -- Performing Test HAS_FNO_TRAPPING_MATH 2025-11-03T15:52:46.3897020Z -- Performing Test HAS_FNO_TRAPPING_MATH - Success 2025-11-03T15:52:46.3901320Z -- Performing Test HAS_WERROR_FORMAT 2025-11-03T15:52:46.5048370Z -- Performing Test HAS_WERROR_FORMAT - Success 2025-11-03T15:52:46.5053030Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW 2025-11-03T15:52:46.6260570Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW - Success 2025-11-03T15:52:46.6264850Z -- Performing Test HAS_WNO_MISSING_BRACES 2025-11-03T15:52:46.8407080Z -- Performing Test HAS_WNO_MISSING_BRACES - Success 2025-11-03T15:52:46.8464580Z -- don't use NUMA 2025-11-03T15:52:46.8475940Z -- Looking for backtrace 2025-11-03T15:52:46.9839800Z -- Looking for backtrace - found 2025-11-03T15:52:46.9840080Z -- backtrace facility detected in default set of libraries 2025-11-03T15:52:46.9842390Z -- Found Backtrace: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-11-03T15:52:48.6956680Z -- headers outputs: 2025-11-03T15:52:49.3738770Z -- sources outputs: 2025-11-03T15:52:49.9110560Z -- declarations_yaml outputs: 2025-11-03T15:52:49.9712140Z -- Using ATen parallel backend: OMP 2025-11-03T15:52:49.9735330Z disabling CUDA because USE_CUDA is set false 2025-11-03T15:52:50.0533650Z -- Found OpenSSL: /opt/homebrew/lib/libcrypto.dylib (found version "3.6.0") 2025-11-03T15:52:50.0561400Z -- Looking for sys/types.h 2025-11-03T15:52:50.2256470Z -- Looking for sys/types.h - found 2025-11-03T15:52:50.2256810Z -- Looking for stdint.h 2025-11-03T15:52:50.3451980Z -- Looking for stdint.h - found 2025-11-03T15:52:50.3452200Z -- Looking for stddef.h 2025-11-03T15:52:50.4857070Z -- Looking for stddef.h - found 2025-11-03T15:52:50.4857290Z -- Check size of long double 2025-11-03T15:52:50.6400660Z -- Check size of long double - done 2025-11-03T15:52:50.6401000Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-11-03T15:52:50.7217420Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-11-03T15:52:50.7232950Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include (found version "5.1") 2025-11-03T15:52:50.7234840Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include (found version "5.1") 2025-11-03T15:52:50.7236740Z -- Found OpenMP: TRUE (found version "5.1") 2025-11-03T15:52:50.7237700Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-11-03T15:52:50.8521280Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Failed 2025-11-03T15:52:50.8521570Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-11-03T15:52:50.9706650Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-11-03T15:52:50.9706950Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-11-03T15:52:51.0540140Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-11-03T15:52:51.0540440Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-11-03T15:52:51.1715900Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Success 2025-11-03T15:52:51.1716210Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-11-03T15:52:51.2331650Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-11-03T15:52:51.2470920Z Target system: Darwin-23.6.0 2025-11-03T15:52:51.2471120Z -- Configuring build for SLEEF-v3.8.0 2025-11-03T15:52:51.2471630Z -- Using option `-Wall -Wno-unused-function -Wno-attributes -Wno-unused-result -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef 2025-11-03T15:52:51.2472100Z -- Building shared libs : OFF 2025-11-03T15:52:51.2472270Z -- Building static test bins: OFF 2025-11-03T15:52:51.2472810Z -- MPFR : LIB_MPFR-NOTFOUND 2025-11-03T15:52:51.2472980Z -- GMP : LIBGMP-NOTFOUND 2025-11-03T15:52:51.2473120Z -- RT : 2025-11-03T15:52:51.2473240Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-11-03T15:52:51.2473390Z -- OPENSSL : 3.6.0 2025-11-03T15:52:51.2473520Z -- SDE : SDE_COMMAND-NOTFOUND 2025-11-03T15:52:51.2473680Z -- COMPILER_SUPPORTS_OPENMP : 2025-11-03T15:52:51.2473850Z Target processor: arm64 2025-11-03T15:52:51.2474010Z Host system: Darwin-23.6.0 2025-11-03T15:52:51.2474180Z Host processor: arm64 2025-11-03T15:52:51.2474520Z Detected C compiler: AppleClang @ /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang 2025-11-03T15:52:51.2474850Z CMake: 3.31.6 2025-11-03T15:52:51.2475070Z Make program: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin/ninja 2025-11-03T15:52:51.2513870Z CMake Warning at cmake/Metal.cmake:59 (message): 2025-11-03T15:52:51.2514210Z Machine can not compile metal shaders, fails with xcrun: error: unable to 2025-11-03T15:52:51.2514910Z find utility "metal", not a developer tool or in PATH 2025-11-03T15:52:51.2515090Z 2025-11-03T15:52:51.2515160Z Call Stack (most recent call first): 2025-11-03T15:52:51.2515380Z aten/src/ATen/CMakeLists.txt:785 (include) 2025-11-03T15:52:51.2515530Z 2025-11-03T15:52:51.2515530Z 2025-11-03T15:52:51.2515660Z CMake Warning (dev) at cmake/Metal.cmake:74 (exec_program): 2025-11-03T15:52:51.2516000Z Policy CMP0153 is not set: The exec_program command should not be called. 2025-11-03T15:52:51.2516390Z Run "cmake --help-policy CMP0153" for policy details. Use the cmake_policy 2025-11-03T15:52:51.2516730Z command to set the policy and suppress this warning. 2025-11-03T15:52:51.2516910Z 2025-11-03T15:52:51.2516970Z Use execute_process() instead. 2025-11-03T15:52:51.2517170Z Call Stack (most recent call first): 2025-11-03T15:52:51.2517370Z aten/src/ATen/CMakeLists.txt:785 (include) 2025-11-03T15:52:51.2517670Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-11-03T15:52:51.2517890Z 2025-11-03T15:52:51.2568520Z -- _CMAKE_OSX_SDKS: /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX15.2.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX14.5.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-11-03T15:52:51.2569560Z -- Toolchain using default OSX SDK: /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk 2025-11-03T15:52:51.2570550Z -- CMAKE_FRAMEWORK_PATH: /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/PrivateFrameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/Developer/Library/Frameworks 2025-11-03T15:52:52.2531610Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-11-03T15:52:52.2532060Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-11-03T15:52:52.2532660Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-11-03T15:52:52.2533190Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-11-03T15:52:52.3974460Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-11-03T15:52:52.5246000Z -- Performing Test HAS_WMISSING_PROTOTYPES - Success 2025-11-03T15:52:52.5250620Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-11-03T15:52:52.6433470Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Success 2025-11-03T15:52:52.7290120Z -- The OBJC compiler identification is AppleClang 16.0.0.16000026 2025-11-03T15:52:52.7891560Z -- The OBJCXX compiler identification is AppleClang 16.0.0.16000026 2025-11-03T15:52:52.7948480Z -- Detecting OBJC compiler ABI info 2025-11-03T15:52:52.9088190Z -- Detecting OBJC compiler ABI info - done 2025-11-03T15:52:52.9186370Z -- Check for working OBJC compiler: /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang - skipped 2025-11-03T15:52:52.9235510Z -- Detecting OBJCXX compiler ABI info 2025-11-03T15:52:53.0440460Z -- Detecting OBJCXX compiler ABI info - done 2025-11-03T15:52:53.0543180Z -- Check for working OBJCXX compiler: /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang++ - skipped 2025-11-03T15:52:53.0858540Z CMake Warning (dev) at cmake/Metal.cmake:74 (exec_program): 2025-11-03T15:52:53.0858910Z Policy CMP0153 is not set: The exec_program command should not be called. 2025-11-03T15:52:53.0859280Z Run "cmake --help-policy CMP0153" for policy details. Use the cmake_policy 2025-11-03T15:52:53.0859630Z command to set the policy and suppress this warning. 2025-11-03T15:52:53.0859800Z 2025-11-03T15:52:53.0859870Z Use execute_process() instead. 2025-11-03T15:52:53.0860040Z Call Stack (most recent call first): 2025-11-03T15:52:53.0860220Z caffe2/CMakeLists.txt:1704 (include) 2025-11-03T15:52:53.0860470Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-11-03T15:52:53.0860680Z 2025-11-03T15:52:53.0915900Z -- CMAKE_FRAMEWORK_PATH: /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/PrivateFrameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/Developer/Library/Frameworks 2025-11-03T15:52:53.0971140Z CMake Warning at CMakeLists.txt:1309 (message): 2025-11-03T15:52:53.0971450Z Generated cmake files are only fully tested if one builds with system glog, 2025-11-03T15:52:53.0972510Z gflags, and protobuf. Other settings may generate files that are not well 2025-11-03T15:52:53.0972800Z tested. 2025-11-03T15:52:53.0972870Z 2025-11-03T15:52:53.0972870Z 2025-11-03T15:52:53.0988540Z -- 2025-11-03T15:52:53.0988790Z -- ******** Summary ******** 2025-11-03T15:52:53.0989590Z -- General: 2025-11-03T15:52:53.0989740Z -- CMake version : 3.31.6 2025-11-03T15:52:53.0990360Z -- CMake command : /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/lib/python3.12/site-packages/cmake/data/bin/cmake 2025-11-03T15:52:53.0990790Z -- System : Darwin 2025-11-03T15:52:53.0991120Z -- C++ compiler : /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang++ 2025-11-03T15:52:53.0991440Z -- C++ compiler id : AppleClang 2025-11-03T15:52:53.0991640Z -- C++ compiler version : 16.0.0.16000026 2025-11-03T15:52:53.0991840Z -- Using ccache if found : ON 2025-11-03T15:52:53.0992040Z -- Found ccache : CCACHE_PROGRAM-NOTFOUND 2025-11-03T15:52:53.0994500Z -- 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-11-03T15:52:53.0997250Z -- Shared LD flags : -rdynamic -weak_framework Foundation -weak_framework MetalPerformanceShaders -weak_framework MetalPerformanceShadersGraph -weak_framework Metal -weak_framework IOKit 2025-11-03T15:52:53.0997960Z -- Static LD flags : 2025-11-03T15:52:53.0998120Z -- Module LD flags : 2025-11-03T15:52:53.0998290Z -- Build type : Release 2025-11-03T15:52:53.0998990Z -- 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-11-03T15:52:53.0999750Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/lib/python3.12/site-packages 2025-11-03T15:52:53.1000160Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2025-11-03T15:52:53.1000430Z -- USE_GOLD_LINKER : OFF 2025-11-03T15:52:53.1000570Z -- 2025-11-03T15:52:53.1000680Z -- TORCH_VERSION : 2.10.0 2025-11-03T15:52:53.1000850Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-11-03T15:52:53.1001040Z -- BUILD_BINARY : OFF 2025-11-03T15:52:53.1001190Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-11-03T15:52:53.1001350Z -- Link local protobuf : ON 2025-11-03T15:52:53.1001500Z -- BUILD_PYTHON : True 2025-11-03T15:52:53.1001660Z -- Python version : 3.12.12 2025-11-03T15:52:53.1001950Z -- Python executable : /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/bin/python 2025-11-03T15:52:53.1002230Z -- Python library : 2025-11-03T15:52:53.1002570Z -- Python includes : /opt/homebrew/opt/python@3.12/Frameworks/Python.framework/Versions/3.12/include/python3.12 2025-11-03T15:52:53.1003080Z -- Python site-package : /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/lib/python3.12/site-packages 2025-11-03T15:52:53.1003420Z -- BUILD_SHARED_LIBS : ON 2025-11-03T15:52:53.1003590Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-11-03T15:52:53.1003780Z -- BUILD_TEST : False 2025-11-03T15:52:53.1003950Z -- BUILD_JNI : OFF 2025-11-03T15:52:53.1004100Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-11-03T15:52:53.1004270Z -- BUILD_LITE_INTERPRETER: OFF 2025-11-03T15:52:53.1004430Z -- CROSS_COMPILING_MACOSX : 2025-11-03T15:52:53.1004590Z -- INTERN_BUILD_MOBILE : 2025-11-03T15:52:53.1004730Z -- TRACING_BASED : OFF 2025-11-03T15:52:53.1004890Z -- USE_BLAS : 1 2025-11-03T15:52:53.1005030Z -- BLAS : accelerate 2025-11-03T15:52:53.1005210Z -- BLAS_HAS_SBGEMM : 2025-11-03T15:52:53.1005360Z -- USE_LAPACK : 1 2025-11-03T15:52:53.1005510Z -- LAPACK : accelerate 2025-11-03T15:52:53.1005680Z -- USE_ASAN : OFF 2025-11-03T15:52:53.1005820Z -- USE_LSAN : OFF 2025-11-03T15:52:53.1005970Z -- USE_TSAN : OFF 2025-11-03T15:52:53.1006120Z -- USE_CPP_CODE_COVERAGE : OFF 2025-11-03T15:52:53.1006270Z -- USE_CUDA : OFF 2025-11-03T15:52:53.1006430Z -- USE_XPU : OFF 2025-11-03T15:52:53.1006570Z -- USE_ROCM : OFF 2025-11-03T15:52:53.1006720Z -- BUILD_NVFUSER : 2025-11-03T15:52:53.1006870Z -- USE_EIGEN_FOR_BLAS : ON 2025-11-03T15:52:53.1007020Z -- USE_EIGEN_FOR_SPARSE : OFF 2025-11-03T15:52:53.1007180Z -- USE_FBGEMM : OFF 2025-11-03T15:52:53.1007330Z -- USE_FBGEMM_GENAI : OFF 2025-11-03T15:52:53.1007480Z -- USE_KINETO : ON 2025-11-03T15:52:53.1007630Z -- USE_GFLAGS : OFF 2025-11-03T15:52:53.1007770Z -- USE_GLOG : OFF 2025-11-03T15:52:53.1007920Z -- USE_LITE_PROTO : OFF 2025-11-03T15:52:53.1008070Z -- USE_PYTORCH_METAL : 1 2025-11-03T15:52:53.1008230Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-11-03T15:52:53.1008410Z -- USE_MPS : ON 2025-11-03T15:52:53.1008560Z -- CAN_COMPILE_METAL : NO 2025-11-03T15:52:53.1008710Z -- USE_MKL : OFF 2025-11-03T15:52:53.1008860Z -- USE_MKLDNN : OFF 2025-11-03T15:52:53.1009080Z -- USE_KLEIDIAI : ON 2025-11-03T15:52:53.1009240Z -- USE_PRIORITIZED_TEXT_FOR_LD : OFF 2025-11-03T15:52:53.1009410Z -- USE_UCC : OFF 2025-11-03T15:52:53.1009560Z -- USE_ITT : OFF 2025-11-03T15:52:53.1009700Z -- USE_XCCL : OFF 2025-11-03T15:52:53.1009880Z -- USE_NCCL : OFF 2025-11-03T15:52:53.1010030Z -- Found NVSHMEM : 2025-11-03T15:52:53.1010180Z -- USE_NNPACK : ON 2025-11-03T15:52:53.1010390Z -- USE_NUMPY : ON 2025-11-03T15:52:53.1010550Z -- USE_OBSERVERS : ON 2025-11-03T15:52:53.1010710Z -- USE_OPENCL : OFF 2025-11-03T15:52:53.1010870Z -- USE_OPENMP : 1 2025-11-03T15:52:53.1011020Z -- USE_MIMALLOC : OFF 2025-11-03T15:52:53.1011170Z -- USE_VULKAN : OFF 2025-11-03T15:52:53.1011330Z -- USE_PROF : OFF 2025-11-03T15:52:53.1011490Z -- USE_PYTORCH_QNNPACK : ON 2025-11-03T15:52:53.1011650Z -- USE_XNNPACK : ON 2025-11-03T15:52:53.1011810Z -- USE_DISTRIBUTED : 0 2025-11-03T15:52:53.1011960Z -- Public Dependencies : 2025-11-03T15:52:53.1012470Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;pytorch_qnnpack;nnpack;XNNPACK;microkernels-prod;fp16;caffe2::openmp;kleidiai;fmt::fmt-header-only;kineto 2025-11-03T15:52:53.1012960Z -- Public CUDA Deps. : 2025-11-03T15:52:53.1013110Z -- Private CUDA Deps. : 2025-11-03T15:52:53.1013270Z -- USE_COREML_DELEGATE : OFF 2025-11-03T15:52:53.1013430Z -- BUILD_LAZY_TS_BACKEND : ON 2025-11-03T15:52:53.1013600Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-11-03T15:52:53.1013760Z -- Configuring done (26.8s) 2025-11-03T15:52:54.1103910Z CMake Warning: 2025-11-03T15:52:54.1104160Z Manually-specified variables were not used by the project: 2025-11-03T15:52:54.1104350Z 2025-11-03T15:52:54.1104400Z BUILD_ENVIRONMENT 2025-11-03T15:52:54.1104500Z 2025-11-03T15:52:54.1104500Z 2025-11-03T15:52:54.1104550Z -- Generating done (1.0s) 2025-11-03T15:52:54.1130690Z -- Build files have been written to: /Users/ec2-user/runner/_work/pytorch/pytorch/build 2025-11-03T15:52:54.1275550Z cmake --build . --target install --config Release 2025-11-03T15:52:56.2723540Z [1/4] Generating ATen declarations_yaml 2025-11-03T15:52:58.6646520Z [2/4] Generating ATen headers 2025-11-03T15:52:59.6508810Z [3/4] Generating ATen sources 2025-11-03T15:53:00.0346400Z [1/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/strtod.cc.o 2025-11-03T15:53:00.0480120Z [2/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_enum_util.cc.o 2025-11-03T15:53:00.0489080Z [3/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/arena.cc.o 2025-11-03T15:53:00.0608690Z [4/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2025-11-03T15:53:00.0611030Z [5/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/io_win32.cc.o 2025-11-03T15:53:00.0748870Z [6/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/coded_stream.cc.o 2025-11-03T15:53:00.0779500Z [7/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2025-11-03T15:53:00.0853280Z [8/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/extension_set.cc.o 2025-11-03T15:53:00.1447920Z [9/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/any_lite.cc.o 2025-11-03T15:53:00.2285320Z [10/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_util.cc.o 2025-11-03T15:53:00.2752010Z [11/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2025-11-03T15:53:00.2974490Z [12/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2025-11-03T15:53:00.3031140Z [13/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2025-11-03T15:53:00.3062400Z [14/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/parse_context.cc.o 2025-11-03T15:53:00.3284550Z [15/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2025-11-03T15:53:00.3306100Z [16/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/message_lite.cc.o 2025-11-03T15:53:00.3343500Z [17/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/repeated_field.cc.o 2025-11-03T15:53:00.3794880Z [18/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/common.cc.o 2025-11-03T15:53:00.5077200Z [19/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/status.cc.o 2025-11-03T15:53:00.5132540Z [20/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/int128.cc.o 2025-11-03T15:53:00.5154510Z [21/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2025-11-03T15:53:00.5375590Z [22/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2025-11-03T15:53:00.5468670Z [23/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2025-11-03T15:53:00.5496780Z [24/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/strutil.cc.o 2025-11-03T15:53:00.5501390Z /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-11-03T15:53:00.5504340Z 507 | sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2025-11-03T15:53:00.5504920Z | ^ 2025-11-03T15:53:00.5505980Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdio.h:274:1: note: 'sprintf' has been explicitly marked deprecated here 2025-11-03T15:53:00.5508170Z 274 | __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-11-03T15:53:00.5509680Z | ^ 2025-11-03T15:53:00.5511400Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2025-11-03T15:53:00.5512760Z 218 | #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2025-11-03T15:53:00.5513470Z | ^ 2025-11-03T15:53:00.5513990Z 1 warning generated. 2025-11-03T15:53:00.5662390Z [25/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/wire_format_lite.cc.o 2025-11-03T15:53:00.5717340Z [26/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/statusor.cc.o 2025-11-03T15:53:00.6431710Z [27/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/time.cc.o 2025-11-03T15:53:00.6756680Z [28/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any_lite.cc.o 2025-11-03T15:53:00.7007170Z [29/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/io_win32.cc.o 2025-11-03T15:53:00.7754440Z [30/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/arena.cc.o 2025-11-03T15:53:00.7794840Z [31/5269] Linking CXX static library lib/libprotobuf-lite.a 2025-11-03T15:53:00.7941460Z [32/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2025-11-03T15:53:00.7949540Z [33/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_enum_util.cc.o 2025-11-03T15:53:00.8065240Z [34/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/coded_stream.cc.o 2025-11-03T15:53:00.8121020Z [35/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set.cc.o 2025-11-03T15:53:00.8250770Z [36/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2025-11-03T15:53:00.9138680Z [37/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_util.cc.o 2025-11-03T15:53:00.9504840Z [38/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/strtod.cc.o 2025-11-03T15:53:00.9820470Z [39/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2025-11-03T15:53:01.0239380Z [40/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message_lite.cc.o 2025-11-03T15:53:01.0318510Z [41/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/parse_context.cc.o 2025-11-03T15:53:01.0381850Z [42/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2025-11-03T15:53:01.0452520Z [43/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/repeated_field.cc.o 2025-11-03T15:53:01.0664630Z [44/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2025-11-03T15:53:01.0708600Z [45/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2025-11-03T15:53:01.1808520Z [46/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/int128.cc.o 2025-11-03T15:53:01.1908280Z [47/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/common.cc.o 2025-11-03T15:53:01.2237090Z [48/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/status.cc.o 2025-11-03T15:53:01.2401200Z [49/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2025-11-03T15:53:01.2557040Z [50/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/statusor.cc.o 2025-11-03T15:53:01.2660330Z [51/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2025-11-03T15:53:01.2770670Z [52/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2025-11-03T15:53:01.2890110Z [53/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/strutil.cc.o 2025-11-03T15:53:01.2893420Z /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-11-03T15:53:01.2894510Z 507 | sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2025-11-03T15:53:01.2894740Z | ^ 2025-11-03T15:53:01.2895380Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdio.h:274:1: note: 'sprintf' has been explicitly marked deprecated here 2025-11-03T15:53:01.2896230Z 274 | __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-11-03T15:53:01.2896770Z | ^ 2025-11-03T15:53:01.2897140Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2025-11-03T15:53:01.2897670Z 218 | #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2025-11-03T15:53:01.2897950Z | ^ 2025-11-03T15:53:01.2898140Z 1 warning generated. 2025-11-03T15:53:01.3702680Z [54/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/time.cc.o 2025-11-03T15:53:01.4064190Z [55/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format_lite.cc.o 2025-11-03T15:53:01.4748300Z [56/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.pb.cc.o 2025-11-03T15:53:01.4776190Z [57/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.cc.o 2025-11-03T15:53:01.5007630Z [58/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/importer.cc.o 2025-11-03T15:53:01.5025450Z [59/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/api.pb.cc.o 2025-11-03T15:53:01.5325550Z [60/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/parser.cc.o 2025-11-03T15:53:01.6063850Z [61/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.cc.o 2025-11-03T15:53:01.6095940Z [62/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor_database.cc.o 2025-11-03T15:53:01.6381810Z [63/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/duration.pb.cc.o 2025-11-03T15:53:01.6642580Z [64/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.pb.cc.o 2025-11-03T15:53:01.6896580Z [65/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/dynamic_message.cc.o 2025-11-03T15:53:01.7245840Z [66/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/empty.pb.cc.o 2025-11-03T15:53:01.7309670Z [67/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set_heavy.cc.o 2025-11-03T15:53:01.7337990Z [68/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/gzip_stream.cc.o 2025-11-03T15:53:01.7848590Z [69/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/field_mask.pb.cc.o 2025-11-03T15:53:01.8570880Z [70/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven.cc.o 2025-11-03T15:53:01.8683100Z [71/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_reflection.cc.o 2025-11-03T15:53:01.9289420Z [72/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/printer.cc.o 2025-11-03T15:53:01.9447130Z [73/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/service.cc.o 2025-11-03T15:53:01.9512880Z [74/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/map_field.cc.o 2025-11-03T15:53:01.9645980Z [75/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message.cc.o 2025-11-03T15:53:01.9828550Z [76/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/reflection_ops.cc.o 2025-11-03T15:53:02.0026960Z [77/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/source_context.pb.cc.o 2025-11-03T15:53:02.0064760Z [78/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/tokenizer.cc.o 2025-11-03T15:53:02.1280230Z [79/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/substitute.cc.o 2025-11-03T15:53:02.1440860Z [80/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/struct.pb.cc.o 2025-11-03T15:53:02.1897120Z [81/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/delimited_message_util.cc.o 2025-11-03T15:53:02.2036090Z [82/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/text_format.cc.o 2025-11-03T15:53:02.2210220Z [83/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/unknown_field_set.cc.o 2025-11-03T15:53:02.2215300Z [84/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/timestamp.pb.cc.o 2025-11-03T15:53:02.2228910Z [85/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_comparator.cc.o 2025-11-03T15:53:02.2380200Z [86/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/type.pb.cc.o 2025-11-03T15:53:02.2891940Z [87/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/datapiece.cc.o 2025-11-03T15:53:02.3176760Z [88/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_mask_util.cc.o 2025-11-03T15:53:02.3885090Z [89/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/default_value_objectwriter.cc.o 2025-11-03T15:53:02.4117070Z [90/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/error_listener.cc.o 2025-11-03T15:53:02.4753220Z [91/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_escaping.cc.o 2025-11-03T15:53:02.4915450Z [92/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_stream_parser.cc.o 2025-11-03T15:53:02.5044820Z [93/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/object_writer.cc.o 2025-11-03T15:53:02.5084930Z [94/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/field_mask_utility.cc.o 2025-11-03T15:53:02.5155100Z [95/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_objectwriter.cc.o 2025-11-03T15:53:02.5210240Z [96/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/proto_writer.cc.o 2025-11-03T15:53:02.6553130Z [97/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectsource.cc.o 2025-11-03T15:53:02.6557470Z [98/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectwriter.cc.o 2025-11-03T15:53:02.6801590Z [99/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info.cc.o 2025-11-03T15:53:02.6982200Z [100/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info_test_helper.cc.o 2025-11-03T15:53:02.7454250Z [101/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/time_util.cc.o 2025-11-03T15:53:02.7754860Z [102/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/utility.cc.o 2025-11-03T15:53:02.7857090Z [103/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/message_differencer.cc.o 2025-11-03T15:53:02.7973710Z [104/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/json_util.cc.o 2025-11-03T15:53:02.8497410Z [105/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/type_resolver_util.cc.o 2025-11-03T15:53:02.8976560Z [106/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format.cc.o 2025-11-03T15:53:02.9687820Z [107/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum.cc.o 2025-11-03T15:53:02.9914550Z [108/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/code_generator.cc.o 2025-11-03T15:53:03.0011270Z [109/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wrappers.pb.cc.o 2025-11-03T15:53:03.0083600Z [110/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o 2025-11-03T15:53:03.0302150Z [111/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_extension.cc.o 2025-11-03T15:53:03.0383160Z [112/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/command_line_interface.cc.o 2025-11-03T15:53:03.0494240Z [113/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_field.cc.o 2025-11-03T15:53:03.0665460Z [114/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_file.cc.o 2025-11-03T15:53:03.1523180Z [115/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o 2025-11-03T15:53:03.1711140Z [116/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_generator.cc.o 2025-11-03T15:53:03.2728290Z [117/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o 2025-11-03T15:53:03.3029730Z [118/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o 2025-11-03T15:53:03.3213790Z [119/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_service.cc.o 2025-11-03T15:53:03.3364990Z [120/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message.cc.o 2025-11-03T15:53:03.3426970Z [121/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o 2025-11-03T15:53:03.3511520Z [122/5269] Linking CXX static library lib/libprotobuf.a 2025-11-03T15:53:03.3601130Z [123/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o 2025-11-03T15:53:03.3664270Z [124/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o 2025-11-03T15:53:03.4012840Z [125/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o 2025-11-03T15:53:03.5074550Z [126/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum.cc.o 2025-11-03T15:53:03.5299980Z [127/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o 2025-11-03T15:53:03.5683010Z [128/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o 2025-11-03T15:53:03.6288640Z [129/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o 2025-11-03T15:53:03.6324290Z [130/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_generator.cc.o 2025-11-03T15:53:03.6572550Z [131/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o 2025-11-03T15:53:03.6877750Z [132/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message.cc.o 2025-11-03T15:53:03.7079710Z [133/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o 2025-11-03T15:53:03.7617880Z [134/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o 2025-11-03T15:53:03.7650730Z [135/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o 2025-11-03T15:53:03.7845210Z [136/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o 2025-11-03T15:53:03.8487400Z [137/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o 2025-11-03T15:53:03.8681560Z [138/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o 2025-11-03T15:53:03.9074720Z [139/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o 2025-11-03T15:53:03.9241080Z [140/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_context.cc.o 2025-11-03T15:53:03.9459300Z [141/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_doc_comment.cc.o 2025-11-03T15:53:04.0160380Z [142/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum.cc.o 2025-11-03T15:53:04.0325860Z [143/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o 2025-11-03T15:53:04.0379870Z [144/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field.cc.o 2025-11-03T15:53:04.0414780Z [145/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_lite.cc.o 2025-11-03T15:53:04.0426630Z [146/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o 2025-11-03T15:53:04.2013570Z [147/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension_lite.cc.o 2025-11-03T15:53:04.2044590Z [148/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension.cc.o 2025-11-03T15:53:04.2178910Z [149/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_field.cc.o 2025-11-03T15:53:04.2183710Z [150/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator.cc.o 2025-11-03T15:53:04.2259940Z [151/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_file.cc.o 2025-11-03T15:53:04.2728050Z [152/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator_factory.cc.o 2025-11-03T15:53:04.3169070Z [153/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field.cc.o 2025-11-03T15:53:04.3305890Z [154/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_helpers.cc.o 2025-11-03T15:53:04.4015950Z [155/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message.cc.o 2025-11-03T15:53:04.4688180Z [156/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field_lite.cc.o 2025-11-03T15:53:04.4888770Z [157/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o 2025-11-03T15:53:04.5072420Z [158/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder.cc.o 2025-11-03T15:53:04.5285080Z [159/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field_lite.cc.o 2025-11-03T15:53:04.5349330Z [160/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_name_resolver.cc.o 2025-11-03T15:53:04.5395820Z [161/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_lite.cc.o 2025-11-03T15:53:04.5585230Z [162/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field.cc.o 2025-11-03T15:53:04.6231370Z [163/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field.cc.o 2025-11-03T15:53:04.6476680Z [164/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/well_known_types_embed.cc.o 2025-11-03T15:53:04.7003790Z [165/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_service.cc.o 2025-11-03T15:53:04.7559440Z [166/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o 2025-11-03T15:53:04.7621770Z [167/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field.cc.o 2025-11-03T15:53:04.7678180Z [168/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o 2025-11-03T15:53:04.7839590Z [169/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o 2025-11-03T15:53:04.8097080Z [170/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field_lite.cc.o 2025-11-03T15:53:04.8400180Z [171/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/js_generator.cc.o 2025-11-03T15:53:04.9306710Z [172/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o 2025-11-03T15:53:04.9458460Z [173/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o 2025-11-03T15:53:05.0033980Z [174/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o 2025-11-03T15:53:05.0104920Z [175/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o 2025-11-03T15:53:05.0210460Z [176/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o 2025-11-03T15:53:05.0234920Z [177/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o 2025-11-03T15:53:05.0283300Z [178/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o 2025-11-03T15:53:05.1024060Z [179/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o 2025-11-03T15:53:05.1318440Z [180/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o 2025-11-03T15:53:05.1975210Z [181/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o 2025-11-03T15:53:05.2430160Z [182/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.cc.o 2025-11-03T15:53:05.2600640Z [183/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.pb.cc.o 2025-11-03T15:53:05.2810240Z [184/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o 2025-11-03T15:53:05.3035190Z [185/5269] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-11-03T15:53:05.3044310Z [186/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/python/python_generator.cc.o 2025-11-03T15:53:05.3197800Z [187/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/ruby/ruby_generator.cc.o 2025-11-03T15:53:05.3209440Z [188/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/php/php_generator.cc.o 2025-11-03T15:53:05.3388620Z [189/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/subprocess.cc.o 2025-11-03T15:53:05.3777460Z [190/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/zip_writer.cc.o 2025-11-03T15:53:05.3782340Z [191/5269] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-11-03T15:53:05.3814560Z [192/5269] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-11-03T15:53:05.4018510Z [193/5269] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/gcd.c.o 2025-11-03T15:53:05.4038330Z [194/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-11-03T15:53:05.4204350Z [195/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-11-03T15:53:05.4220880Z [196/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-11-03T15:53:05.4229090Z [197/5269] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/__/src/google/protobuf/compiler/main.cc.o 2025-11-03T15:53:05.4264300Z [198/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o 2025-11-03T15:53:05.4392400Z [199/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-11-03T15:53:05.4545540Z [200/5269] Linking C static library lib/libpthreadpool.a 2025-11-03T15:53:05.4853440Z [201/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/mach/init.c.o 2025-11-03T15:53:05.4984950Z [202/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/mach/topology.c.o 2025-11-03T15:53:05.5245740Z [203/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/cache.c.o 2025-11-03T15:53:05.5253720Z [204/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-11-03T15:53:05.5264200Z [205/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-11-03T15:53:05.5275200Z [206/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-11-03T15:53:05.5280120Z [207/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o 2025-11-03T15:53:05.5312700Z [208/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-11-03T15:53:05.5476410Z [209/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o 2025-11-03T15:53:05.5825180Z [210/5269] Linking C static library lib/libcpuinfo.a 2025-11-03T15:53:05.5829200Z [211/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/mach/init.c.o 2025-11-03T15:53:05.6029940Z [212/5269] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/mach/topology.c.o 2025-11-03T15:53:05.6367880Z [213/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/channel-shuffle.c.o 2025-11-03T15:53:05.6404510Z [214/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/average-pooling.c.o 2025-11-03T15:53:05.6406380Z [215/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/clamp.c.o 2025-11-03T15:53:05.6421290Z [216/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/add.c.o 2025-11-03T15:53:05.6423590Z [217/5269] Linking C static library lib/libcpuinfo_internals.a 2025-11-03T15:53:05.6490810Z [218/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/init.c.o 2025-11-03T15:53:05.6620630Z [219/5269] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-prepack.cc.o 2025-11-03T15:53:05.6758820Z [220/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconvolution.c.o 2025-11-03T15:53:05.6811990Z [221/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/convolution.c.o 2025-11-03T15:53:05.7508180Z [222/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected.c.o 2025-11-03T15:53:05.7585740Z [223/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardsigmoid.c.o 2025-11-03T15:53:05.7586490Z [224/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected-sparse.c.o 2025-11-03T15:53:05.7593150Z [225/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/global-average-pooling.c.o 2025-11-03T15:53:05.7606450Z [226/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardswish.c.o 2025-11-03T15:53:05.7753680Z [227/5269] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-prepack.cc.o 2025-11-03T15:53:05.7754250Z [228/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/max-pooling.c.o 2025-11-03T15:53:05.7796610Z [229/5269] Linking CXX static library lib/libprotoc.a 2025-11-03T15:53:05.7892600Z [230/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sigmoid.c.o 2025-11-03T15:53:05.8008620Z [231/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/leaky-relu.c.o 2025-11-03T15:53:05.8960770Z [232/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/softargmax.c.o 2025-11-03T15:53:05.8975960Z [233/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/tanh.c.o 2025-11-03T15:53:05.9049750Z [234/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-delete.c.o 2025-11-03T15:53:05.9177430Z [235/5269] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconv-run.cc.o 2025-11-03T15:53:05.9180700Z [236/5269] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-unpack.cc.o 2025-11-03T15:53:05.9226460Z [237/5269] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-dynamic-run.cc.o 2025-11-03T15:53:05.9231150Z [238/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/indirection.c.o 2025-11-03T15:53:05.9343440Z [239/5269] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-run.cc.o 2025-11-03T15:53:06.0187550Z [240/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8lut/scalar.c.o 2025-11-03T15:53:06.0292760Z [241/5269] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-run.cc.o 2025-11-03T15:53:06.0295880Z [242/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-run.c.o 2025-11-03T15:53:06.0392960Z [243/5269] Linking CXX executable bin/protoc-3.13.0.0 2025-11-03T15:53:06.0395930Z [244/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8lut32norm/scalar.c.o 2025-11-03T15:53:06.0397110Z [245/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/mp8x9p8q-neon.c.o 2025-11-03T15:53:06.0414420Z [246/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8xm-neon.c.o 2025-11-03T15:53:06.0428820Z [247/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-psimd.c.o 2025-11-03T15:53:06.0439570Z [248/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8x9-neon.c.o 2025-11-03T15:53:06.0464480Z [249/5269] Creating executable symlink bin/protoc 2025-11-03T15:53:06.0684020Z [250/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/4x8-neon.c.o 2025-11-03T15:53:06.1446520Z [251/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-neon.c.o 2025-11-03T15:53:06.1458610Z [252/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon.c.o 2025-11-03T15:53:06.1610880Z [253/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon-per-channel.c.o 2025-11-03T15:53:06.1655430Z [254/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8x7-neon.c.o 2025-11-03T15:53:06.1716770Z [255/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x27-neon.c.o 2025-11-03T15:53:06.1863760Z [256/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/mp8x7p7q-neon.c.o 2025-11-03T15:53:06.1872910Z [257/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8xm-neon.c.o 2025-11-03T15:53:06.1918400Z [258/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon-per-channel.c.o 2025-11-03T15:53:06.1919270Z [259/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x-sumrows-neon.c.o 2025-11-03T15:53:06.2159180Z [260/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon.c.o 2025-11-03T15:53:06.2704030Z [261/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-dq-neon.c.o 2025-11-03T15:53:06.2706800Z [262/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-neon.c.o 2025-11-03T15:53:06.2895460Z [263/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8c2-xzp-neon.c.o 2025-11-03T15:53:06.2897830Z [264/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/6x4-neon.c.o 2025-11-03T15:53:06.3029090Z [265/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-neon.c.o 2025-11-03T15:53:06.3032520Z [266/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8vadd/neon.c.o 2025-11-03T15:53:06.3303480Z [267/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-neon.c.o 2025-11-03T15:53:06.3405830Z [268/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/5x8-neon.c.o 2025-11-03T15:53:06.3517370Z [269/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8clamp/neon.c.o 2025-11-03T15:53:06.3577910Z [270/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/16x9p8q-neon.c.o 2025-11-03T15:53:06.3789750Z [271/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8rmax/neon.c.o 2025-11-03T15:53:06.3897790Z [272/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/sub16-neon.c.o 2025-11-03T15:53:06.3949600Z [273/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x3-neon.c.o 2025-11-03T15:53:06.4024780Z [274/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x2-neon.c.o 2025-11-03T15:53:06.4099440Z [275/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x4-neon.c.o 2025-11-03T15:53:06.4112430Z [276/5269] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/xm-neon.c.o 2025-11-03T15:53:06.4303660Z [277/5269] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-aarch64-neon.S.o 2025-11-03T15:53:06.4335330Z [278/5269] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-aarch64-neon.S.o 2025-11-03T15:53:06.4358150Z [279/5269] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x4-packA-aarch64-neon.S.o 2025-11-03T15:53:06.4392510Z [280/5269] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-dq-aarch64-neon.S.o 2025-11-03T15:53:06.4659870Z [281/5269] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c1x4-dq-packedA-aarch64-neon.S.o 2025-11-03T15:53:06.4854620Z [282/5269] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c8x1-dq-packedA-aarch64-neon.S.o 2025-11-03T15:53:06.5147870Z [283/5269] Building C object confu-deps/clog/CMakeFiles/clog.dir/src/clog.c.o 2025-11-03T15:53:06.5305110Z [284/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o 2025-11-03T15:53:06.5312200Z [285/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o 2025-11-03T15:53:06.5533720Z [286/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o 2025-11-03T15:53:06.5550040Z [287/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o 2025-11-03T15:53:06.5574650Z [288/5269] Linking C static library lib/libclog.a 2025-11-03T15:53:06.5934450Z [289/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o 2025-11-03T15:53:06.5987150Z [290/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o 2025-11-03T15:53:06.6076140Z [291/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o 2025-11-03T15:53:06.6157610Z [292/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o 2025-11-03T15:53:06.6163390Z [293/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o 2025-11-03T15:53:06.6289460Z [294/5269] Linking CXX static library lib/libpytorch_qnnpack.a 2025-11-03T15:53:06.6456190Z [295/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o 2025-11-03T15:53:06.6654760Z [296/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o 2025-11-03T15:53:06.6791800Z [297/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-8x8.c.o 2025-11-03T15:53:06.6954820Z [298/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-16x16.c.o 2025-11-03T15:53:06.7197060Z [299/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/h4gemm.c.o 2025-11-03T15:53:06.7315750Z [300/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4gemm.c.o 2025-11-03T15:53:06.7373140Z [301/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb.c.o 2025-11-03T15:53:06.7381980Z [302/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb.c.o 2025-11-03T15:53:06.7397470Z [303/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3.c.o 2025-11-03T15:53:06.7450530Z [304/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3-fp16.c.o 2025-11-03T15:53:06.7643230Z [305/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/conv1x1.c.o 2025-11-03T15:53:06.8222380Z [306/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sgemm.c.o 2025-11-03T15:53:06.8231500Z [307/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/relu.c.o 2025-11-03T15:53:06.8248370Z [308/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/softmax.c.o 2025-11-03T15:53:06.8415960Z [309/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sdotxf.c.o 2025-11-03T15:53:06.8464670Z [310/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o 2025-11-03T15:53:06.8528860Z [311/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/blas/shdotxf.c.o 2025-11-03T15:53:06.8532300Z [312/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm.c.o 2025-11-03T15:53:06.8534800Z [313/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb-transc.c.o 2025-11-03T15:53:06.8559620Z [314/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb-transc.c.o 2025-11-03T15:53:06.8774460Z [315/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm.c.o 2025-11-03T15:53:06.9147330Z [316/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o 2025-11-03T15:53:06.9289700Z [317/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o 2025-11-03T15:53:06.9317480Z [318/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o 2025-11-03T15:53:06.9446630Z [319/5269] Linking C static library lib/libnnpack.a 2025-11-03T15:53:06.9462870Z [320/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o 2025-11-03T15:53:06.9624420Z [321/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o 2025-11-03T15:53:06.9696860Z [322/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o 2025-11-03T15:53:06.9807410Z [323/5269] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o 2025-11-03T15:53:06.9907030Z [324/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-neonfp16arith-c8.c.o 2025-11-03T15:53:07.0102450Z [325/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-11-03T15:53:07.0379610Z [326/5269] Linking C static library lib/libnnpack_reference_layers.a 2025-11-03T15:53:07.0572910Z [327/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-conv-hwc2chw/f16-conv-hwc2chw-3x3s2p1c3x4-neonfp16arith-2x2.c.o 2025-11-03T15:53:07.0763360Z [328/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith.c.o 2025-11-03T15:53:07.0766600Z [329/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:07.0868010Z [330/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith.c.o 2025-11-03T15:53:07.0877980Z [331/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith.c.o 2025-11-03T15:53:07.1029800Z [332/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith.c.o 2025-11-03T15:53:07.1236410Z [333/5269] 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-11-03T15:53:07.1412330Z [334/5269] 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-11-03T15:53:07.1438590Z [335/5269] 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-11-03T15:53:07.1729480Z [336/5269] 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-11-03T15:53:07.1900110Z [337/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u16.c.o 2025-11-03T15:53:07.1918080Z [338/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2025-11-03T15:53:07.2009120Z [339/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-11-03T15:53:07.2110830Z [340/5269] 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-11-03T15:53:07.2113180Z [341/5269] 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-11-03T15:53:07.2166810Z [342/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u16.c.o 2025-11-03T15:53:07.2207970Z [343/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc4.c.o 2025-11-03T15:53:07.2608370Z [344/5269] 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-11-03T15:53:07.2780150Z [345/5269] 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-11-03T15:53:07.2858370Z [346/5269] 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-11-03T15:53:07.2951740Z [347/5269] 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-11-03T15:53:07.2955720Z [348/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:07.3010280Z [349/5269] 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-11-03T15:53:07.3529000Z [350/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:07.3548350Z [351/5269] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-11-03T15:53:07.3558440Z [352/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p8.c.o 2025-11-03T15:53:07.3707880Z [353/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:07.3758810Z [354/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:07.3762070Z [355/5269] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-11-03T15:53:07.3796620Z [356/5269] 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-11-03T15:53:07.3828840Z [357/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c8.c.o 2025-11-03T15:53:07.3837670Z [358/5269] 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-11-03T15:53:07.3866090Z [359/5269] 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-11-03T15:53:07.4521370Z [360/5269] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-11-03T15:53:07.4925220Z [361/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2025-11-03T15:53:07.5023890Z [362/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-11-03T15:53:07.5059600Z [363/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-neonfp16arith-c8.c.o 2025-11-03T15:53:07.5137960Z [364/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u32.c.o 2025-11-03T15:53:07.5200780Z [365/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:07.5223460Z [366/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:07.5352490Z [367/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:07.5364540Z [368/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:07.5554930Z [369/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u4.c.o 2025-11-03T15:53:07.5773890Z [370/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-11-03T15:53:07.6156150Z [371/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2025-11-03T15:53:07.6189050Z [372/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32.c.o 2025-11-03T15:53:07.6260660Z [373/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u2-acc2.c.o 2025-11-03T15:53:07.6395230Z [374/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc4.c.o 2025-11-03T15:53:07.6480020Z [375/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc4.c.o 2025-11-03T15:53:07.6489890Z [376/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-pipelined.c.o 2025-11-03T15:53:07.6942240Z [377/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u16.c.o 2025-11-03T15:53:07.7045290Z [378/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u8.c.o 2025-11-03T15:53:07.7154710Z [379/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u16.c.o 2025-11-03T15:53:07.7182950Z [380/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u2.c.o 2025-11-03T15:53:07.7546810Z [381/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u8.c.o 2025-11-03T15:53:07.7606200Z [382/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u16.c.o 2025-11-03T15:53:07.7613380Z [383/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u16.c.o 2025-11-03T15:53:07.7630950Z [384/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u16.c.o 2025-11-03T15:53:07.7850250Z [385/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u16.c.o 2025-11-03T15:53:07.7877780Z [386/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u2.c.o 2025-11-03T15:53:07.8269360Z [387/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u16.c.o 2025-11-03T15:53:07.8400620Z [388/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u16.c.o 2025-11-03T15:53:07.8514160Z [389/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u16.c.o 2025-11-03T15:53:07.8623990Z [390/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u16.c.o 2025-11-03T15:53:07.8788710Z [391/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u8.c.o 2025-11-03T15:53:07.8924230Z [392/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u2.c.o 2025-11-03T15:53:07.8953330Z [393/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u16.c.o 2025-11-03T15:53:07.9203400Z [394/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u16.c.o 2025-11-03T15:53:07.9329710Z [395/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u16.c.o 2025-11-03T15:53:07.9400840Z [396/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u16.c.o 2025-11-03T15:53:07.9857350Z [397/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u16.c.o 2025-11-03T15:53:07.9975660Z [398/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u16.c.o 2025-11-03T15:53:08.0068220Z [399/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u16.c.o 2025-11-03T15:53:08.0079270Z [400/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u16.c.o 2025-11-03T15:53:08.0212920Z [401/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u16.c.o 2025-11-03T15:53:08.0279200Z [402/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u16.c.o 2025-11-03T15:53:08.0280300Z [403/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u16.c.o 2025-11-03T15:53:08.0476110Z [404/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u16.c.o 2025-11-03T15:53:08.0513460Z [405/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-neonfp16arith-2x.c.o 2025-11-03T15:53:08.0950870Z [406/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u16.c.o 2025-11-03T15:53:08.1350780Z [407/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u32.c.o 2025-11-03T15:53:08.1364280Z [408/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u16.c.o 2025-11-03T15:53:08.1419700Z [409/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u16.c.o 2025-11-03T15:53:08.1536930Z [410/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u8.c.o 2025-11-03T15:53:08.1546980Z [411/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u8.c.o 2025-11-03T15:53:08.1551030Z [412/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u16.c.o 2025-11-03T15:53:08.1610070Z [413/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u16.c.o 2025-11-03T15:53:08.1740150Z [414/5269] 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-11-03T15:53:08.2362120Z [415/5269] 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-11-03T15:53:08.2397880Z [416/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u16.c.o 2025-11-03T15:53:08.2499230Z [417/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-neon-c4.c.o 2025-11-03T15:53:08.2536650Z [418/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-11-03T15:53:08.2595690Z [419/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-neon-c4.c.o 2025-11-03T15:53:08.2603330Z [420/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u16.c.o 2025-11-03T15:53:08.2801830Z [421/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u16.c.o 2025-11-03T15:53:08.2802660Z [422/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o 2025-11-03T15:53:08.2803370Z [423/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-neon-c4.c.o 2025-11-03T15:53:08.2804070Z [424/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-11-03T15:53:08.3500990Z [425/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-neon-c4.c.o 2025-11-03T15:53:08.3615130Z [426/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-11-03T15:53:08.3625670Z [427/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2025-11-03T15:53:08.3711810Z [428/5269] 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-11-03T15:53:08.3777210Z [429/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-neon-c4.c.o 2025-11-03T15:53:08.3929550Z [430/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-aarch64-neonfma-2x2.c.o 2025-11-03T15:53:08.3955330Z [431/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-neon-2x2.c.o 2025-11-03T15:53:08.3965080Z [432/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-11-03T15:53:08.4062110Z [433/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-11-03T15:53:08.4212100Z [434/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2025-11-03T15:53:08.4867370Z [435/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-11-03T15:53:08.4913630Z [436/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon-acc2.c.o 2025-11-03T15:53:08.4984590Z [437/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma-acc2.c.o 2025-11-03T15:53:08.5005590Z [438/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2025-11-03T15:53:08.5021090Z [439/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2025-11-03T15:53:08.5169030Z [440/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2025-11-03T15:53:08.5171300Z [441/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2025-11-03T15:53:08.5187690Z [442/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon.c.o 2025-11-03T15:53:08.5192560Z [443/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma.c.o 2025-11-03T15:53:08.5969100Z [444/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon.c.o 2025-11-03T15:53:08.6154440Z [445/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2025-11-03T15:53:08.6169430Z [446/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma.c.o 2025-11-03T15:53:08.6377520Z [447/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon-acc2.c.o 2025-11-03T15:53:08.6388310Z [448/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma.c.o 2025-11-03T15:53:08.6549200Z [449/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma-acc2.c.o 2025-11-03T15:53:08.6556590Z [450/5269] 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-11-03T15:53:08.6744370Z [451/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o 2025-11-03T15:53:08.6748840Z [452/5269] 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-11-03T15:53:08.7101520Z [453/5269] 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-11-03T15:53:08.7118980Z [454/5269] 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-11-03T15:53:08.7348380Z [455/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon.c.o 2025-11-03T15:53:08.7515780Z [456/5269] 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-11-03T15:53:08.7524270Z [457/5269] 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-11-03T15:53:08.7620340Z [458/5269] 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-11-03T15:53:08.7664560Z [459/5269] 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-11-03T15:53:08.8073300Z [460/5269] 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-11-03T15:53:08.8082250Z [461/5269] 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-11-03T15:53:08.8355820Z [462/5269] 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-11-03T15:53:08.8389990Z [463/5269] 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-11-03T15:53:08.8398860Z [464/5269] 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-11-03T15:53:08.8518230Z [465/5269] 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-11-03T15:53:08.8661500Z [466/5269] 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-11-03T15:53:08.8899770Z [467/5269] 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-11-03T15:53:08.8917780Z [468/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u16.c.o 2025-11-03T15:53:08.9117640Z [469/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u8.c.o 2025-11-03T15:53:08.9143620Z [470/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2025-11-03T15:53:08.9171670Z [471/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-11-03T15:53:08.9398350Z [472/5269] 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-11-03T15:53:08.9417900Z [473/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o 2025-11-03T15:53:08.9571070Z [474/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2025-11-03T15:53:08.9613300Z [475/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2025-11-03T15:53:08.9741500Z [476/5269] 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-11-03T15:53:08.9760310Z [477/5269] 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-11-03T15:53:08.9906750Z [478/5269] 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-11-03T15:53:08.9965310Z [479/5269] 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-11-03T15:53:08.9967190Z [480/5269] 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-11-03T15:53:09.0072470Z [481/5269] 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-11-03T15:53:09.0878470Z [482/5269] 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-11-03T15:53:09.0899920Z [483/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neonfma.c.o 2025-11-03T15:53:09.0947450Z [484/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:09.1046320Z [485/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o 2025-11-03T15:53:09.1135340Z [486/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o 2025-11-03T15:53:09.1247720Z [487/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2025-11-03T15:53:09.1250260Z [488/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2025-11-03T15:53:09.1374970Z [489/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2025-11-03T15:53:09.1378680Z [490/5269] 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-11-03T15:53:09.1609680Z [491/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:09.1879680Z [492/5269] 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-11-03T15:53:09.2015950Z [493/5269] 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-11-03T15:53:09.2119650Z [494/5269] 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-11-03T15:53:09.2238190Z [495/5269] 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-11-03T15:53:09.2258160Z [496/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2025-11-03T15:53:09.2270020Z [497/5269] 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-11-03T15:53:09.2276780Z [498/5269] 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-11-03T15:53:09.2289540Z [499/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o 2025-11-03T15:53:09.2307920Z [500/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2025-11-03T15:53:09.2943400Z [501/5269] 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-11-03T15:53:09.3048620Z [502/5269] 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-11-03T15:53:09.3072570Z [503/5269] 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-11-03T15:53:09.3155390Z [504/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:09.3258420Z [505/5269] 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-11-03T15:53:09.3269840Z [506/5269] 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-11-03T15:53:09.3286030Z [507/5269] 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-11-03T15:53:09.3903360Z [508/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neonfma.c.o 2025-11-03T15:53:09.3929110Z [509/5269] 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-11-03T15:53:09.3934790Z [510/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neonfma.c.o 2025-11-03T15:53:09.4124900Z [511/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o 2025-11-03T15:53:09.4129170Z [512/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p8.c.o 2025-11-03T15:53:09.4132530Z [513/5269] 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-11-03T15:53:09.4191480Z [514/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p8.c.o 2025-11-03T15:53:09.4320720Z [515/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o 2025-11-03T15:53:09.4451910Z [516/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c8.c.o 2025-11-03T15:53:09.4685280Z [517/5269] 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-11-03T15:53:09.4794020Z [518/5269] 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-11-03T15:53:09.4976600Z [519/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c8.c.o 2025-11-03T15:53:09.4994860Z [520/5269] 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-11-03T15:53:09.5177200Z [521/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-11-03T15:53:09.5181250Z [522/5269] 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-11-03T15:53:09.5205680Z [523/5269] 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-11-03T15:53:09.5291950Z [524/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-11-03T15:53:09.5528140Z [525/5269] 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-11-03T15:53:09.5530080Z [526/5269] 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-11-03T15:53:09.5578560Z [527/5269] 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-11-03T15:53:09.5873400Z [528/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2025-11-03T15:53:09.6326440Z [529/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-11-03T15:53:09.6333540Z [530/5269] 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-11-03T15:53:09.6405330Z [531/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-11-03T15:53:09.6514150Z [532/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:09.6655390Z [533/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-11-03T15:53:09.6656280Z [534/5269] 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-11-03T15:53:09.6659790Z [535/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neonfma.c.o 2025-11-03T15:53:09.6872770Z [536/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-11-03T15:53:09.6941900Z [537/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:09.7127930Z [538/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-11-03T15:53:09.7188830Z [539/5269] 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-11-03T15:53:09.7352560Z [540/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-11-03T15:53:09.7435870Z [541/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-11-03T15:53:09.7513410Z [542/5269] 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-11-03T15:53:09.7525640Z [543/5269] 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-11-03T15:53:09.7541080Z [544/5269] 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-11-03T15:53:09.7759220Z [545/5269] 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-11-03T15:53:09.7807010Z [546/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-11-03T15:53:09.8369640Z [547/5269] 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-11-03T15:53:09.8473610Z [548/5269] 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-11-03T15:53:09.8476000Z [549/5269] 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-11-03T15:53:09.8530980Z [550/5269] 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-11-03T15:53:09.8585300Z [551/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:09.8655780Z [552/5269] 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-11-03T15:53:09.8939860Z [553/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o 2025-11-03T15:53:09.9201730Z [554/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neonfma.c.o 2025-11-03T15:53:09.9223530Z [555/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neonfma.c.o 2025-11-03T15:53:09.9418560Z [556/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2025-11-03T15:53:09.9427120Z [557/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-neon-c4.c.o 2025-11-03T15:53:09.9573540Z [558/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o 2025-11-03T15:53:09.9585020Z [559/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-neon-c4.c.o 2025-11-03T15:53:09.9659080Z [560/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-11-03T15:53:09.9665260Z [561/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-neon-c4.c.o 2025-11-03T15:53:10.0322370Z [562/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-11-03T15:53:10.0400450Z [563/5269] 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-11-03T15:53:10.0422420Z [564/5269] 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-11-03T15:53:10.0466430Z [565/5269] 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-11-03T15:53:10.0602440Z [566/5269] 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-11-03T15:53:10.0720320Z [567/5269] 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-11-03T15:53:10.0730060Z [568/5269] 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-11-03T15:53:10.0992470Z [569/5269] 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-11-03T15:53:10.1096100Z [570/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-11-03T15:53:10.1310080Z [571/5269] 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-11-03T15:53:10.1348960Z [572/5269] 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-11-03T15:53:10.1682020Z [573/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-11-03T15:53:10.1891970Z [574/5269] 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-11-03T15:53:10.1896140Z [575/5269] 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-11-03T15:53:10.1925660Z [576/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u32.c.o 2025-11-03T15:53:10.2101670Z [577/5269] 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-11-03T15:53:10.2103140Z [578/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u32.c.o 2025-11-03T15:53:10.2113430Z [579/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-11-03T15:53:10.2152320Z [580/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-11-03T15:53:10.2417320Z [581/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-11-03T15:53:10.2731950Z [582/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u32.c.o 2025-11-03T15:53:10.2948070Z [583/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-11-03T15:53:10.2958520Z [584/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-11-03T15:53:10.3042890Z [585/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-11-03T15:53:10.3189520Z [586/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-11-03T15:53:10.3330020Z [587/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-11-03T15:53:10.3370020Z [588/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u32.c.o 2025-11-03T15:53:10.3377320Z [589/5269] 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-11-03T15:53:10.3510540Z [590/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c16.c.o 2025-11-03T15:53:10.3529750Z [591/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc4.c.o 2025-11-03T15:53:10.3717410Z [592/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2025-11-03T15:53:10.3999990Z [593/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-11-03T15:53:10.4169810Z [594/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc4.c.o 2025-11-03T15:53:10.4435710Z [595/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-11-03T15:53:10.4499780Z [596/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc4.c.o 2025-11-03T15:53:10.4511330Z [597/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon.c.o 2025-11-03T15:53:10.4670790Z [598/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-pipelined.c.o 2025-11-03T15:53:10.4686630Z [599/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-11-03T15:53:10.4705540Z [600/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x2-minmax-aarch64-neonfma.c.o 2025-11-03T15:53:10.4859340Z [601/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-11-03T15:53:10.4903590Z [602/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x4-minmax-aarch64-neonfma.c.o 2025-11-03T15:53:10.5161330Z [603/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-11-03T15:53:10.5412620Z [604/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-11-03T15:53:10.5643700Z [605/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-neon-u8.c.o 2025-11-03T15:53:10.5760090Z [606/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-neon-u8.c.o 2025-11-03T15:53:10.5801060Z [607/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-11-03T15:53:10.5812530Z [608/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-11-03T15:53:10.6071430Z [609/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-11-03T15:53:10.6174780Z [610/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u8.c.o 2025-11-03T15:53:10.6280150Z [611/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-neon-u8.c.o 2025-11-03T15:53:10.6302310Z [612/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u8.c.o 2025-11-03T15:53:10.6311370Z [613/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-11-03T15:53:10.6788300Z [614/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-11-03T15:53:10.6889730Z [615/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u8.c.o 2025-11-03T15:53:10.6996300Z [616/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-neon-u8.c.o 2025-11-03T15:53:10.7096160Z [617/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2025-11-03T15:53:10.7178760Z [618/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-neon-u8.c.o 2025-11-03T15:53:10.7184890Z [619/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-11-03T15:53:10.7361850Z [620/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-neon-u8.c.o 2025-11-03T15:53:10.7488910Z [621/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-neon-u8.c.o 2025-11-03T15:53:10.7536890Z [622/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-11-03T15:53:10.7896830Z [623/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-11-03T15:53:10.8019670Z [624/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-11-03T15:53:10.8072430Z [625/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-neon-u8.c.o 2025-11-03T15:53:10.8117340Z [626/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-11-03T15:53:10.8256050Z [627/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-11-03T15:53:10.8313490Z [628/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u8.c.o 2025-11-03T15:53:10.8401500Z [629/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u8.c.o 2025-11-03T15:53:10.8628880Z [630/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-11-03T15:53:10.8777580Z [631/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u8.c.o 2025-11-03T15:53:10.9004030Z [632/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u8.c.o 2025-11-03T15:53:10.9060670Z [633/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-11-03T15:53:10.9232770Z [634/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2025-11-03T15:53:10.9339840Z [635/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-11-03T15:53:10.9464440Z [636/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-11-03T15:53:10.9617330Z [637/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u8.c.o 2025-11-03T15:53:10.9619340Z [638/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u8.c.o 2025-11-03T15:53:10.9621770Z [639/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-neon-u8.c.o 2025-11-03T15:53:11.0090640Z [640/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2025-11-03T15:53:11.0097940Z [641/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-11-03T15:53:11.0290900Z [642/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-neon-u8.c.o 2025-11-03T15:53:11.0317470Z [643/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-neon-u8.c.o 2025-11-03T15:53:11.0374320Z [644/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-11-03T15:53:11.0639540Z [645/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-11-03T15:53:11.0646110Z [646/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-neon-u16.c.o 2025-11-03T15:53:11.0735010Z [647/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-neon.c.o 2025-11-03T15:53:11.0878260Z [648/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-11-03T15:53:11.0903970Z [649/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-neon.c.o 2025-11-03T15:53:11.1338320Z [650/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-11-03T15:53:11.1498710Z [651/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-neon.c.o 2025-11-03T15:53:11.1522180Z [652/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u16.c.o 2025-11-03T15:53:11.1550180Z [653/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u8.c.o 2025-11-03T15:53:11.1791580Z [654/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2025-11-03T15:53:11.1886460Z [655/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-scalar-exp.c.o 2025-11-03T15:53:11.1948440Z [656/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-11-03T15:53:11.2165860Z [657/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u8.c.o 2025-11-03T15:53:11.2355750Z [658/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u2.c.o 2025-11-03T15:53:11.2505300Z [659/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-neon-u16.c.o 2025-11-03T15:53:11.2508310Z [660/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-11-03T15:53:11.2671080Z [661/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2025-11-03T15:53:11.2783150Z [662/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-neon-rational-3-3-div.c.o 2025-11-03T15:53:11.2920020Z [663/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u8.c.o 2025-11-03T15:53:11.2938460Z [664/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-11-03T15:53:11.2950660Z [665/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-11-03T15:53:11.3178290Z [666/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-neon-rational-12-10-div.c.o 2025-11-03T15:53:11.3244190Z [667/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neon-2x.c.o 2025-11-03T15:53:11.3463130Z [668/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2025-11-03T15:53:11.3661110Z [669/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neonfma-2x.c.o 2025-11-03T15:53:11.3890070Z [670/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u8.c.o 2025-11-03T15:53:11.3991230Z [671/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neon-u8.c.o 2025-11-03T15:53:11.4088170Z [672/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-11-03T15:53:11.4209340Z [673/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u8.c.o 2025-11-03T15:53:11.4372350Z [674/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u4.c.o 2025-11-03T15:53:11.4380070Z [675/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2025-11-03T15:53:11.4652480Z [676/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neon-u8.c.o 2025-11-03T15:53:11.4810080Z [677/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neon-u8.c.o 2025-11-03T15:53:11.4819210Z [678/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u8.c.o 2025-11-03T15:53:11.4833170Z [679/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-11-03T15:53:11.5306150Z [680/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u8.c.o 2025-11-03T15:53:11.5315240Z [681/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-11-03T15:53:11.5347110Z [682/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2025-11-03T15:53:11.5509230Z [683/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-11-03T15:53:11.5525780Z [684/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neon-u8.c.o 2025-11-03T15:53:11.5561820Z [685/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u4.c.o 2025-11-03T15:53:11.5701450Z [686/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u16.c.o 2025-11-03T15:53:11.5850730Z [687/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-11-03T15:53:11.5956820Z [688/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2025-11-03T15:53:11.5970990Z [689/5269] 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-11-03T15:53:11.6464050Z [690/5269] 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-11-03T15:53:11.6611920Z [691/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u4.c.o 2025-11-03T15:53:11.6647690Z [692/5269] 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-11-03T15:53:11.6680680Z [693/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u1.c.o 2025-11-03T15:53:11.6890480Z [694/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-11-03T15:53:11.6935850Z [695/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-neon.c.o 2025-11-03T15:53:11.7036390Z [696/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-div.c.o 2025-11-03T15:53:11.7063380Z [697/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-11-03T15:53:11.7117790Z [698/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-11-03T15:53:11.7472660Z [699/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-neon.c.o 2025-11-03T15:53:11.7697340Z [700/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-11-03T15:53:11.7948500Z [701/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c.o 2025-11-03T15:53:11.7949410Z /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-11-03T15:53:11.7952320Z 24 | } 2025-11-03T15:53:11.7952450Z | ^ 2025-11-03T15:53:11.7952990Z /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-11-03T15:53:11.7953580Z 34 | } 2025-11-03T15:53:11.7953690Z | ^ 2025-11-03T15:53:11.7953810Z 2 warnings generated. 2025-11-03T15:53:11.7967010Z [702/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-neon.c.o 2025-11-03T15:53:11.8338870Z [703/5269] 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-11-03T15:53:11.8467890Z [704/5269] 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-11-03T15:53:11.8518930Z [705/5269] 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-11-03T15:53:11.8524330Z [706/5269] 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-11-03T15:53:11.8672940Z [707/5269] 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-11-03T15:53:11.8865630Z [708/5269] 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-11-03T15:53:11.8972780Z [709/5269] 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-11-03T15:53:11.9327970Z [710/5269] 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-11-03T15:53:11.9340100Z [711/5269] 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-11-03T15:53:11.9356870Z [712/5269] 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-11-03T15:53:11.9410950Z [713/5269] 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-11-03T15:53:11.9633520Z [714/5269] 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-11-03T15:53:11.9708080Z [715/5269] 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-11-03T15:53:12.0103040Z [716/5269] 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-11-03T15:53:12.0202140Z [717/5269] 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-11-03T15:53:12.0305290Z [718/5269] 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-11-03T15:53:12.0408150Z [719/5269] 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-11-03T15:53:12.0507510Z [720/5269] 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-11-03T15:53:12.0988540Z [721/5269] 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-11-03T15:53:12.1022040Z [722/5269] 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-11-03T15:53:12.1052700Z [723/5269] 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-11-03T15:53:12.1101730Z [724/5269] 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-11-03T15:53:12.1298500Z [725/5269] 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-11-03T15:53:12.1310190Z [726/5269] 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-11-03T15:53:12.1430640Z [727/5269] 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-11-03T15:53:12.1590490Z [728/5269] 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-11-03T15:53:12.1636760Z [729/5269] 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-11-03T15:53:12.1637870Z [730/5269] 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-11-03T15:53:12.2523680Z [731/5269] 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-11-03T15:53:12.2638510Z [732/5269] 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-11-03T15:53:12.2676880Z [733/5269] 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-11-03T15:53:12.2679300Z [734/5269] 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-11-03T15:53:12.2681430Z [735/5269] 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-11-03T15:53:12.2688520Z [736/5269] 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-11-03T15:53:12.2722060Z [737/5269] 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-11-03T15:53:12.3086010Z [738/5269] 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-11-03T15:53:12.3513070Z [739/5269] 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-11-03T15:53:12.3539120Z [740/5269] 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-11-03T15:53:12.3751830Z [741/5269] 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-11-03T15:53:12.3792890Z [742/5269] 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-11-03T15:53:12.3967230Z [743/5269] 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-11-03T15:53:12.4089650Z [744/5269] 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-11-03T15:53:12.4094120Z [745/5269] 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-11-03T15:53:12.4098940Z [746/5269] 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-11-03T15:53:12.4102980Z [747/5269] 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-11-03T15:53:12.4812950Z [748/5269] 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-11-03T15:53:12.5015240Z [749/5269] 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-11-03T15:53:12.5016090Z [750/5269] 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-11-03T15:53:12.5226740Z [751/5269] 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-11-03T15:53:12.5262400Z [752/5269] 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-11-03T15:53:12.5397070Z [753/5269] 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-11-03T15:53:12.5398890Z [754/5269] 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-11-03T15:53:12.5456710Z [755/5269] 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-11-03T15:53:12.5636650Z [756/5269] 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-11-03T15:53:12.5647360Z [757/5269] 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-11-03T15:53:12.5865290Z [758/5269] 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-11-03T15:53:12.6219130Z [759/5269] 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-11-03T15:53:12.6393540Z [760/5269] 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-11-03T15:53:12.6406890Z [761/5269] 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-11-03T15:53:12.6441720Z [762/5269] 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-11-03T15:53:12.6588860Z [763/5269] 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-11-03T15:53:12.6609660Z [764/5269] 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-11-03T15:53:12.6612070Z [765/5269] 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-11-03T15:53:12.6789570Z [766/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:12.6957490Z [767/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:12.7273610Z [768/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:12.7486220Z [769/5269] 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-11-03T15:53:12.7642750Z [770/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:12.7757980Z [771/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:12.7776370Z [772/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:12.7789940Z [773/5269] 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-11-03T15:53:12.7935690Z [774/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u32.c.o 2025-11-03T15:53:12.8072610Z [775/5269] 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-11-03T15:53:12.8074430Z [776/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u1.c.o 2025-11-03T15:53:12.8229540Z [777/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u32.c.o 2025-11-03T15:53:12.8296590Z [778/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2025-11-03T15:53:12.8545700Z [779/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-scalar.c.o 2025-11-03T15:53:12.8787390Z [780/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-goi-scalar.c.o 2025-11-03T15:53:12.8936980Z [781/5269] 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-11-03T15:53:12.9010420Z [782/5269] 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-11-03T15:53:12.9113820Z [783/5269] 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-11-03T15:53:12.9222330Z [784/5269] 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-11-03T15:53:12.9300360Z [785/5269] 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-11-03T15:53:12.9588890Z [786/5269] 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-11-03T15:53:12.9669670Z [787/5269] 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-11-03T15:53:12.9771530Z [788/5269] 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-11-03T15:53:13.0005980Z [789/5269] 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-11-03T15:53:13.0100590Z [790/5269] 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-11-03T15:53:13.0150850Z [791/5269] 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-11-03T15:53:13.0258290Z [792/5269] 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-11-03T15:53:13.0286670Z [793/5269] 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-11-03T15:53:13.0312340Z [794/5269] 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-11-03T15:53:13.0550330Z [795/5269] 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-11-03T15:53:13.0757940Z [796/5269] 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-11-03T15:53:13.1037970Z [797/5269] 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-11-03T15:53:13.1126080Z [798/5269] 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-11-03T15:53:13.1140200Z [799/5269] 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-11-03T15:53:13.1382930Z [800/5269] 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-11-03T15:53:13.1450920Z [801/5269] 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-11-03T15:53:13.1497100Z [802/5269] 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-11-03T15:53:13.1564730Z [803/5269] 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-11-03T15:53:13.1658710Z [804/5269] 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-11-03T15:53:13.1721700Z [805/5269] 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-11-03T15:53:13.1728760Z [806/5269] 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-11-03T15:53:13.2208910Z [807/5269] 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-11-03T15:53:13.2318350Z [808/5269] 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-11-03T15:53:13.2446890Z [809/5269] 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-11-03T15:53:13.2449180Z [810/5269] 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-11-03T15:53:13.2582840Z [811/5269] 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-11-03T15:53:13.2627090Z [812/5269] 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-11-03T15:53:13.2628840Z [813/5269] 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-11-03T15:53:13.2819340Z [814/5269] 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-11-03T15:53:13.2896790Z [815/5269] 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-11-03T15:53:13.3101400Z [816/5269] 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-11-03T15:53:13.3153680Z [817/5269] 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-11-03T15:53:13.3878750Z [818/5269] 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-11-03T15:53:13.3984270Z [819/5269] 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-11-03T15:53:13.3989590Z [820/5269] 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-11-03T15:53:13.4093410Z [821/5269] 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-11-03T15:53:13.4096020Z [822/5269] 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-11-03T15:53:13.4096940Z [823/5269] 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-11-03T15:53:13.4479850Z [824/5269] 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-11-03T15:53:13.4847410Z [825/5269] 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-11-03T15:53:13.4848750Z [826/5269] 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-11-03T15:53:13.4850120Z [827/5269] 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-11-03T15:53:13.4851360Z [828/5269] 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-11-03T15:53:13.4852280Z [829/5269] 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-11-03T15:53:13.4951170Z [830/5269] 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-11-03T15:53:13.5409340Z [831/5269] 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-11-03T15:53:13.5485170Z [832/5269] 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-11-03T15:53:13.5494420Z [833/5269] 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-11-03T15:53:13.5499920Z [834/5269] 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-11-03T15:53:13.5503840Z [835/5269] 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-11-03T15:53:13.5579670Z [836/5269] 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-11-03T15:53:13.5700030Z [837/5269] 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-11-03T15:53:13.6170560Z [838/5269] 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-11-03T15:53:13.6268100Z [839/5269] 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-11-03T15:53:13.6362720Z [840/5269] 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-11-03T15:53:13.6566510Z [841/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-11-03T15:53:13.6610350Z [842/5269] 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-11-03T15:53:13.6786150Z [843/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c32.c.o 2025-11-03T15:53:13.6799600Z [844/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neon-u32-acc2.c.o 2025-11-03T15:53:13.6806100Z [845/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u32-acc2.c.o 2025-11-03T15:53:13.7026600Z [846/5269] 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-11-03T15:53:13.7032150Z [847/5269] 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-11-03T15:53:13.7319410Z [848/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u4.c.o 2025-11-03T15:53:13.7577400Z [849/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-11-03T15:53:13.7586720Z [850/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u4.c.o 2025-11-03T15:53:13.7614880Z [851/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u32.c.o 2025-11-03T15:53:13.7887100Z [852/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u16.c.o 2025-11-03T15:53:13.7991000Z [853/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2025-11-03T15:53:13.8112900Z [854/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2025-11-03T15:53:13.8144440Z [855/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u32.c.o 2025-11-03T15:53:13.8157060Z [856/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u16.c.o 2025-11-03T15:53:13.8374390Z [857/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2025-11-03T15:53:13.8558750Z [858/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u32.c.o 2025-11-03T15:53:13.8721690Z [859/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-11-03T15:53:13.8857140Z [860/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2025-11-03T15:53:13.8884100Z [861/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-11-03T15:53:13.9072660Z [862/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u32.c.o 2025-11-03T15:53:13.9125200Z [863/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-11-03T15:53:13.9329170Z [864/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2025-11-03T15:53:13.9353130Z [865/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-11-03T15:53:13.9605790Z [866/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-11-03T15:53:13.9734230Z [867/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o 2025-11-03T15:53:13.9793280Z [868/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o 2025-11-03T15:53:13.9973380Z [869/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:14.0017230Z [870/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-neon-c8.c.o 2025-11-03T15:53:14.0052380Z [871/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-neon-c8.c.o 2025-11-03T15:53:14.0200030Z [872/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:14.0219930Z [873/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:14.0699240Z [874/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:14.0784700Z [875/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:14.0873250Z [876/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:14.0912100Z [877/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:14.0958800Z [878/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u1.c.o 2025-11-03T15:53:14.1081100Z [879/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2025-11-03T15:53:14.1227020Z [880/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:14.1278570Z [881/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u32.c.o 2025-11-03T15:53:14.1495470Z [882/5269] 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-11-03T15:53:14.1665340Z [883/5269] 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-11-03T15:53:14.1973810Z [884/5269] 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-11-03T15:53:14.1987350Z [885/5269] 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-11-03T15:53:14.2163350Z [886/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:14.2176210Z [887/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:14.2341300Z [888/5269] 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-11-03T15:53:14.2362630Z [889/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:14.2395490Z [890/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:14.2409260Z [891/5269] 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-11-03T15:53:14.2612950Z [892/5269] 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-11-03T15:53:14.2767490Z [893/5269] 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-11-03T15:53:14.3220960Z [894/5269] 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-11-03T15:53:14.3382840Z [895/5269] 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-11-03T15:53:14.3541780Z [896/5269] 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-11-03T15:53:14.3590200Z [897/5269] 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-11-03T15:53:14.3659700Z [898/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:14.3668210Z [899/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:14.3699360Z [900/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:14.3739270Z [901/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:14.3865560Z [902/5269] 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-11-03T15:53:14.3954230Z [903/5269] 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-11-03T15:53:14.3979310Z [904/5269] 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-11-03T15:53:14.4149240Z [905/5269] 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-11-03T15:53:14.4504070Z [906/5269] 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-11-03T15:53:14.4826450Z [907/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-11-03T15:53:14.5041310Z [908/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u16.c.o 2025-11-03T15:53:14.5075530Z [909/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-neon-u32-acc2.c.o 2025-11-03T15:53:14.5144930Z [910/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u32.c.o 2025-11-03T15:53:14.5203000Z [911/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-11-03T15:53:14.5297870Z [912/5269] 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-11-03T15:53:14.5300770Z [913/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-11-03T15:53:14.5347220Z [914/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u32.c.o 2025-11-03T15:53:14.5541510Z [915/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u16.c.o 2025-11-03T15:53:14.5775640Z [916/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-11-03T15:53:14.6158300Z [917/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-11-03T15:53:14.6271160Z [918/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u32.c.o 2025-11-03T15:53:14.6330570Z [919/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2025-11-03T15:53:14.6360920Z [920/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u16.c.o 2025-11-03T15:53:14.6496430Z [921/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-11-03T15:53:14.6500280Z [922/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u32.c.o 2025-11-03T15:53:14.6501840Z [923/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-11-03T15:53:14.6668530Z [924/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u32.c.o 2025-11-03T15:53:14.6743300Z [925/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2025-11-03T15:53:14.6916660Z [926/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-11-03T15:53:14.7047160Z [927/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-11-03T15:53:14.7548030Z [928/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-11-03T15:53:14.7563980Z [929/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-scalar.c.o 2025-11-03T15:53:14.7582060Z [930/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-11-03T15:53:14.7623910Z [931/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-11-03T15:53:14.7786460Z [932/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2025-11-03T15:53:14.7792260Z [933/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c16.c.o 2025-11-03T15:53:14.7831840Z [934/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-neon.c.o 2025-11-03T15:53:14.8029970Z [935/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-11-03T15:53:14.8190710Z [936/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c8.c.o 2025-11-03T15:53:14.8489840Z [937/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-neon-c16.c.o 2025-11-03T15:53:14.8703920Z [938/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2025-11-03T15:53:14.8754820Z [939/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-11-03T15:53:14.8870480Z [940/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c8.c.o 2025-11-03T15:53:14.8984750Z [941/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-neon-u64.c.o 2025-11-03T15:53:14.8987790Z [942/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c16.c.o 2025-11-03T15:53:14.9086640Z [943/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-neon-c16.c.o 2025-11-03T15:53:14.9190000Z [944/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-11-03T15:53:14.9462160Z [945/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2025-11-03T15:53:14.9497600Z [946/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-neon-u16.c.o 2025-11-03T15:53:14.9633800Z [947/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-11-03T15:53:14.9762020Z [948/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-neon-u64.c.o 2025-11-03T15:53:14.9775940Z [949/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-11-03T15:53:14.9975590Z [950/5269] 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-11-03T15:53:15.0034920Z [951/5269] 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-11-03T15:53:15.0254860Z [952/5269] 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-11-03T15:53:15.0262550Z [953/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-11-03T15:53:15.0479340Z [954/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-dec-zip-neon.c.o 2025-11-03T15:53:15.0551790Z [955/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-11-03T15:53:15.0759690Z [956/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-2x2-neon-tbl64.c.o 2025-11-03T15:53:15.0987410Z [957/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-aarch64-neon-tbl128.c.o 2025-11-03T15:53:15.0991720Z [958/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-pack-lh/x32-packlh-neonsme2.c.o 2025-11-03T15:53:15.0995200Z /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-11-03T15:53:15.0998730Z 46 | } 2025-11-03T15:53:15.0998990Z | ^ 2025-11-03T15:53:15.0999200Z 1 warning generated. 2025-11-03T15:53:15.1007590Z [959/5269] 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-11-03T15:53:15.1229270Z [960/5269] 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-11-03T15:53:15.1231710Z [961/5269] 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-11-03T15:53:15.1443810Z [962/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-11-03T15:53:15.1570720Z [963/5269] 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-11-03T15:53:15.1633490Z [964/5269] 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-11-03T15:53:15.1796760Z [965/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-dec-zip-neon.c.o 2025-11-03T15:53:15.2168790Z [966/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-neon.c.o 2025-11-03T15:53:15.2184640Z [967/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-aarch64-neon-tbl128.c.o 2025-11-03T15:53:15.2330700Z [968/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2025-11-03T15:53:15.2337810Z [969/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-11-03T15:53:15.2386720Z [970/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-neon.c.o 2025-11-03T15:53:15.2491000Z [971/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2025-11-03T15:53:15.2563350Z [972/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-neon.c.o 2025-11-03T15:53:15.2681900Z [973/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2025-11-03T15:53:15.2736570Z [974/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-neon.c.o 2025-11-03T15:53:15.2897460Z [975/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-neon.c.o 2025-11-03T15:53:15.3204550Z [976/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2025-11-03T15:53:15.3384730Z [977/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-dec-zip-neon.c.o 2025-11-03T15:53:15.3439090Z [978/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-11-03T15:53:15.3446600Z [979/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-11-03T15:53:15.3607200Z [980/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-dec-zip-neon.c.o 2025-11-03T15:53:15.3656440Z [981/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u64.c.o 2025-11-03T15:53:15.3658740Z [982/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-11-03T15:53:15.3829980Z [983/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-11-03T15:53:15.3927310Z [984/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-aarch64-neon-f32qp8-u2.c.o 2025-11-03T15:53:15.3988210Z [985/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-11-03T15:53:15.4296780Z [986/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-11-03T15:53:15.4456030Z [987/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-11-03T15:53:15.4467360Z [988/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-11-03T15:53:15.4648130Z [989/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-dec-zip-neon.c.o 2025-11-03T15:53:15.4695110Z [990/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-neon.c.o 2025-11-03T15:53:15.4698490Z [991/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2025-11-03T15:53:15.4838960Z [992/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2025-11-03T15:53:15.4883180Z [993/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-neon.c.o 2025-11-03T15:53:15.5001390Z [994/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2025-11-03T15:53:15.5249740Z [995/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-neon.c.o 2025-11-03T15:53:15.5458850Z [996/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2025-11-03T15:53:15.5479480Z [997/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-neon.c.o 2025-11-03T15:53:15.5634530Z [998/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-11-03T15:53:15.5733230Z [999/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-11-03T15:53:15.5736260Z [1000/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-neon-u64.c.o 2025-11-03T15:53:15.5892010Z [1001/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-11-03T15:53:15.5925010Z [1002/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2025-11-03T15:53:15.5942070Z [1003/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-11-03T15:53:15.6038620Z [1004/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p16-neon-u16.c.o 2025-11-03T15:53:15.6235720Z [1005/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-11-03T15:53:15.6374610Z [1006/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-11-03T15:53:15.6379800Z [1007/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-11-03T15:53:15.6643180Z [1008/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-11-03T15:53:15.6720750Z [1009/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-11-03T15:53:15.6804050Z [1010/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-11-03T15:53:15.6848780Z [1011/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-11-03T15:53:15.6981190Z [1012/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u2.c.o 2025-11-03T15:53:15.7129710Z [1013/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-11-03T15:53:15.7130490Z [1014/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u3.c.o 2025-11-03T15:53:15.7235910Z [1015/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u1.c.o 2025-11-03T15:53:15.7371890Z [1016/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u2.c.o 2025-11-03T15:53:15.7392020Z [1017/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u3.c.o 2025-11-03T15:53:15.7626480Z [1018/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u1.c.o 2025-11-03T15:53:15.7682900Z [1019/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u4.c.o 2025-11-03T15:53:15.7918240Z [1020/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u2.c.o 2025-11-03T15:53:15.7926090Z [1021/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u3.c.o 2025-11-03T15:53:15.7968120Z [1022/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u1.c.o 2025-11-03T15:53:15.8176990Z [1023/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u2.c.o 2025-11-03T15:53:15.8412910Z [1024/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u3-acc3.c.o 2025-11-03T15:53:15.8506240Z [1025/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u3.c.o 2025-11-03T15:53:15.8573020Z [1026/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc2.c.o 2025-11-03T15:53:15.8687950Z [1027/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u1.c.o 2025-11-03T15:53:15.8703920Z [1028/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc4.c.o 2025-11-03T15:53:15.8886200Z [1029/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u2-acc2.c.o 2025-11-03T15:53:15.9034160Z [1030/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u3-acc3.c.o 2025-11-03T15:53:15.9064840Z [1031/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc2.c.o 2025-11-03T15:53:15.9104940Z [1032/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u1.c.o 2025-11-03T15:53:15.9381390Z [1033/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc4.c.o 2025-11-03T15:53:15.9554330Z [1034/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u1.c.o 2025-11-03T15:53:15.9561360Z [1035/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc4.c.o 2025-11-03T15:53:15.9620220Z [1036/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc2.c.o 2025-11-03T15:53:15.9724300Z [1037/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u3-acc3.c.o 2025-11-03T15:53:15.9743760Z [1038/5269] Linking C static library lib/libmicrokernels-prod.a 2025-11-03T15:53:15.9941170Z [1039/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.o 2025-11-03T15:53:15.9972300Z [1040/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.o 2025-11-03T15:53:16.0339700Z [1041/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.o 2025-11-03T15:53:16.0349420Z [1042/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.o 2025-11-03T15:53:16.0583950Z [1043/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.o 2025-11-03T15:53:16.0792690Z [1044/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.o 2025-11-03T15:53:16.0798230Z [1045/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.o 2025-11-03T15:53:16.0855620Z [1046/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar.c.o 2025-11-03T15:53:16.0980550Z [1047/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar.c.o 2025-11-03T15:53:16.0985750Z [1048/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.o 2025-11-03T15:53:16.1065360Z [1049/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar.c.o 2025-11-03T15:53:16.1132600Z [1050/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar.c.o 2025-11-03T15:53:16.1365970Z [1051/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar-acc2.c.o 2025-11-03T15:53:16.1415690Z [1052/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar.c.o 2025-11-03T15:53:16.1648270Z [1053/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar.c.o 2025-11-03T15:53:16.1932590Z [1054/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar.c.o 2025-11-03T15:53:16.2046930Z [1055/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar.c.o 2025-11-03T15:53:16.2048860Z [1056/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar-acc2.c.o 2025-11-03T15:53:16.2063140Z [1057/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar.c.o 2025-11-03T15:53:16.2077100Z [1058/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar-acc2.c.o 2025-11-03T15:53:16.2272560Z [1059/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar.c.o 2025-11-03T15:53:16.2284750Z [1060/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar-acc2.c.o 2025-11-03T15:53:16.2518690Z [1061/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.o 2025-11-03T15:53:16.2733260Z [1062/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.o 2025-11-03T15:53:16.2896800Z [1063/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar.c.o 2025-11-03T15:53:16.3038080Z [1064/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.o 2025-11-03T15:53:16.3178380Z [1065/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar.c.o 2025-11-03T15:53:16.3185800Z [1066/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.o 2025-11-03T15:53:16.3196800Z [1067/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.o 2025-11-03T15:53:16.3391440Z [1068/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar.c.o 2025-11-03T15:53:16.3411850Z [1069/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.o 2025-11-03T15:53:16.3459180Z [1070/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.o 2025-11-03T15:53:16.3688000Z [1071/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.o 2025-11-03T15:53:16.3939460Z [1072/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.o 2025-11-03T15:53:16.4066130Z [1073/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar.c.o 2025-11-03T15:53:16.4240950Z [1074/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar.c.o 2025-11-03T15:53:16.4241840Z [1075/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar-acc2.c.o 2025-11-03T15:53:16.4508150Z [1076/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar.c.o 2025-11-03T15:53:16.4517220Z [1077/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar.c.o 2025-11-03T15:53:16.4567080Z [1078/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar.c.o 2025-11-03T15:53:16.4647860Z [1079/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar-acc2.c.o 2025-11-03T15:53:16.4757010Z [1080/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar.c.o 2025-11-03T15:53:16.4860760Z [1081/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar.c.o 2025-11-03T15:53:16.5088150Z [1082/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar-acc2.c.o 2025-11-03T15:53:16.5094740Z [1083/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar.c.o 2025-11-03T15:53:16.5259050Z [1084/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar.c.o 2025-11-03T15:53:16.5496130Z [1085/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar-acc2.c.o 2025-11-03T15:53:16.5805740Z [1086/5269] 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-11-03T15:53:16.5812180Z [1087/5269] 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-11-03T15:53:16.5828270Z [1088/5269] 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-11-03T15:53:16.5855920Z [1089/5269] 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-11-03T15:53:16.5879880Z [1090/5269] 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-11-03T15:53:16.6292600Z [1091/5269] 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-11-03T15:53:16.6314070Z [1092/5269] 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-11-03T15:53:16.6315230Z [1093/5269] 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-11-03T15:53:16.6352240Z [1094/5269] 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-11-03T15:53:16.6859140Z [1095/5269] 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-11-03T15:53:16.6900950Z [1096/5269] 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-11-03T15:53:16.7046200Z [1097/5269] 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-11-03T15:53:16.7049040Z [1098/5269] 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-11-03T15:53:16.7079920Z [1099/5269] 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-11-03T15:53:16.7213160Z [1100/5269] 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-11-03T15:53:16.7305040Z [1101/5269] 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-11-03T15:53:16.7380730Z [1102/5269] 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-11-03T15:53:16.7434750Z [1103/5269] 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-11-03T15:53:16.7532850Z [1104/5269] 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-11-03T15:53:16.8019360Z [1105/5269] 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-11-03T15:53:16.8034140Z [1106/5269] 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-11-03T15:53:16.8264490Z [1107/5269] 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-11-03T15:53:16.8266580Z [1108/5269] 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-11-03T15:53:16.8281180Z [1109/5269] 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-11-03T15:53:16.8503930Z [1110/5269] 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-11-03T15:53:16.8513550Z [1111/5269] 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-11-03T15:53:16.8527380Z [1112/5269] 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-11-03T15:53:16.8538000Z [1113/5269] 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-11-03T15:53:16.8561840Z [1114/5269] 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-11-03T15:53:16.9127380Z [1115/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u1.c.o 2025-11-03T15:53:16.9137870Z [1116/5269] 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-11-03T15:53:16.9353470Z [1117/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u3.c.o 2025-11-03T15:53:16.9374990Z [1118/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u2.c.o 2025-11-03T15:53:16.9576980Z [1119/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u4.c.o 2025-11-03T15:53:16.9623650Z [1120/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u1.c.o 2025-11-03T15:53:16.9828160Z [1121/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-relu-scalar.c.o 2025-11-03T15:53:16.9830070Z [1122/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-2x4-minmax-scalar.c.o 2025-11-03T15:53:16.9850120Z [1123/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u3.c.o 2025-11-03T15:53:16.9933620Z [1124/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x4-minmax-scalar.c.o 2025-11-03T15:53:17.0133810Z [1125/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p1.c.o 2025-11-03T15:53:17.0185900Z [1126/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c1.c.o 2025-11-03T15:53:17.0291760Z [1127/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p2.c.o 2025-11-03T15:53:17.0437330Z [1128/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x4-minmax-scalar.c.o 2025-11-03T15:53:17.0639130Z [1129/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c4.c.o 2025-11-03T15:53:17.0843720Z [1130/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-relu-scalar.c.o 2025-11-03T15:53:17.0895040Z [1131/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-2x4-minmax-scalar.c.o 2025-11-03T15:53:17.1006030Z [1132/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x2-minmax-scalar.c.o 2025-11-03T15:53:17.1167850Z [1133/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-2x4-minmax-scalar.c.o 2025-11-03T15:53:17.1339790Z [1134/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-scalar.c.o 2025-11-03T15:53:17.1358490Z [1135/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-relu-scalar.c.o 2025-11-03T15:53:17.1428380Z [1136/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x4-minmax-scalar.c.o 2025-11-03T15:53:17.1446040Z [1137/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-scalar.c.o 2025-11-03T15:53:17.1676530Z [1138/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-minmax-scalar.c.o 2025-11-03T15:53:17.1949840Z [1139/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-3x3-minmax-scalar.c.o 2025-11-03T15:53:17.1959820Z [1140/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-relu-scalar.c.o 2025-11-03T15:53:17.2225030Z [1141/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-scalar.c.o 2025-11-03T15:53:17.2244410Z [1142/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-scalar.c.o 2025-11-03T15:53:17.2387190Z [1143/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-relu-scalar.c.o 2025-11-03T15:53:17.2439330Z [1144/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-1x1-minmax-scalar.c.o 2025-11-03T15:53:17.2558430Z [1145/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-relu-scalar.c.o 2025-11-03T15:53:17.2661200Z [1146/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-scalar.c.o 2025-11-03T15:53:17.2709150Z [1147/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-2x1-minmax-scalar.c.o 2025-11-03T15:53:17.2909850Z [1148/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-scalar.c.o 2025-11-03T15:53:17.3070080Z [1149/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-4x1-minmax-scalar.c.o 2025-11-03T15:53:17.3152310Z [1150/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x1-minmax-scalar.c.o 2025-11-03T15:53:17.3206690Z [1151/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x2-minmax-scalar.c.o 2025-11-03T15:53:17.3269930Z [1152/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x4-minmax-scalar.c.o 2025-11-03T15:53:17.3340890Z [1153/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u1.c.o 2025-11-03T15:53:17.3365780Z [1154/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u2.c.o 2025-11-03T15:53:17.3551230Z [1155/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u3.c.o 2025-11-03T15:53:17.3618750Z [1156/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u4.c.o 2025-11-03T15:53:17.3705540Z [1157/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u2.c.o 2025-11-03T15:53:17.4169630Z [1158/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u3.c.o 2025-11-03T15:53:17.4195040Z [1159/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u2.c.o 2025-11-03T15:53:17.4350240Z [1160/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u2.c.o 2025-11-03T15:53:17.4363240Z [1161/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u3.c.o 2025-11-03T15:53:17.4384720Z [1162/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u1.c.o 2025-11-03T15:53:17.4416150Z [1163/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u1.c.o 2025-11-03T15:53:17.4653470Z [1164/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u4.c.o 2025-11-03T15:53:17.4656950Z [1165/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u3.c.o 2025-11-03T15:53:17.4662440Z [1166/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u2.c.o 2025-11-03T15:53:17.5145390Z [1167/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u3.c.o 2025-11-03T15:53:17.5165590Z [1168/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u2.c.o 2025-11-03T15:53:17.5203780Z [1169/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u1.c.o 2025-11-03T15:53:17.5371060Z [1170/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.o 2025-11-03T15:53:17.5375220Z [1171/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u3.c.o 2025-11-03T15:53:17.5396670Z [1172/5269] 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-11-03T15:53:17.5555390Z [1173/5269] 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-11-03T15:53:17.5601290Z [1174/5269] 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-11-03T15:53:17.5616320Z [1175/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.o 2025-11-03T15:53:17.5776940Z [1176/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.o 2025-11-03T15:53:17.6286780Z [1177/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u2-acc2.c.o 2025-11-03T15:53:17.6331340Z [1178/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.o 2025-11-03T15:53:17.6411260Z [1179/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc2.c.o 2025-11-03T15:53:17.6413950Z [1180/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u3-acc3.c.o 2025-11-03T15:53:17.6415210Z [1181/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u1.c.o 2025-11-03T15:53:17.6551810Z [1182/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u1.c.o 2025-11-03T15:53:17.6618630Z [1183/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u2-acc2.c.o 2025-11-03T15:53:17.6627560Z [1184/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc2.c.o 2025-11-03T15:53:17.6715020Z [1185/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc4.c.o 2025-11-03T15:53:17.6784720Z [1186/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u3-acc3.c.o 2025-11-03T15:53:17.7385900Z [1187/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u1.c.o 2025-11-03T15:53:17.7432800Z [1188/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u2-acc2.c.o 2025-11-03T15:53:17.7496640Z [1189/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u1.c.o 2025-11-03T15:53:17.7565590Z [1190/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc2.c.o 2025-11-03T15:53:17.7604490Z [1191/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u3-acc3.c.o 2025-11-03T15:53:17.7608070Z [1192/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u2-acc2.c.o 2025-11-03T15:53:17.7693450Z [1193/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u3-acc3.c.o 2025-11-03T15:53:17.7777420Z [1194/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc2.c.o 2025-11-03T15:53:17.7803000Z [1195/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar-pipelined.c.o 2025-11-03T15:53:17.7878840Z [1196/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar.c.o 2025-11-03T15:53:17.8295780Z [1197/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar-pipelined.c.o 2025-11-03T15:53:17.8481460Z [1198/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar.c.o 2025-11-03T15:53:17.8514330Z [1199/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar-pipelined.c.o 2025-11-03T15:53:17.8696770Z [1200/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u1.c.o 2025-11-03T15:53:17.8699250Z [1201/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar-pipelined.c.o 2025-11-03T15:53:17.8765100Z [1202/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u2.c.o 2025-11-03T15:53:17.8780480Z [1203/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar.c.o 2025-11-03T15:53:17.8981870Z [1204/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u4.c.o 2025-11-03T15:53:17.8982730Z [1205/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u2.c.o 2025-11-03T15:53:17.9001390Z [1206/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u1.c.o 2025-11-03T15:53:17.9354630Z [1207/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u4.c.o 2025-11-03T15:53:17.9674760Z [1208/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u1.c.o 2025-11-03T15:53:17.9850880Z [1209/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u8.c.o 2025-11-03T15:53:17.9936180Z [1210/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u4.c.o 2025-11-03T15:53:17.9939740Z [1211/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u1.c.o 2025-11-03T15:53:17.9942500Z [1212/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u8.c.o 2025-11-03T15:53:18.0144910Z [1213/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u4.c.o 2025-11-03T15:53:18.0247020Z [1214/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u4.c.o 2025-11-03T15:53:18.0373200Z [1215/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u2.c.o 2025-11-03T15:53:18.0474800Z [1216/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u1.c.o 2025-11-03T15:53:18.0559260Z [1217/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u1.c.o 2025-11-03T15:53:18.0937380Z [1218/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u2.c.o 2025-11-03T15:53:18.1066980Z [1219/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u1.c.o 2025-11-03T15:53:18.1126310Z [1220/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u4.c.o 2025-11-03T15:53:18.1172110Z [1221/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u2.c.o 2025-11-03T15:53:18.1248530Z [1222/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u4.c.o 2025-11-03T15:53:18.1323990Z [1223/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u1.c.o 2025-11-03T15:53:18.1436570Z [1224/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u1.c.o 2025-11-03T15:53:18.1459650Z [1225/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u2.c.o 2025-11-03T15:53:18.1462220Z [1226/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u4.c.o 2025-11-03T15:53:18.1661600Z [1227/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u2.c.o 2025-11-03T15:53:18.2088830Z [1228/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u4.c.o 2025-11-03T15:53:18.2204200Z [1229/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u1.c.o 2025-11-03T15:53:18.2241310Z [1230/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u2.c.o 2025-11-03T15:53:18.2291140Z [1231/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u1.c.o 2025-11-03T15:53:18.2420720Z [1232/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u4.c.o 2025-11-03T15:53:18.2492660Z [1233/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u2.c.o 2025-11-03T15:53:18.2548950Z [1234/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u2.c.o 2025-11-03T15:53:18.2656420Z [1235/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u1.c.o 2025-11-03T15:53:18.2718910Z [1236/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u4.c.o 2025-11-03T15:53:18.2768740Z [1237/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u4.c.o 2025-11-03T15:53:18.3196030Z [1238/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u1.c.o 2025-11-03T15:53:18.3205770Z [1239/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u8.c.o 2025-11-03T15:53:18.3351150Z [1240/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u4.c.o 2025-11-03T15:53:18.3353120Z [1241/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u1.c.o 2025-11-03T15:53:18.3489540Z [1242/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u2.c.o 2025-11-03T15:53:18.3537870Z [1243/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u1.c.o 2025-11-03T15:53:18.3668840Z [1244/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u4.c.o 2025-11-03T15:53:18.3759320Z [1245/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u2.c.o 2025-11-03T15:53:18.3948340Z [1246/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u4.c.o 2025-11-03T15:53:18.4000910Z [1247/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u1.c.o 2025-11-03T15:53:18.4313740Z [1248/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u2.c.o 2025-11-03T15:53:18.4326170Z [1249/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u4.c.o 2025-11-03T15:53:18.4372750Z [1250/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u2.c.o 2025-11-03T15:53:18.4515220Z [1251/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u1.c.o 2025-11-03T15:53:18.4543560Z [1252/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u4.c.o 2025-11-03T15:53:18.4627140Z [1253/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u1.c.o 2025-11-03T15:53:18.4730650Z [1254/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u2.c.o 2025-11-03T15:53:18.4930770Z [1255/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u1.c.o 2025-11-03T15:53:18.5138410Z [1256/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u4.c.o 2025-11-03T15:53:18.5248130Z [1257/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u2.c.o 2025-11-03T15:53:18.5374620Z [1258/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u4.c.o 2025-11-03T15:53:18.5424380Z [1259/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u1.c.o 2025-11-03T15:53:18.5509270Z [1260/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u2.c.o 2025-11-03T15:53:18.5740570Z [1261/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u8.c.o 2025-11-03T15:53:18.5865460Z [1262/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u1.c.o 2025-11-03T15:53:18.5883640Z [1263/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u1.c.o 2025-11-03T15:53:18.5895650Z [1264/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u2.c.o 2025-11-03T15:53:18.6097530Z [1265/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u3.c.o 2025-11-03T15:53:18.6179380Z [1266/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u5.c.o 2025-11-03T15:53:18.6381410Z [1267/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u6.c.o 2025-11-03T15:53:18.6616780Z [1268/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u3.c.o 2025-11-03T15:53:18.6625260Z [1269/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u1.c.o 2025-11-03T15:53:18.6816050Z [1270/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u4.c.o 2025-11-03T15:53:18.6836880Z [1271/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u5.c.o 2025-11-03T15:53:18.6986680Z [1272/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u6.c.o 2025-11-03T15:53:18.6990940Z [1273/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u2.c.o 2025-11-03T15:53:18.7147460Z [1274/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vgelu/gen/f32-vgelu-scalar.c.o 2025-11-03T15:53:18.7201530Z [1275/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u1.c.o 2025-11-03T15:53:18.7206670Z [1276/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u2.c.o 2025-11-03T15:53:18.7449020Z [1277/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlog/gen/f32-vlog-scalar-log.c.o 2025-11-03T15:53:18.7708460Z [1278/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u2.c.o 2025-11-03T15:53:18.7745060Z [1279/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-scalar-2x.c.o 2025-11-03T15:53:18.7846620Z [1280/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u1.c.o 2025-11-03T15:53:18.7959690Z [1281/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c2-minmax-scalar-2x.c.o 2025-11-03T15:53:18.8031990Z [1282/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u2.c.o 2025-11-03T15:53:18.8164320Z [1283/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u1.c.o 2025-11-03T15:53:18.8244080Z [1284/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u4.c.o 2025-11-03T15:53:18.8358420Z [1285/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u2.c.o 2025-11-03T15:53:18.8518350Z [1286/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u2.c.o 2025-11-03T15:53:18.8618460Z [1287/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u2.c.o 2025-11-03T15:53:18.8838260Z [1288/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u2.c.o 2025-11-03T15:53:18.8923780Z [1289/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u2.c.o 2025-11-03T15:53:18.9042760Z [1290/5269] 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-11-03T15:53:18.9075300Z [1291/5269] 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-11-03T15:53:18.9259800Z [1292/5269] 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-11-03T15:53:18.9262350Z [1293/5269] 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-11-03T15:53:18.9396100Z [1294/5269] 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-11-03T15:53:18.9400960Z [1295/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u1.c.o 2025-11-03T15:53:18.9631350Z [1296/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u2.c.o 2025-11-03T15:53:18.9737440Z [1297/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u4.c.o 2025-11-03T15:53:19.0112970Z [1298/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u4.c.o 2025-11-03T15:53:19.0227260Z [1299/5269] 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-11-03T15:53:19.0285150Z [1300/5269] 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-11-03T15:53:19.0423400Z [1301/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u2.c.o 2025-11-03T15:53:19.0430710Z [1302/5269] 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-11-03T15:53:19.0436290Z [1303/5269] 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-11-03T15:53:19.0682350Z [1304/5269] 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-11-03T15:53:19.0699910Z [1305/5269] 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-11-03T15:53:19.0720350Z [1306/5269] 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-11-03T15:53:19.1224450Z [1307/5269] 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-11-03T15:53:19.1302720Z [1308/5269] 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-11-03T15:53:19.1342380Z [1309/5269] 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-11-03T15:53:19.1515610Z [1310/5269] 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-11-03T15:53:19.1536380Z [1311/5269] 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-11-03T15:53:19.1696470Z [1312/5269] 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-11-03T15:53:19.1740000Z [1313/5269] 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-11-03T15:53:19.1846590Z [1314/5269] 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-11-03T15:53:19.1885140Z [1315/5269] 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-11-03T15:53:19.2139230Z [1316/5269] 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-11-03T15:53:19.2651950Z [1317/5269] 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-11-03T15:53:19.2778050Z [1318/5269] 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-11-03T15:53:19.2895770Z [1319/5269] 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-11-03T15:53:19.2908860Z [1320/5269] 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-11-03T15:53:19.2910070Z [1321/5269] 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-11-03T15:53:19.2938920Z [1322/5269] 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-11-03T15:53:19.2961280Z [1323/5269] 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-11-03T15:53:19.3236400Z [1324/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:19.3240210Z [1325/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:19.3429210Z [1326/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:19.3755580Z [1327/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:19.3964570Z [1328/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:19.3990030Z [1329/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:19.4101230Z [1330/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:19.4107920Z [1331/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:19.4140120Z [1332/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:19.4162200Z [1333/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:19.4378710Z [1334/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:19.4411520Z [1335/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:19.4633650Z [1336/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:19.4873140Z [1337/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:19.5261120Z [1338/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:19.5264030Z [1339/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:19.5271260Z [1340/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:19.5323340Z [1341/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:19.5429420Z [1342/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:19.5532590Z [1343/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:19.5580180Z [1344/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:19.5582080Z [1345/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:19.5662030Z [1346/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:19.5806130Z [1347/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:19.6619540Z [1348/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:19.6722920Z [1349/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:19.6825510Z [1350/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:19.6905880Z [1351/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:19.6906900Z [1352/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:19.6930940Z [1353/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:19.7035720Z [1354/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2025-11-03T15:53:19.7038620Z [1355/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2025-11-03T15:53:19.7251760Z [1356/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:19.7429350Z [1357/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:19.7565070Z [1358/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:19.7845770Z [1359/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2025-11-03T15:53:19.7945080Z [1360/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:19.7947510Z [1361/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:19.7953070Z [1362/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:19.7998340Z [1363/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:19.8178490Z [1364/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:19.8206680Z [1365/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:19.8212000Z [1366/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u2.c.o 2025-11-03T15:53:19.8624660Z [1367/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c4-gemm-gio-scalar.c.o 2025-11-03T15:53:19.8956090Z [1368/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u3.c.o 2025-11-03T15:53:19.8958410Z [1369/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c4-gemm-gio-scalar.c.o 2025-11-03T15:53:19.9239930Z [1370/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-gio-scalar.c.o 2025-11-03T15:53:19.9686200Z [1371/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c4-gemm-goi-scalar.c.o 2025-11-03T15:53:19.9710660Z [1372/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c4-gemm-goi-scalar.c.o 2025-11-03T15:53:19.9714060Z [1373/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-gio-scalar.c.o 2025-11-03T15:53:19.9719470Z [1374/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-goi-scalar.c.o 2025-11-03T15:53:19.9729480Z [1375/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x32c4-gemm-gio-scalar.c.o 2025-11-03T15:53:19.9731990Z [1376/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x32c4-gemm-goi-scalar.c.o 2025-11-03T15:53:20.0012910Z [1377/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-gio-scalar.c.o 2025-11-03T15:53:20.0023010Z [1378/5269] 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-11-03T15:53:20.0029180Z [1379/5269] 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-11-03T15:53:20.0107810Z [1380/5269] 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-11-03T15:53:20.0903610Z [1381/5269] 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-11-03T15:53:20.0906430Z [1382/5269] 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-11-03T15:53:20.0941360Z [1383/5269] 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-11-03T15:53:20.1019360Z [1384/5269] 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-11-03T15:53:20.1042870Z [1385/5269] 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-11-03T15:53:20.1081770Z [1386/5269] 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-11-03T15:53:20.1110360Z [1387/5269] 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-11-03T15:53:20.1164320Z [1388/5269] 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-11-03T15:53:20.1284720Z [1389/5269] 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-11-03T15:53:20.1528800Z [1390/5269] 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-11-03T15:53:20.2101750Z [1391/5269] 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-11-03T15:53:20.2126250Z [1392/5269] 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-11-03T15:53:20.2257250Z [1393/5269] 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-11-03T15:53:20.2284350Z [1394/5269] 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-11-03T15:53:20.2295850Z [1395/5269] 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-11-03T15:53:20.2323070Z [1396/5269] 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-11-03T15:53:20.2340190Z [1397/5269] 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-11-03T15:53:20.2605780Z [1398/5269] 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-11-03T15:53:20.2644590Z [1399/5269] 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-11-03T15:53:20.2649000Z [1400/5269] 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-11-03T15:53:20.3189710Z [1401/5269] 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-11-03T15:53:20.3317330Z [1402/5269] 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-11-03T15:53:20.3590200Z [1403/5269] 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-11-03T15:53:20.3638950Z [1404/5269] 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-11-03T15:53:20.3646700Z [1405/5269] 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-11-03T15:53:20.3699760Z [1406/5269] 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-11-03T15:53:20.3813650Z [1407/5269] 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-11-03T15:53:20.3907880Z [1408/5269] 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-11-03T15:53:20.4020830Z [1409/5269] 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-11-03T15:53:20.4100000Z [1410/5269] 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-11-03T15:53:20.4158550Z [1411/5269] 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-11-03T15:53:20.4424380Z [1412/5269] 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-11-03T15:53:20.4784570Z [1413/5269] 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-11-03T15:53:20.4792300Z [1414/5269] 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-11-03T15:53:20.4871780Z [1415/5269] 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-11-03T15:53:20.4888370Z [1416/5269] 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-11-03T15:53:20.4986710Z [1417/5269] 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-11-03T15:53:20.5090770Z [1418/5269] 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-11-03T15:53:20.5201710Z [1419/5269] 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-11-03T15:53:20.5342560Z [1420/5269] 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-11-03T15:53:20.5343920Z [1421/5269] 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-11-03T15:53:20.5756710Z [1422/5269] 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-11-03T15:53:20.6117620Z [1423/5269] 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-11-03T15:53:20.6135420Z [1424/5269] 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-11-03T15:53:20.6148380Z [1425/5269] 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-11-03T15:53:20.6284610Z [1426/5269] 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-11-03T15:53:20.6323800Z [1427/5269] 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-11-03T15:53:20.6339820Z [1428/5269] 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-11-03T15:53:20.6385490Z [1429/5269] 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-11-03T15:53:20.6563740Z [1430/5269] 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-11-03T15:53:20.6752570Z [1431/5269] 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-11-03T15:53:20.7201690Z [1432/5269] 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-11-03T15:53:20.7337350Z [1433/5269] 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-11-03T15:53:20.7354300Z [1434/5269] 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-11-03T15:53:20.7482530Z [1435/5269] 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-11-03T15:53:20.7494480Z [1436/5269] 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-11-03T15:53:20.7678920Z [1437/5269] 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-11-03T15:53:20.7688590Z [1438/5269] 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-11-03T15:53:20.7860650Z [1439/5269] 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-11-03T15:53:20.7885780Z [1440/5269] 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-11-03T15:53:20.8038670Z [1441/5269] 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-11-03T15:53:20.8377100Z [1442/5269] 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-11-03T15:53:20.8627530Z [1443/5269] 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-11-03T15:53:20.8635840Z [1444/5269] 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-11-03T15:53:20.8801050Z [1445/5269] 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-11-03T15:53:20.8811590Z [1446/5269] 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-11-03T15:53:20.8870480Z [1447/5269] 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-11-03T15:53:20.8943540Z [1448/5269] 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-11-03T15:53:20.8984820Z [1449/5269] 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-11-03T15:53:20.9113460Z [1450/5269] 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-11-03T15:53:20.9149390Z [1451/5269] 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-11-03T15:53:20.9744980Z [1452/5269] 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-11-03T15:53:20.9880590Z [1453/5269] 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-11-03T15:53:20.9914840Z [1454/5269] 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-11-03T15:53:21.0058700Z [1455/5269] 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-11-03T15:53:21.0071830Z [1456/5269] 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-11-03T15:53:21.0198420Z [1457/5269] 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-11-03T15:53:21.0238130Z [1458/5269] 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-11-03T15:53:21.0259590Z [1459/5269] 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-11-03T15:53:21.0567400Z [1460/5269] 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-11-03T15:53:21.0688470Z [1461/5269] 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-11-03T15:53:21.0828940Z [1462/5269] 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-11-03T15:53:21.0859020Z [1463/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u1.c.o 2025-11-03T15:53:21.0860950Z [1464/5269] 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-11-03T15:53:21.1024390Z [1465/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u2.c.o 2025-11-03T15:53:21.1338900Z [1466/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u2.c.o 2025-11-03T15:53:21.1364740Z [1467/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u1.c.o 2025-11-03T15:53:21.1456710Z [1468/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u2.c.o 2025-11-03T15:53:21.1576310Z [1469/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u2.c.o 2025-11-03T15:53:21.1612930Z [1470/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u2.c.o 2025-11-03T15:53:21.1648970Z [1471/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u1.c.o 2025-11-03T15:53:21.1772190Z [1472/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u1.c.o 2025-11-03T15:53:21.1977040Z [1473/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u2.c.o 2025-11-03T15:53:21.2072110Z [1474/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u2.c.o 2025-11-03T15:53:21.2082700Z [1475/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u1.c.o 2025-11-03T15:53:21.2492570Z [1476/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u2.c.o 2025-11-03T15:53:21.2633260Z [1477/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.2636700Z [1478/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.2698860Z [1479/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.2894010Z [1480/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.2904450Z [1481/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.2932080Z [1482/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.3178020Z [1483/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.3207070Z [1484/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.3245280Z [1485/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.3873600Z [1486/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.3876600Z [1487/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.3995950Z [1488/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.4046490Z [1489/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.4090570Z [1490/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.4092940Z [1491/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.4131520Z [1492/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.4134120Z [1493/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.4329240Z [1494/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.4335250Z [1495/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.4958060Z [1496/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.5031120Z [1497/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.5206560Z [1498/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.5242330Z [1499/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.5354790Z [1500/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.5404560Z [1501/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.5417800Z [1502/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.5538650Z [1503/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.5582740Z [1504/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.5641630Z [1505/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.6007110Z [1506/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2025-11-03T15:53:21.6048700Z [1507/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.6290240Z [1508/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2025-11-03T15:53:21.6478940Z [1509/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.6572210Z [1510/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.6636000Z [1511/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.6647640Z [1512/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.6748830Z [1513/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2025-11-03T15:53:21.6897500Z [1514/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.6899700Z [1515/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.7039760Z [1516/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.7434270Z [1517/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.7458910Z [1518/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u2.c.o 2025-11-03T15:53:21.7647010Z [1519/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.7755930Z [1520/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u3.c.o 2025-11-03T15:53:21.7836550Z [1521/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.7982260Z [1522/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.8046930Z [1523/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-rndnu-scalar.c.o 2025-11-03T15:53:21.8196480Z [1524/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.8201140Z [1525/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.8266540Z [1526/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-rndnu-scalar.c.o 2025-11-03T15:53:21.8727310Z [1527/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-rndnu-scalar.c.o 2025-11-03T15:53:21.8763140Z [1528/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.8846130Z [1529/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.8965980Z [1530/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.9056100Z [1531/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.9313740Z [1532/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:21.9385570Z [1533/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.9539180Z [1534/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:21.9643270Z [1535/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:21.9766030Z [1536/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-rndnu-scalar.c.o 2025-11-03T15:53:21.9984130Z [1537/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:22.0039240Z [1538/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-rndnu-scalar.c.o 2025-11-03T15:53:22.0066690Z [1539/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-rndnu-scalar.c.o 2025-11-03T15:53:22.0299840Z [1540/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:22.0359300Z [1541/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:22.0541650Z [1542/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:22.0552690Z [1543/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:22.0667580Z [1544/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-rndnu-scalar.c.o 2025-11-03T15:53:22.0725890Z [1545/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:22.1136210Z [1546/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:22.1361720Z [1547/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:22.1371640Z [1548/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-rndnu-scalar.c.o 2025-11-03T15:53:22.1560680Z [1549/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:22.1619640Z [1550/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-rndnu-scalar.c.o 2025-11-03T15:53:22.1882500Z [1551/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:22.1883490Z [1552/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:22.1884500Z [1553/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-rndnu-scalar.c.o 2025-11-03T15:53:22.1885240Z [1554/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:22.1949580Z [1555/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:22.2589840Z [1556/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:22.2622760Z [1557/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-rndnu-scalar.c.o 2025-11-03T15:53:22.2892990Z [1558/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:22.2901640Z [1559/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:22.2997890Z [1560/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:22.3039540Z [1561/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:22.3161110Z [1562/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-rndnu-scalar.c.o 2025-11-03T15:53:22.3198750Z [1563/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-rndnu-scalar.c.o 2025-11-03T15:53:22.3379440Z [1564/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:22.3434310Z [1565/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:22.3936990Z [1566/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:22.3995790Z [1567/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:22.4169820Z [1568/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:22.4178780Z [1569/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:22.4187740Z [1570/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-rndnu-scalar.c.o 2025-11-03T15:53:22.4352980Z [1571/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:22.4412530Z [1572/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-11-03T15:53:22.4520080Z [1573/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-rndnu-scalar.c.o 2025-11-03T15:53:22.4551430Z [1574/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-11-03T15:53:22.4791000Z [1575/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-11-03T15:53:22.4976370Z [1576/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u1.c.o 2025-11-03T15:53:22.5215650Z [1577/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u2.c.o 2025-11-03T15:53:22.5254680Z [1578/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u2.c.o 2025-11-03T15:53:22.5255490Z [1579/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u2.c.o 2025-11-03T15:53:22.5420020Z [1580/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u2.c.o 2025-11-03T15:53:22.5481340Z [1581/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u1.c.o 2025-11-03T15:53:22.5568500Z [1582/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u1.c.o 2025-11-03T15:53:22.5574560Z [1583/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u2.c.o 2025-11-03T15:53:22.5756270Z [1584/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u2.c.o 2025-11-03T15:53:22.5811000Z [1585/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-rndnu-scalar.c.o 2025-11-03T15:53:22.6011560Z [1586/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u1.c.o 2025-11-03T15:53:22.6251680Z [1587/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u2.c.o 2025-11-03T15:53:22.6299270Z [1588/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u2.c.o 2025-11-03T15:53:22.6302510Z [1589/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u1.c.o 2025-11-03T15:53:22.6464200Z [1590/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c2.c.o 2025-11-03T15:53:22.6497960Z [1591/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c4.c.o 2025-11-03T15:53:22.6624650Z [1592/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c2.c.o 2025-11-03T15:53:22.6629120Z [1593/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c4.c.o 2025-11-03T15:53:22.6840530Z [1594/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u2.c.o 2025-11-03T15:53:22.6848390Z [1595/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u1.c.o 2025-11-03T15:53:22.7017290Z [1596/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u8.c.o 2025-11-03T15:53:22.7305860Z [1597/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u16.c.o 2025-11-03T15:53:22.7397860Z [1598/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-u2.c.o 2025-11-03T15:53:22.7448500Z [1599/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-u4.c.o 2025-11-03T15:53:22.7457300Z [1600/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u4.c.o 2025-11-03T15:53:22.7624010Z [1601/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u4.c.o 2025-11-03T15:53:22.7629250Z [1602/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u4.c.o 2025-11-03T15:53:22.7682260Z [1603/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8c8-gemm-gio-scalar.c.o 2025-11-03T15:53:22.7875890Z [1604/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u4.c.o 2025-11-03T15:53:22.8163980Z [1605/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x2-scalar-int.c.o 2025-11-03T15:53:22.8185730Z [1606/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x4-scalar-int.c.o 2025-11-03T15:53:22.8389280Z [1607/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x2-scalar-int.c.o 2025-11-03T15:53:22.8403550Z [1608/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x2-scalar-int.c.o 2025-11-03T15:53:22.8423160Z [1609/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x1-scalar-int.c.o 2025-11-03T15:53:22.8634820Z [1610/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x1-scalar-int.c.o 2025-11-03T15:53:22.8643540Z [1611/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x4-scalar-int.c.o 2025-11-03T15:53:22.8658570Z [1612/5269] 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-11-03T15:53:22.8873090Z [1613/5269] 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-11-03T15:53:22.8966380Z [1614/5269] 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-11-03T15:53:22.9123210Z [1615/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x4-scalar-int.c.o 2025-11-03T15:53:22.9275410Z [1616/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x2-scalar-int.c.o 2025-11-03T15:53:22.9332400Z [1617/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x1-scalar-int.c.o 2025-11-03T15:53:22.9501080Z [1618/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x2-scalar-int.c.o 2025-11-03T15:53:22.9573820Z [1619/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x1-scalar-int.c.o 2025-11-03T15:53:22.9679900Z [1620/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x2-scalar-int.c.o 2025-11-03T15:53:22.9745590Z [1621/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x4-scalar.c.o 2025-11-03T15:53:22.9747480Z [1622/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-scalar-int.c.o 2025-11-03T15:53:22.9771630Z [1623/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x1-scalar.c.o 2025-11-03T15:53:22.9874290Z [1624/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x2-scalar.c.o 2025-11-03T15:53:23.0244200Z [1625/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x4-scalar.c.o 2025-11-03T15:53:23.0245090Z [1626/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x1-scalar.c.o 2025-11-03T15:53:23.0485950Z [1627/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x2-scalar.c.o 2025-11-03T15:53:23.0544770Z [1628/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-float.c.o 2025-11-03T15:53:23.0673690Z [1629/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-int.c.o 2025-11-03T15:53:23.0706810Z [1630/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-int.c.o 2025-11-03T15:53:23.0858820Z [1631/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-float.c.o 2025-11-03T15:53:23.0874380Z [1632/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-int.c.o 2025-11-03T15:53:23.0877910Z [1633/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-float.c.o 2025-11-03T15:53:23.1138490Z [1634/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-int.c.o 2025-11-03T15:53:23.1217300Z [1635/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-float.c.o 2025-11-03T15:53:23.1402180Z [1636/5269] 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-11-03T15:53:23.1411680Z [1637/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x4-scalar.c.o 2025-11-03T15:53:23.1599550Z [1638/5269] 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-11-03T15:53:23.1851740Z [1639/5269] 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-11-03T15:53:23.1860760Z [1640/5269] 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-11-03T15:53:23.1867550Z [1641/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x4-gemm-gio-scalar.c.o 2025-11-03T15:53:23.1936720Z [1642/5269] 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-11-03T15:53:23.1954420Z [1643/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-gio-scalar.c.o 2025-11-03T15:53:23.2274340Z [1644/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-gio-scalar.c.o 2025-11-03T15:53:23.2289980Z [1645/5269] 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-11-03T15:53:23.2516010Z [1646/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x32-gemm-gio-scalar.c.o 2025-11-03T15:53:23.2611410Z [1647/5269] 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-11-03T15:53:23.2714010Z [1648/5269] 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-11-03T15:53:23.2806370Z [1649/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-4x-scalar.c.o 2025-11-03T15:53:23.2808600Z [1650/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-2x-scalar.c.o 2025-11-03T15:53:23.2968670Z [1651/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-int.c.o 2025-11-03T15:53:23.3069300Z [1652/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-3x-scalar.c.o 2025-11-03T15:53:23.3194250Z [1653/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-float.c.o 2025-11-03T15:53:23.3477450Z [1654/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-float.c.o 2025-11-03T15:53:23.3543260Z [1655/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-int.c.o 2025-11-03T15:53:23.3654120Z [1656/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-float.c.o 2025-11-03T15:53:23.3841440Z [1657/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-int.c.o 2025-11-03T15:53:23.3844290Z [1658/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-float.c.o 2025-11-03T15:53:23.3851370Z [1659/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-float.c.o 2025-11-03T15:53:23.3956990Z [1660/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-int.c.o 2025-11-03T15:53:23.4151720Z [1661/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-float.c.o 2025-11-03T15:53:23.4251170Z [1662/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-float.c.o 2025-11-03T15:53:23.4454400Z [1663/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-int.c.o 2025-11-03T15:53:23.4496860Z [1664/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-int.c.o 2025-11-03T15:53:23.4653610Z [1665/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-float.c.o 2025-11-03T15:53:23.4698020Z [1666/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-int.c.o 2025-11-03T15:53:23.4707940Z [1667/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-float.c.o 2025-11-03T15:53:23.4821140Z [1668/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-int.c.o 2025-11-03T15:53:23.4931590Z [1669/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-int.c.o 2025-11-03T15:53:23.5009770Z [1670/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-float.c.o 2025-11-03T15:53:23.5119720Z [1671/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-float.c.o 2025-11-03T15:53:23.5342280Z [1672/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-int.c.o 2025-11-03T15:53:23.5453250Z [1673/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-float.c.o 2025-11-03T15:53:23.5648290Z [1674/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-int.c.o 2025-11-03T15:53:23.5656930Z [1675/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-int.c.o 2025-11-03T15:53:23.5790490Z [1676/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-float.c.o 2025-11-03T15:53:23.5837140Z [1677/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-float.c.o 2025-11-03T15:53:23.5909260Z [1678/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-int.c.o 2025-11-03T15:53:23.5920660Z [1679/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-float.c.o 2025-11-03T15:53:23.5948740Z [1680/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-int.c.o 2025-11-03T15:53:23.6188980Z [1681/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-float.c.o 2025-11-03T15:53:23.6347090Z [1682/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-float.c.o 2025-11-03T15:53:23.6423410Z [1683/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-int.c.o 2025-11-03T15:53:23.6936880Z [1684/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u8.c.o 2025-11-03T15:53:23.6940440Z [1685/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u24.c.o 2025-11-03T15:53:23.7159720Z [1686/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u8.c.o 2025-11-03T15:53:23.7168680Z [1687/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u32.c.o 2025-11-03T15:53:23.7328380Z [1688/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u32.c.o 2025-11-03T15:53:23.7435120Z [1689/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u24.c.o 2025-11-03T15:53:23.7466700Z [1690/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u16.c.o 2025-11-03T15:53:23.7470230Z [1691/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x1.c.o 2025-11-03T15:53:23.8060640Z [1692/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x2.c.o 2025-11-03T15:53:23.8197450Z [1693/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x1.c.o 2025-11-03T15:53:23.8236740Z [1694/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x1.c.o 2025-11-03T15:53:23.8286530Z [1695/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x1.c.o 2025-11-03T15:53:23.8416730Z [1696/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x2.c.o 2025-11-03T15:53:23.8501120Z [1697/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x2.c.o 2025-11-03T15:53:23.8621100Z [1698/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x2.c.o 2025-11-03T15:53:23.8629180Z [1699/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon-acc2.c.o 2025-11-03T15:53:23.8748890Z [1700/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon-acc2.c.o 2025-11-03T15:53:23.9100940Z [1701/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon.c.o 2025-11-03T15:53:23.9371320Z [1702/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon-acc2.c.o 2025-11-03T15:53:23.9593600Z [1703/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon.c.o 2025-11-03T15:53:23.9624610Z [1704/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon-acc2.c.o 2025-11-03T15:53:23.9825790Z [1705/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon-acc2.c.o 2025-11-03T15:53:23.9853950Z [1706/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon-acc2.c.o 2025-11-03T15:53:23.9865680Z [1707/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon.c.o 2025-11-03T15:53:24.0052220Z [1708/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon.c.o 2025-11-03T15:53:24.0056140Z [1709/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon-acc2.c.o 2025-11-03T15:53:24.0115530Z [1710/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon.c.o 2025-11-03T15:53:24.0366480Z [1711/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon-acc2.c.o 2025-11-03T15:53:24.0949380Z [1712/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon-acc2.c.o 2025-11-03T15:53:24.1083860Z [1713/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon.c.o 2025-11-03T15:53:24.1110530Z [1714/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon-acc2.c.o 2025-11-03T15:53:24.1128570Z [1715/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon.c.o 2025-11-03T15:53:24.1256250Z [1716/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon.c.o 2025-11-03T15:53:24.1357990Z [1717/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon-acc2.c.o 2025-11-03T15:53:24.1360560Z [1718/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon.c.o 2025-11-03T15:53:24.1495660Z [1719/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon.c.o 2025-11-03T15:53:24.1499850Z [1720/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon-acc2.c.o 2025-11-03T15:53:24.2261850Z [1721/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon.c.o 2025-11-03T15:53:24.2384260Z [1722/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon-acc2.c.o 2025-11-03T15:53:24.2451410Z [1723/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon-acc2.c.o 2025-11-03T15:53:24.2467820Z [1724/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon.c.o 2025-11-03T15:53:24.2519260Z [1725/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon-acc2.c.o 2025-11-03T15:53:24.2637240Z [1726/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon.c.o 2025-11-03T15:53:24.2730610Z [1727/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon.c.o 2025-11-03T15:53:24.2763950Z [1728/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon-acc2.c.o 2025-11-03T15:53:24.3004430Z [1729/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon.c.o 2025-11-03T15:53:24.3110410Z [1730/5269] 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-11-03T15:53:24.3764450Z [1731/5269] 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-11-03T15:53:24.3855340Z [1732/5269] 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-11-03T15:53:24.3876970Z [1733/5269] 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-11-03T15:53:24.3912870Z [1734/5269] 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-11-03T15:53:24.3921380Z [1735/5269] 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-11-03T15:53:24.3950420Z [1736/5269] 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-11-03T15:53:24.4125700Z [1737/5269] 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-11-03T15:53:24.4244580Z [1738/5269] 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-11-03T15:53:24.4880890Z [1739/5269] 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-11-03T15:53:24.4945640Z [1740/5269] 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-11-03T15:53:24.5099320Z [1741/5269] 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-11-03T15:53:24.5117860Z [1742/5269] 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-11-03T15:53:24.5141030Z [1743/5269] 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-11-03T15:53:24.5285170Z [1744/5269] 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-11-03T15:53:24.5447960Z [1745/5269] 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-11-03T15:53:24.5531280Z [1746/5269] 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-11-03T15:53:24.5547950Z [1747/5269] 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-11-03T15:53:24.5803270Z [1748/5269] 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-11-03T15:53:24.6323140Z [1749/5269] 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-11-03T15:53:24.6351460Z [1750/5269] 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-11-03T15:53:24.6498470Z [1751/5269] 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-11-03T15:53:24.6602300Z [1752/5269] 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-11-03T15:53:24.6698930Z [1753/5269] 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-11-03T15:53:24.6699940Z [1754/5269] 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-11-03T15:53:24.6981980Z [1755/5269] 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-11-03T15:53:24.6984980Z [1756/5269] 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-11-03T15:53:24.7362910Z [1757/5269] 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-11-03T15:53:24.7448480Z [1758/5269] 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-11-03T15:53:24.7639270Z [1759/5269] 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-11-03T15:53:24.7779320Z [1760/5269] 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-11-03T15:53:24.7945490Z [1761/5269] 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-11-03T15:53:24.7968750Z [1762/5269] 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-11-03T15:53:24.7986330Z [1763/5269] 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-11-03T15:53:24.7998680Z [1764/5269] 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-11-03T15:53:24.8543920Z [1765/5269] 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-11-03T15:53:24.8554700Z [1766/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u24.c.o 2025-11-03T15:53:24.8569680Z [1767/5269] 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-11-03T15:53:24.8785120Z [1768/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u16.c.o 2025-11-03T15:53:24.8885210Z [1769/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u32.c.o 2025-11-03T15:53:24.9146400Z [1770/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-dup-ld64.c.o 2025-11-03T15:53:24.9365230Z [1771/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:24.9618200Z [1772/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x16-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:24.9707780Z [1773/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neon.c.o 2025-11-03T15:53:24.9887900Z [1774/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:24.9983520Z [1775/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld64.c.o 2025-11-03T15:53:25.0193410Z [1776/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:25.0276530Z [1777/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld128.c.o 2025-11-03T15:53:25.0483930Z [1778/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.0492450Z [1779/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neon.c.o 2025-11-03T15:53:25.0673290Z [1780/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.0979100Z [1781/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:25.1238340Z [1782/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld64.c.o 2025-11-03T15:53:25.1355120Z [1783/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld128.c.o 2025-11-03T15:53:25.1475260Z [1784/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.1507140Z [1785/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:25.1761040Z [1786/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x2-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:25.2059550Z [1787/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neon.c.o 2025-11-03T15:53:25.2220030Z [1788/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.2356550Z [1789/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.2457540Z [1790/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-dup-ld64.c.o 2025-11-03T15:53:25.2503490Z [1791/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:25.2524400Z [1792/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neon.c.o 2025-11-03T15:53:25.2794010Z [1793/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.3125140Z [1794/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld64.c.o 2025-11-03T15:53:25.3154950Z [1795/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neon.c.o 2025-11-03T15:53:25.3411850Z [1796/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld128.c.o 2025-11-03T15:53:25.3442180Z [1797/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:25.3639650Z [1798/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.3722880Z [1799/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neon.c.o 2025-11-03T15:53:25.3981230Z [1800/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld128.c.o 2025-11-03T15:53:25.4081500Z [1801/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld64.c.o 2025-11-03T15:53:25.4114970Z [1802/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:25.4339470Z [1803/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:25.4687120Z [1804/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neon.c.o 2025-11-03T15:53:25.4695020Z [1805/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.4856470Z [1806/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p4.c.o 2025-11-03T15:53:25.4880030Z [1807/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p16.c.o 2025-11-03T15:53:25.4903390Z [1808/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neon.c.o 2025-11-03T15:53:25.4959800Z [1809/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c4.c.o 2025-11-03T15:53:25.5336810Z [1810/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-dup-ld64.c.o 2025-11-03T15:53:25.5413600Z [1811/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neon.c.o 2025-11-03T15:53:25.5450140Z [1812/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.5805430Z [1813/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.6111740Z [1814/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x16-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.6181500Z [1815/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld128.c.o 2025-11-03T15:53:25.6309990Z [1816/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld64.c.o 2025-11-03T15:53:25.6416770Z [1817/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.6529620Z [1818/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:25.6533670Z [1819/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:25.6915720Z [1820/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.6964650Z [1821/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.7120690Z [1822/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x2-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:25.7264900Z [1823/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neon.c.o 2025-11-03T15:53:25.7596450Z [1824/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld128.c.o 2025-11-03T15:53:25.7718270Z [1825/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neon.c.o 2025-11-03T15:53:25.7814830Z [1826/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld64.c.o 2025-11-03T15:53:25.7825510Z [1827/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.7884910Z [1828/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-neon-lane-ld128.c.o 2025-11-03T15:53:25.8098560Z [1829/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld64.c.o 2025-11-03T15:53:25.8357090Z [1830/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon-prfm.c.o 2025-11-03T15:53:25.8444060Z [1831/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon-prfm.c.o 2025-11-03T15:53:25.8481450Z [1832/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neon.c.o 2025-11-03T15:53:25.8677710Z [1833/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon.c.o 2025-11-03T15:53:25.8838730Z [1834/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon.c.o 2025-11-03T15:53:25.9146010Z [1835/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon-prfm.c.o 2025-11-03T15:53:25.9155100Z [1836/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon.c.o 2025-11-03T15:53:25.9335320Z [1837/5269] 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-11-03T15:53:25.9437710Z [1838/5269] 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-11-03T15:53:25.9440900Z [1839/5269] 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-11-03T15:53:25.9952070Z [1840/5269] 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-11-03T15:53:25.9965560Z [1841/5269] 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-11-03T15:53:25.9972120Z [1842/5269] 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-11-03T15:53:26.0177580Z [1843/5269] 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-11-03T15:53:26.0516380Z [1844/5269] 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-11-03T15:53:26.0694270Z [1845/5269] 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-11-03T15:53:26.0845460Z [1846/5269] 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-11-03T15:53:26.0855260Z [1847/5269] 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-11-03T15:53:26.0871360Z [1848/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u8.c.o 2025-11-03T15:53:26.1290560Z [1849/5269] 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-11-03T15:53:26.1336140Z [1850/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u16.c.o 2025-11-03T15:53:26.1388800Z [1851/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u16.c.o 2025-11-03T15:53:26.1597920Z [1852/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u24.c.o 2025-11-03T15:53:26.1701510Z [1853/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u8.c.o 2025-11-03T15:53:26.1714820Z [1854/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u24.c.o 2025-11-03T15:53:26.1836970Z [1855/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u4.c.o 2025-11-03T15:53:26.2143570Z [1856/5269] 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-11-03T15:53:26.2221620Z [1857/5269] 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-11-03T15:53:26.2364970Z [1858/5269] 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-11-03T15:53:26.2640670Z [1859/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc2.c.o 2025-11-03T15:53:26.2735460Z [1860/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u4.c.o 2025-11-03T15:53:26.2763660Z [1861/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u8-acc2.c.o 2025-11-03T15:53:26.2897600Z [1862/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c64.c.o 2025-11-03T15:53:26.2904390Z [1863/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c32.c.o 2025-11-03T15:53:26.2935340Z [1864/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc4.c.o 2025-11-03T15:53:26.2985020Z [1865/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u4.c.o 2025-11-03T15:53:26.3641380Z [1866/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u8-acc2.c.o 2025-11-03T15:53:26.3727000Z [1867/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u12-acc3.c.o 2025-11-03T15:53:26.3817500Z [1868/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc2.c.o 2025-11-03T15:53:26.3954000Z [1869/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u12-acc3.c.o 2025-11-03T15:53:26.3968210Z [1870/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u4.c.o 2025-11-03T15:53:26.3972170Z [1871/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u8-acc2.c.o 2025-11-03T15:53:26.4124160Z [1872/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc4.c.o 2025-11-03T15:53:26.4179700Z [1873/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u4.c.o 2025-11-03T15:53:26.4300460Z [1874/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u8-acc2.c.o 2025-11-03T15:53:26.4305750Z [1875/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc2.c.o 2025-11-03T15:53:26.4960200Z [1876/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u12-acc3.c.o 2025-11-03T15:53:26.5110800Z [1877/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc2.c.o 2025-11-03T15:53:26.5118410Z [1878/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u4.c.o 2025-11-03T15:53:26.5227120Z [1879/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc2.c.o 2025-11-03T15:53:26.5337880Z [1880/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u12-acc3.c.o 2025-11-03T15:53:26.5354580Z [1881/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u8-acc2.c.o 2025-11-03T15:53:26.5457890Z [1882/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-x2.c.o 2025-11-03T15:53:26.5524620Z [1883/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-pipelined.c.o 2025-11-03T15:53:26.5682870Z [1884/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon.c.o 2025-11-03T15:53:26.5691540Z [1885/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-pipelined.c.o 2025-11-03T15:53:26.6273300Z [1886/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-x2.c.o 2025-11-03T15:53:26.6447160Z [1887/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neon.c.o 2025-11-03T15:53:26.6466240Z [1888/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-x2.c.o 2025-11-03T15:53:26.6477980Z [1889/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon.c.o 2025-11-03T15:53:26.6691420Z [1890/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon.c.o 2025-11-03T15:53:26.6920170Z [1891/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-pipelined.c.o 2025-11-03T15:53:26.6953960Z [1892/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-neon-u4.c.o 2025-11-03T15:53:26.7005390Z [1893/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-x2.c.o 2025-11-03T15:53:26.7170750Z [1894/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-neon-u4.c.o 2025-11-03T15:53:26.7261230Z [1895/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-pipelined.c.o 2025-11-03T15:53:26.7748900Z [1896/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-neon-u4.c.o 2025-11-03T15:53:26.7758940Z [1897/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-neon-u4.c.o 2025-11-03T15:53:26.7769500Z [1898/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u4.c.o 2025-11-03T15:53:26.8049950Z [1899/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-neon-u4.c.o 2025-11-03T15:53:26.8115700Z [1900/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-neon-u4.c.o 2025-11-03T15:53:26.8284260Z [1901/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u4.c.o 2025-11-03T15:53:26.8287930Z [1902/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-neon-u4.c.o 2025-11-03T15:53:26.8301460Z [1903/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u4.c.o 2025-11-03T15:53:26.8586460Z [1904/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-neon-u4.c.o 2025-11-03T15:53:26.8744500Z [1905/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u4.c.o 2025-11-03T15:53:26.8946720Z [1906/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-neon-u4.c.o 2025-11-03T15:53:26.9014530Z [1907/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u4.c.o 2025-11-03T15:53:26.9177260Z [1908/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u4.c.o 2025-11-03T15:53:26.9273630Z [1909/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-neon-u4.c.o 2025-11-03T15:53:26.9381270Z [1910/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u4.c.o 2025-11-03T15:53:26.9775260Z [1911/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u4.c.o 2025-11-03T15:53:26.9787330Z [1912/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u8.c.o 2025-11-03T15:53:26.9825700Z [1913/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u12.c.o 2025-11-03T15:53:27.0078200Z [1914/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u16.c.o 2025-11-03T15:53:27.0118470Z [1915/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u16.c.o 2025-11-03T15:53:27.0355960Z [1916/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u12.c.o 2025-11-03T15:53:27.0470610Z [1917/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u8.c.o 2025-11-03T15:53:27.0563370Z [1918/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u12.c.o 2025-11-03T15:53:27.0795400Z [1919/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u4.c.o 2025-11-03T15:53:27.0811660Z [1920/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u4.c.o 2025-11-03T15:53:27.1054700Z [1921/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u16.c.o 2025-11-03T15:53:27.1065600Z [1922/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u8.c.o 2025-11-03T15:53:27.1308860Z [1923/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neon-2x.c.o 2025-11-03T15:53:27.1360490Z [1924/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u4.c.o 2025-11-03T15:53:27.1465710Z [1925/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u4.c.o 2025-11-03T15:53:27.1575030Z [1926/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u4.c.o 2025-11-03T15:53:27.1703650Z [1927/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u8.c.o 2025-11-03T15:53:27.1961110Z [1928/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neon-u4.c.o 2025-11-03T15:53:27.2095940Z [1929/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neon-u4.c.o 2025-11-03T15:53:27.2370470Z [1930/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u4.c.o 2025-11-03T15:53:27.2375350Z [1931/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neon-u4.c.o 2025-11-03T15:53:27.2593280Z [1932/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neon-u4.c.o 2025-11-03T15:53:27.2596920Z [1933/5269] 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-11-03T15:53:27.2786770Z [1934/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u8.c.o 2025-11-03T15:53:27.2851470Z [1935/5269] 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-11-03T15:53:27.2969150Z [1936/5269] 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-11-03T15:53:27.3380160Z [1937/5269] 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-11-03T15:53:27.3442360Z [1938/5269] 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-11-03T15:53:27.3606260Z [1939/5269] 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-11-03T15:53:27.3670480Z [1940/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u4.c.o 2025-11-03T15:53:27.3832160Z [1941/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u8.c.o 2025-11-03T15:53:27.3899450Z [1942/5269] 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-11-03T15:53:27.3921760Z [1943/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u12.c.o 2025-11-03T15:53:27.3991770Z [1944/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u16.c.o 2025-11-03T15:53:27.4203680Z [1945/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-nr.c.o 2025-11-03T15:53:27.4230860Z [1946/5269] 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-11-03T15:53:27.4856390Z [1947/5269] 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-11-03T15:53:27.5127970Z [1948/5269] 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-11-03T15:53:27.5182100Z [1949/5269] 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-11-03T15:53:27.5292810Z [1950/5269] 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-11-03T15:53:27.5391880Z [1951/5269] 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-11-03T15:53:27.5449140Z [1952/5269] 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-11-03T15:53:27.5573370Z [1953/5269] 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-11-03T15:53:27.5679600Z [1954/5269] 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-11-03T15:53:27.6196440Z [1955/5269] 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-11-03T15:53:27.6296980Z [1956/5269] 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-11-03T15:53:27.6463860Z [1957/5269] 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-11-03T15:53:27.6507930Z [1958/5269] 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-11-03T15:53:27.6585690Z [1959/5269] 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-11-03T15:53:27.6691170Z [1960/5269] 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-11-03T15:53:27.6694750Z [1961/5269] 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-11-03T15:53:27.6956310Z [1962/5269] 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-11-03T15:53:27.7158200Z [1963/5269] 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-11-03T15:53:27.7366210Z [1964/5269] 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-11-03T15:53:27.7866720Z [1965/5269] 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-11-03T15:53:27.8014160Z [1966/5269] 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-11-03T15:53:27.8050660Z [1967/5269] 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-11-03T15:53:27.8070530Z [1968/5269] 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-11-03T15:53:27.8136980Z [1969/5269] 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-11-03T15:53:27.8226630Z [1970/5269] 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-11-03T15:53:27.8231220Z [1971/5269] 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-11-03T15:53:27.8235600Z [1972/5269] 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-11-03T15:53:27.8517810Z [1973/5269] 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-11-03T15:53:27.9374900Z [1974/5269] 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-11-03T15:53:27.9382000Z [1975/5269] 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-11-03T15:53:27.9412350Z [1976/5269] 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-11-03T15:53:27.9514030Z [1977/5269] 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-11-03T15:53:27.9516280Z [1978/5269] 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-11-03T15:53:27.9588870Z [1979/5269] 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-11-03T15:53:27.9656260Z [1980/5269] 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-11-03T15:53:27.9767960Z [1981/5269] 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-11-03T15:53:28.0442670Z [1982/5269] 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-11-03T15:53:28.0534280Z [1983/5269] 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-11-03T15:53:28.0683180Z [1984/5269] 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-11-03T15:53:28.0699540Z [1985/5269] 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-11-03T15:53:28.0866930Z [1986/5269] 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-11-03T15:53:28.0883990Z [1987/5269] 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-11-03T15:53:28.1041180Z [1988/5269] 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-11-03T15:53:28.1044500Z [1989/5269] 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-11-03T15:53:28.1239450Z [1990/5269] 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-11-03T15:53:28.1390710Z [1991/5269] 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-11-03T15:53:28.1760730Z [1992/5269] 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-11-03T15:53:28.1838280Z [1993/5269] 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-11-03T15:53:28.1989050Z [1994/5269] 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-11-03T15:53:28.2029260Z [1995/5269] 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-11-03T15:53:28.2193110Z [1996/5269] 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-11-03T15:53:28.2572320Z [1997/5269] 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-11-03T15:53:28.2609660Z [1998/5269] 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-11-03T15:53:28.2641270Z [1999/5269] 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-11-03T15:53:28.2716520Z [2000/5269] 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-11-03T15:53:28.3151020Z [2001/5269] 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-11-03T15:53:28.3290260Z [2002/5269] 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-11-03T15:53:28.3292480Z [2003/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:28.3358440Z [2004/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:28.3488630Z [2005/5269] 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-11-03T15:53:28.3491400Z [2006/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:28.3919950Z [2007/5269] 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-11-03T15:53:28.4134150Z [2008/5269] 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-11-03T15:53:28.4236230Z [2009/5269] 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-11-03T15:53:28.4407090Z [2010/5269] 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-11-03T15:53:28.4654800Z [2011/5269] 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-11-03T15:53:28.4711960Z [2012/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:28.4821840Z [2013/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:28.4828490Z [2014/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:28.4830500Z [2015/5269] 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-11-03T15:53:28.4899010Z [2016/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:28.5441580Z [2017/5269] 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-11-03T15:53:28.5512510Z [2018/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:28.5619410Z [2019/5269] 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-11-03T15:53:28.5753620Z [2020/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:28.6162680Z [2021/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:28.6167980Z [2022/5269] 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-11-03T15:53:28.6173400Z [2023/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:28.6185920Z [2024/5269] 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-11-03T15:53:28.6292450Z [2025/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:28.6372480Z [2026/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:28.7187450Z [2027/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:28.7252090Z [2028/5269] 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-11-03T15:53:28.7333810Z [2029/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:28.7466070Z [2030/5269] 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-11-03T15:53:28.7474650Z [2031/5269] 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-11-03T15:53:28.7482030Z [2032/5269] 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-11-03T15:53:28.7646630Z [2033/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:28.7791210Z [2034/5269] 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-11-03T15:53:28.7892550Z [2035/5269] 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-11-03T15:53:28.8066670Z [2036/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:28.8416060Z [2037/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:28.8537820Z [2038/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:28.8729600Z [2039/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:28.8807560Z [2040/5269] 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-11-03T15:53:28.8838860Z [2041/5269] 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-11-03T15:53:28.8946300Z [2042/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:28.9049000Z [2043/5269] 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-11-03T15:53:28.9584250Z [2044/5269] 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-11-03T15:53:28.9613210Z [2045/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:28.9667200Z [2046/5269] 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-11-03T15:53:28.9678540Z [2047/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:28.9838460Z [2048/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:29.0139710Z [2049/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:29.0214330Z [2050/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:29.0295670Z [2051/5269] 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-11-03T15:53:29.0331580Z [2052/5269] 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-11-03T15:53:29.0498850Z [2053/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:29.0944290Z [2054/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:29.0967860Z [2055/5269] 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-11-03T15:53:29.1201840Z [2056/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:29.1229250Z [2057/5269] 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-11-03T15:53:29.1424520Z [2058/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u8.c.o 2025-11-03T15:53:29.1542310Z [2059/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:29.1553930Z [2060/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u16.c.o 2025-11-03T15:53:29.1578430Z [2061/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u24.c.o 2025-11-03T15:53:29.1775160Z [2062/5269] 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-11-03T15:53:29.2033660Z [2063/5269] 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-11-03T15:53:29.2549870Z [2064/5269] 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-11-03T15:53:29.2645140Z [2065/5269] 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-11-03T15:53:29.2668410Z [2066/5269] 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-11-03T15:53:29.2876010Z [2067/5269] 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-11-03T15:53:29.2941510Z [2068/5269] 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-11-03T15:53:29.2949540Z [2069/5269] 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-11-03T15:53:29.2992240Z [2070/5269] 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-11-03T15:53:29.3149750Z [2071/5269] 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-11-03T15:53:29.3163760Z [2072/5269] 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-11-03T15:53:29.3202940Z [2073/5269] 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-11-03T15:53:29.4025150Z [2074/5269] 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-11-03T15:53:29.4074890Z [2075/5269] 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-11-03T15:53:29.4088180Z [2076/5269] 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-11-03T15:53:29.4255760Z [2077/5269] 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-11-03T15:53:29.4326880Z [2078/5269] 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-11-03T15:53:29.4398910Z [2079/5269] 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-11-03T15:53:29.4434660Z [2080/5269] 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-11-03T15:53:29.4552930Z [2081/5269] 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-11-03T15:53:29.4620920Z [2082/5269] 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-11-03T15:53:29.4704650Z [2083/5269] 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-11-03T15:53:29.5473110Z [2084/5269] 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-11-03T15:53:29.5561070Z [2085/5269] 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-11-03T15:53:29.5568970Z [2086/5269] 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-11-03T15:53:29.5656790Z [2087/5269] 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-11-03T15:53:29.5770150Z [2088/5269] 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-11-03T15:53:29.5839970Z [2089/5269] 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-11-03T15:53:29.5842900Z [2090/5269] 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-11-03T15:53:29.5969130Z [2091/5269] 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-11-03T15:53:29.6484470Z [2092/5269] 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-11-03T15:53:29.6591890Z [2093/5269] 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-11-03T15:53:29.6793260Z [2094/5269] 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-11-03T15:53:29.6936080Z [2095/5269] 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-11-03T15:53:29.6962900Z [2096/5269] 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-11-03T15:53:29.7100870Z [2097/5269] 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-11-03T15:53:29.7104740Z [2098/5269] 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-11-03T15:53:29.7185170Z [2099/5269] 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-11-03T15:53:29.7277640Z [2100/5269] 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-11-03T15:53:29.7940000Z [2101/5269] 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-11-03T15:53:29.8022630Z [2102/5269] 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-11-03T15:53:29.8098480Z [2103/5269] 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-11-03T15:53:29.8228240Z [2104/5269] 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-11-03T15:53:29.8248780Z [2105/5269] 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-11-03T15:53:29.8252330Z [2106/5269] 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-11-03T15:53:29.8395100Z [2107/5269] 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-11-03T15:53:29.8396520Z [2108/5269] 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-11-03T15:53:29.8669780Z [2109/5269] 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-11-03T15:53:29.8887870Z [2110/5269] 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-11-03T15:53:29.9508820Z [2111/5269] 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-11-03T15:53:29.9628720Z [2112/5269] 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-11-03T15:53:29.9631570Z [2113/5269] 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-11-03T15:53:29.9640860Z [2114/5269] 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-11-03T15:53:29.9671960Z [2115/5269] 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-11-03T15:53:29.9801540Z [2116/5269] 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-11-03T15:53:29.9845990Z [2117/5269] 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-11-03T15:53:29.9874710Z [2118/5269] 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-11-03T15:53:30.0248470Z [2119/5269] 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-11-03T15:53:30.0501310Z [2120/5269] 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-11-03T15:53:30.1031850Z [2121/5269] 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-11-03T15:53:30.1165850Z [2122/5269] 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-11-03T15:53:30.1168940Z [2123/5269] 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-11-03T15:53:30.1231310Z [2124/5269] 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-11-03T15:53:30.1342660Z [2125/5269] 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-11-03T15:53:30.1346140Z [2126/5269] 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-11-03T15:53:30.1352110Z [2127/5269] 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-11-03T15:53:30.1534100Z [2128/5269] 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-11-03T15:53:30.1712140Z [2129/5269] 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-11-03T15:53:30.2202040Z [2130/5269] 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-11-03T15:53:30.2555800Z [2131/5269] 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-11-03T15:53:30.2692200Z [2132/5269] 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-11-03T15:53:30.2695300Z [2133/5269] 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-11-03T15:53:30.2827640Z [2134/5269] 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-11-03T15:53:30.2885500Z [2135/5269] 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-11-03T15:53:30.2898620Z [2136/5269] 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-11-03T15:53:30.3111480Z [2137/5269] 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-11-03T15:53:30.3144640Z [2138/5269] 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-11-03T15:53:30.3755690Z [2139/5269] 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-11-03T15:53:30.3814830Z [2140/5269] 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-11-03T15:53:30.3826920Z [2141/5269] 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-11-03T15:53:30.4025800Z [2142/5269] 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-11-03T15:53:30.4331190Z [2143/5269] 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-11-03T15:53:30.4458890Z [2144/5269] 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-11-03T15:53:30.4477460Z [2145/5269] 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-11-03T15:53:30.4493110Z [2146/5269] 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-11-03T15:53:30.4697900Z [2147/5269] 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-11-03T15:53:30.4715100Z [2148/5269] 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-11-03T15:53:30.5403950Z [2149/5269] 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-11-03T15:53:30.5516690Z [2150/5269] 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-11-03T15:53:30.5654960Z [2151/5269] 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-11-03T15:53:30.5658410Z [2152/5269] 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-11-03T15:53:30.5705390Z [2153/5269] 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-11-03T15:53:30.5786740Z [2154/5269] 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-11-03T15:53:30.5870530Z [2155/5269] 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-11-03T15:53:30.5975260Z [2156/5269] 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-11-03T15:53:30.5978040Z [2157/5269] 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-11-03T15:53:30.6040860Z [2158/5269] 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-11-03T15:53:30.6922250Z [2159/5269] 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-11-03T15:53:30.7022820Z [2160/5269] 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-11-03T15:53:30.7142740Z [2161/5269] 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-11-03T15:53:30.7267670Z [2162/5269] 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-11-03T15:53:30.7276300Z [2163/5269] 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-11-03T15:53:30.7391980Z [2164/5269] 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-11-03T15:53:30.7409550Z [2165/5269] 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-11-03T15:53:30.7581230Z [2166/5269] 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-11-03T15:53:30.7597240Z [2167/5269] 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-11-03T15:53:30.7760410Z [2168/5269] 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-11-03T15:53:30.8386310Z [2169/5269] 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-11-03T15:53:30.8516600Z [2170/5269] 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-11-03T15:53:30.8667640Z [2171/5269] 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-11-03T15:53:30.8779580Z [2172/5269] 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-11-03T15:53:30.8821400Z [2173/5269] 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-11-03T15:53:30.8891530Z [2174/5269] 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-11-03T15:53:30.8994890Z [2175/5269] 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-11-03T15:53:30.9100940Z [2176/5269] 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-11-03T15:53:30.9107400Z [2177/5269] 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-11-03T15:53:30.9277130Z [2178/5269] 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-11-03T15:53:30.9817370Z [2179/5269] 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-11-03T15:53:30.9942530Z [2180/5269] 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-11-03T15:53:30.9957780Z [2181/5269] 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-11-03T15:53:31.0146860Z [2182/5269] 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-11-03T15:53:31.0178320Z [2183/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c16.c.o 2025-11-03T15:53:31.0185030Z [2184/5269] 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-11-03T15:53:31.0413000Z [2185/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c64.c.o 2025-11-03T15:53:31.0421200Z [2186/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u16.c.o 2025-11-03T15:53:31.0422880Z [2187/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u64-acc2.c.o 2025-11-03T15:53:31.0612860Z [2188/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u64-acc4.c.o 2025-11-03T15:53:31.1228920Z [2189/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u8.c.o 2025-11-03T15:53:31.1400050Z [2190/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u16.c.o 2025-11-03T15:53:31.1433080Z [2191/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u24.c.o 2025-11-03T15:53:31.1562690Z [2192/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u32.c.o 2025-11-03T15:53:31.1581470Z [2193/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u8.c.o 2025-11-03T15:53:31.1704290Z [2194/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u8.c.o 2025-11-03T15:53:31.1750130Z [2195/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u32.c.o 2025-11-03T15:53:31.1750890Z [2196/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u16.c.o 2025-11-03T15:53:31.1891300Z [2197/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u24.c.o 2025-11-03T15:53:31.1963410Z [2198/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u16.c.o 2025-11-03T15:53:31.2674420Z [2199/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u8.c.o 2025-11-03T15:53:31.2703270Z [2200/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u8.c.o 2025-11-03T15:53:31.2705090Z [2201/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u16.c.o 2025-11-03T15:53:31.2920440Z [2202/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld128-u16.c.o 2025-11-03T15:53:31.2922950Z [2203/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u16.c.o 2025-11-03T15:53:31.2982990Z [2204/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2025-11-03T15:53:31.3219110Z [2205/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2025-11-03T15:53:31.3235460Z [2206/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2025-11-03T15:53:31.3253720Z [2207/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2025-11-03T15:53:31.3903460Z [2208/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2025-11-03T15:53:31.4104620Z [2209/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2025-11-03T15:53:31.4207360Z [2210/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2025-11-03T15:53:31.4209520Z [2211/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.4385150Z [2212/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:31.4398390Z [2213/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.4571990Z [2214/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:31.4601520Z [2215/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.4633720Z [2216/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:31.4801200Z [2217/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:31.5238710Z [2218/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:31.5298250Z [2219/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:31.5395850Z [2220/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:31.5648050Z [2221/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.5694030Z [2222/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.5881050Z [2223/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:31.6049390Z [2224/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:31.6157510Z [2225/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:31.6159220Z [2226/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.6287630Z [2227/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:31.6795640Z [2228/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.6828030Z [2229/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:31.6845240Z [2230/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:31.6921170Z [2231/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.6950770Z [2232/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:31.7303970Z [2233/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:31.7480490Z [2234/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:31.7528040Z [2235/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:31.7552740Z [2236/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:31.7681410Z [2237/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.8214520Z [2238/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.8351920Z [2239/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.8353970Z [2240/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:31.8425080Z [2241/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:31.8543840Z [2242/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:31.8636760Z [2243/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.9159970Z [2244/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:31.9363850Z [2245/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.9367920Z [2246/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:31.9432600Z [2247/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:31.9530310Z [2248/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.9721440Z [2249/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:31.9852880Z [2250/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-11-03T15:53:31.9949480Z [2251/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:32.0057400Z [2252/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2025-11-03T15:53:32.0162380Z [2253/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul8.c.o 2025-11-03T15:53:32.0625490Z [2254/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u8.c.o 2025-11-03T15:53:32.0707410Z [2255/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u24.c.o 2025-11-03T15:53:32.0833420Z [2256/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u16.c.o 2025-11-03T15:53:32.0901960Z [2257/5269] 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-11-03T15:53:32.0956950Z [2258/5269] 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-11-03T15:53:32.1400560Z [2259/5269] 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-11-03T15:53:32.1437210Z [2260/5269] 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-11-03T15:53:32.1588080Z [2261/5269] 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-11-03T15:53:32.1692090Z [2262/5269] 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-11-03T15:53:32.1777040Z [2263/5269] 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-11-03T15:53:32.2240770Z [2264/5269] 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-11-03T15:53:32.2333940Z [2265/5269] 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-11-03T15:53:32.2377760Z [2266/5269] 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-11-03T15:53:32.2395570Z [2267/5269] 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-11-03T15:53:32.2565920Z [2268/5269] 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-11-03T15:53:32.2589710Z [2269/5269] 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-11-03T15:53:32.2764560Z [2270/5269] 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-11-03T15:53:32.2828510Z [2271/5269] 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-11-03T15:53:32.2968650Z [2272/5269] 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-11-03T15:53:32.3298230Z [2273/5269] 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-11-03T15:53:32.3758240Z [2274/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u64.c.o 2025-11-03T15:53:32.3806570Z [2275/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u64-acc2.c.o 2025-11-03T15:53:32.3903090Z [2276/5269] 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-11-03T15:53:32.3906280Z [2277/5269] 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-11-03T15:53:32.3914850Z [2278/5269] 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-11-03T15:53:32.4030220Z [2279/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u64-acc4.c.o 2025-11-03T15:53:32.4088630Z [2280/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u16.c.o 2025-11-03T15:53:32.4151030Z [2281/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u8.c.o 2025-11-03T15:53:32.4691810Z [2282/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld128-u16.c.o 2025-11-03T15:53:32.4830560Z [2283/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u8.c.o 2025-11-03T15:53:32.4948050Z [2284/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld128-u16.c.o 2025-11-03T15:53:32.5036530Z [2285/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u8.c.o 2025-11-03T15:53:32.5110630Z [2286/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u16.c.o 2025-11-03T15:53:32.5197930Z [2287/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u16.c.o 2025-11-03T15:53:32.5490850Z [2288/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u16.c.o 2025-11-03T15:53:32.5546090Z [2289/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u8.c.o 2025-11-03T15:53:32.5705400Z [2290/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u8.c.o 2025-11-03T15:53:32.5837800Z [2291/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld128-u16.c.o 2025-11-03T15:53:32.6032270Z [2292/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2025-11-03T15:53:32.6172500Z [2293/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2025-11-03T15:53:32.6176980Z [2294/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2025-11-03T15:53:32.6384010Z [2295/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2025-11-03T15:53:32.6414640Z [2296/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2025-11-03T15:53:32.6429290Z [2297/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2025-11-03T15:53:32.6859570Z [2298/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2025-11-03T15:53:32.6960100Z [2299/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-dec-zip-neon.c.o 2025-11-03T15:53:32.7162570Z [2300/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-2p2x-minmax-neon-c16.c.o 2025-11-03T15:53:32.7326820Z [2301/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-mov-zip-neon.c.o 2025-11-03T15:53:32.7329660Z [2302/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-4p3x-minmax-neon-c16.c.o 2025-11-03T15:53:32.7478880Z [2303/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-switch-zip-neon.c.o 2025-11-03T15:53:32.7492020Z [2304/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-dec-zip-neon.c.o 2025-11-03T15:53:32.7711650Z [2305/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-multi-zip-neon.c.o 2025-11-03T15:53:32.7765320Z [2306/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-switch-zip-neon.c.o 2025-11-03T15:53:32.8122720Z [2307/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-zip-neon.c.o 2025-11-03T15:53:32.8275230Z [2308/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-switch-zip-neon.c.o 2025-11-03T15:53:32.8323390Z [2309/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-mov-zip-neon.c.o 2025-11-03T15:53:32.8339960Z [2310/5269] 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-11-03T15:53:32.8568730Z [2311/5269] 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-11-03T15:53:32.8579450Z [2312/5269] 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-11-03T15:53:32.8839130Z [2313/5269] 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-11-03T15:53:32.8942900Z [2314/5269] 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-11-03T15:53:32.8948360Z [2315/5269] 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-11-03T15:53:32.9163580Z [2316/5269] 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-11-03T15:53:32.9399350Z [2317/5269] 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-11-03T15:53:32.9559490Z [2318/5269] 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-11-03T15:53:32.9689820Z [2319/5269] 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-11-03T15:53:32.9770020Z [2320/5269] 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-11-03T15:53:32.9935860Z [2321/5269] 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-11-03T15:53:32.9949220Z [2322/5269] 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-11-03T15:53:33.0185460Z [2323/5269] 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-11-03T15:53:33.0348610Z [2324/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-mov-zip-neon.c.o 2025-11-03T15:53:33.0384270Z [2325/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-dec-zip-neon.c.o 2025-11-03T15:53:33.0639300Z [2326/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-multi-zip-neon.c.o 2025-11-03T15:53:33.0842140Z [2327/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-dec-zip-neon.c.o 2025-11-03T15:53:33.0897530Z [2328/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-switch-zip-neon.c.o 2025-11-03T15:53:33.0922850Z [2329/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-mov-zip-neon.c.o 2025-11-03T15:53:33.1061170Z [2330/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-multi-zip-neon.c.o 2025-11-03T15:53:33.1139290Z [2331/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-switch-zip-neon.c.o 2025-11-03T15:53:33.1141660Z [2332/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-dec-zip-neon.c.o 2025-11-03T15:53:33.1506890Z [2333/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-mov-zip-neon.c.o 2025-11-03T15:53:33.1771630Z [2334/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-mov-zip-neon.c.o 2025-11-03T15:53:33.1980370Z [2335/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-zip-neon.c.o 2025-11-03T15:53:33.1986260Z [2336/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-switch-zip-neon.c.o 2025-11-03T15:53:33.2032300Z [2337/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-switch-zip-neon.c.o 2025-11-03T15:53:33.2239320Z [2338/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-gio-neon-u2.c.o 2025-11-03T15:53:33.2261620Z [2339/5269] 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-11-03T15:53:33.2698210Z [2340/5269] 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-11-03T15:53:33.2764240Z [2341/5269] 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-11-03T15:53:33.2787710Z [2342/5269] 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-11-03T15:53:33.3081200Z [2343/5269] 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-11-03T15:53:33.3098620Z [2344/5269] 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-11-03T15:53:33.3250830Z [2345/5269] 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-11-03T15:53:33.3253390Z [2346/5269] 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-11-03T15:53:33.3268470Z [2347/5269] 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-11-03T15:53:33.3338500Z [2348/5269] 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-11-03T15:53:33.3555270Z [2349/5269] 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-11-03T15:53:33.4036730Z [2350/5269] 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-11-03T15:53:33.4045130Z [2351/5269] 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-11-03T15:53:33.4259150Z [2352/5269] 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-11-03T15:53:33.4263950Z [2353/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4-prfm.c.o 2025-11-03T15:53:33.4309230Z [2354/5269] 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-11-03T15:53:33.4480400Z [2355/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4-prfm.c.o 2025-11-03T15:53:33.4576560Z [2356/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8-prfm.c.o 2025-11-03T15:53:33.4772050Z [2357/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4.c.o 2025-11-03T15:53:33.4878910Z [2358/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4.c.o 2025-11-03T15:53:33.4893860Z [2359/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8.c.o 2025-11-03T15:53:33.5272930Z [2360/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8-prfm.c.o 2025-11-03T15:53:33.5398930Z [2361/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8.c.o 2025-11-03T15:53:33.5417160Z [2362/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-mov-zip-neon.c.o 2025-11-03T15:53:33.5593500Z [2363/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-dec-zip-neon.c.o 2025-11-03T15:53:33.5603140Z [2364/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-multi-zip-neon.c.o 2025-11-03T15:53:33.5607670Z [2365/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-switch-zip-neon.c.o 2025-11-03T15:53:33.5859150Z [2366/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-dec-zip-neon.c.o 2025-11-03T15:53:33.6307440Z [2367/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-mov-zip-neon.c.o 2025-11-03T15:53:33.6545300Z [2368/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-switch-zip-neon.c.o 2025-11-03T15:53:33.6564010Z [2369/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-multi-zip-neon.c.o 2025-11-03T15:53:33.6694570Z [2370/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-multi-zip-neon.c.o 2025-11-03T15:53:33.6710850Z [2371/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-multi-zip-neon.c.o 2025-11-03T15:53:33.6755980Z [2372/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-mov-zip-neon.c.o 2025-11-03T15:53:33.6861780Z [2373/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-switch-zip-neon.c.o 2025-11-03T15:53:33.6865610Z [2374/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-mov-zip-neon.c.o 2025-11-03T15:53:33.6866850Z [2375/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-dec-zip-neon.c.o 2025-11-03T15:53:33.7541880Z [2376/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-switch-zip-neon.c.o 2025-11-03T15:53:33.7716850Z [2377/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-zip-neon.c.o 2025-11-03T15:53:33.7728980Z [2378/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-multi-zip-neon.c.o 2025-11-03T15:53:33.7737450Z [2379/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-switch-zip-neon.c.o 2025-11-03T15:53:33.7818480Z [2380/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-mov-zip-neon.c.o 2025-11-03T15:53:33.7986770Z [2381/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-multi-zip-neon.c.o 2025-11-03T15:53:33.8051450Z [2382/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u8.c.o 2025-11-03T15:53:33.8257280Z [2383/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-switch-zip-neon.c.o 2025-11-03T15:53:33.8301220Z [2384/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u8.c.o 2025-11-03T15:53:33.8861140Z [2385/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-shland.c.o 2025-11-03T15:53:33.9071350Z [2386/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-zip.c.o 2025-11-03T15:53:33.9126650Z [2387/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-zip.c.o 2025-11-03T15:53:33.9198220Z [2388/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-shland.c.o 2025-11-03T15:53:33.9237000Z [2389/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-shland.c.o 2025-11-03T15:53:33.9357900Z [2390/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-shland.c.o 2025-11-03T15:53:33.9386170Z [2391/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-zip.c.o 2025-11-03T15:53:33.9589420Z [2392/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-zip.c.o 2025-11-03T15:53:33.9942070Z [2393/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-zip.c.o 2025-11-03T15:53:34.0127400Z [2394/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-shland.c.o 2025-11-03T15:53:34.0264400Z [2395/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.0315890Z [2396/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma.c.o 2025-11-03T15:53:34.0493230Z [2397/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma.c.o 2025-11-03T15:53:34.0518690Z [2398/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.0540330Z [2399/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.0985790Z [2400/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma.c.o 2025-11-03T15:53:34.1087920Z [2401/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.1277010Z [2402/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.1289170Z [2403/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.1444020Z [2404/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma.c.o 2025-11-03T15:53:34.1474940Z [2405/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma.c.o 2025-11-03T15:53:34.1501230Z [2406/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.2043630Z [2407/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma.c.o 2025-11-03T15:53:34.2151130Z [2408/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma.c.o 2025-11-03T15:53:34.2281720Z [2409/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.2337860Z [2410/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.2473990Z [2411/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma.c.o 2025-11-03T15:53:34.2720760Z [2412/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma.c.o 2025-11-03T15:53:34.2736180Z [2413/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma.c.o 2025-11-03T15:53:34.2888810Z [2414/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.2895700Z [2415/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.2988240Z [2416/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.3532800Z [2417/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.3535540Z [2418/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.3619280Z [2419/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma.c.o 2025-11-03T15:53:34.3766740Z [2420/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.3801170Z [2421/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma.c.o 2025-11-03T15:53:34.4204480Z [2422/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma.c.o 2025-11-03T15:53:34.4279500Z [2423/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma-acc2.c.o 2025-11-03T15:53:34.4386950Z [2424/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma.c.o 2025-11-03T15:53:34.4495380Z [2425/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-11-03T15:53:34.4633260Z [2426/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma.c.o 2025-11-03T15:53:34.5043000Z [2427/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-11-03T15:53:34.5076470Z [2428/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld128.c.o 2025-11-03T15:53:34.5212090Z [2429/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-11-03T15:53:34.5577100Z [2430/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neonfma.c.o 2025-11-03T15:53:34.5774880Z [2431/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neonfma-dup-ld64.c.o 2025-11-03T15:53:34.5775710Z [2432/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld128.c.o 2025-11-03T15:53:34.5953500Z [2433/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neonfma.c.o 2025-11-03T15:53:34.5966070Z [2434/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld64.c.o 2025-11-03T15:53:34.6017160Z [2435/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld128.c.o 2025-11-03T15:53:34.6244670Z [2436/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neonfma.c.o 2025-11-03T15:53:34.6657230Z [2437/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neonfma.c.o 2025-11-03T15:53:34.6786240Z [2438/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld64.c.o 2025-11-03T15:53:34.6815330Z [2439/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p4.c.o 2025-11-03T15:53:34.6870230Z [2440/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p16.c.o 2025-11-03T15:53:34.6928970Z [2441/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld128.c.o 2025-11-03T15:53:34.7017550Z [2442/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neonfma.c.o 2025-11-03T15:53:34.7424760Z [2443/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c4.c.o 2025-11-03T15:53:34.7614630Z [2444/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-11-03T15:53:34.7732540Z [2445/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld128.c.o 2025-11-03T15:53:34.7841880Z [2446/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-11-03T15:53:34.8087440Z [2447/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld128.c.o 2025-11-03T15:53:34.8186210Z [2448/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-11-03T15:53:34.8208220Z [2449/5269] 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-11-03T15:53:34.8220030Z [2450/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neonfma.c.o 2025-11-03T15:53:34.8355840Z [2451/5269] 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-11-03T15:53:34.8546710Z [2452/5269] 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-11-03T15:53:34.9189380Z [2453/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8s4-minmax-neonfma.c.o 2025-11-03T15:53:34.9230430Z [2454/5269] 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-11-03T15:53:34.9235650Z [2455/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8s4-minmax-neonfma.c.o 2025-11-03T15:53:34.9438590Z [2456/5269] 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-11-03T15:53:34.9470830Z [2457/5269] 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-11-03T15:53:34.9560710Z [2458/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u4.c.o 2025-11-03T15:53:34.9713400Z [2459/5269] 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-11-03T15:53:34.9716920Z [2460/5269] 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-11-03T15:53:34.9867130Z [2461/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8s4-minmax-neonfma.c.o 2025-11-03T15:53:35.0090710Z [2462/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u4.c.o 2025-11-03T15:53:35.0457370Z [2463/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc4.c.o 2025-11-03T15:53:35.0499440Z [2464/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u8-acc2.c.o 2025-11-03T15:53:35.0511010Z [2465/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc2.c.o 2025-11-03T15:53:35.0710840Z [2466/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-pipelined.c.o 2025-11-03T15:53:35.0733920Z [2467/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-x2.c.o 2025-11-03T15:53:35.0759710Z [2468/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma.c.o 2025-11-03T15:53:35.1045140Z [2469/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma.c.o 2025-11-03T15:53:35.1100650Z [2470/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-x2.c.o 2025-11-03T15:53:35.1272580Z [2471/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-pipelined.c.o 2025-11-03T15:53:35.1286950Z [2472/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neonfma.c.o 2025-11-03T15:53:35.1892310Z [2473/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma.c.o 2025-11-03T15:53:35.1919420Z [2474/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-pipelined.c.o 2025-11-03T15:53:35.1923100Z [2475/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-x2.c.o 2025-11-03T15:53:35.1931190Z [2476/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma.c.o 2025-11-03T15:53:35.2009660Z [2477/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u4.c.o 2025-11-03T15:53:35.2158140Z [2478/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-x2.c.o 2025-11-03T15:53:35.2539570Z [2479/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u8.c.o 2025-11-03T15:53:35.2568660Z [2480/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u12.c.o 2025-11-03T15:53:35.2831590Z [2481/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u4.c.o 2025-11-03T15:53:35.2874550Z [2482/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u12.c.o 2025-11-03T15:53:35.3169750Z [2483/5269] 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-11-03T15:53:35.3228960Z [2484/5269] 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-11-03T15:53:35.3364320Z [2485/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neonfma-2x.c.o 2025-11-03T15:53:35.3369980Z [2486/5269] 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-11-03T15:53:35.3562400Z [2487/5269] 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-11-03T15:53:35.3746040Z [2488/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u16.c.o 2025-11-03T15:53:35.4053990Z [2489/5269] 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-11-03T15:53:35.4099030Z [2490/5269] 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-11-03T15:53:35.4237520Z [2491/5269] 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-11-03T15:53:35.4292880Z [2492/5269] 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-11-03T15:53:35.4399140Z [2493/5269] 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-11-03T15:53:35.4565440Z [2494/5269] 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-11-03T15:53:35.4791480Z [2495/5269] 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-11-03T15:53:35.4900560Z [2496/5269] 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-11-03T15:53:35.4923160Z [2497/5269] 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-11-03T15:53:35.5039470Z [2498/5269] 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-11-03T15:53:35.5405900Z [2499/5269] 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-11-03T15:53:35.5419670Z [2500/5269] 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-11-03T15:53:35.5560750Z [2501/5269] 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-11-03T15:53:35.5676410Z [2502/5269] 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-11-03T15:53:35.5813630Z [2503/5269] 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-11-03T15:53:35.6099970Z [2504/5269] 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-11-03T15:53:35.6271360Z [2505/5269] 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-11-03T15:53:35.6320190Z [2506/5269] 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-11-03T15:53:35.6440870Z [2507/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u4.c.o 2025-11-03T15:53:35.6490270Z [2508/5269] 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-11-03T15:53:35.6793630Z [2509/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u16.c.o 2025-11-03T15:53:35.6894860Z [2510/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u4.c.o 2025-11-03T15:53:35.6957560Z [2511/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u8.c.o 2025-11-03T15:53:35.6960640Z [2512/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u12.c.o 2025-11-03T15:53:35.7203700Z [2513/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u8.c.o 2025-11-03T15:53:35.7568320Z [2514/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u12.c.o 2025-11-03T15:53:35.7620310Z [2515/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u8.c.o 2025-11-03T15:53:35.7665170Z [2516/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u16.c.o 2025-11-03T15:53:35.7845750Z [2517/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u4.c.o 2025-11-03T15:53:35.7901220Z [2518/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u12.c.o 2025-11-03T15:53:35.8057760Z [2519/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u16.c.o 2025-11-03T15:53:35.8245280Z [2520/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u16.c.o 2025-11-03T15:53:35.8440210Z [2521/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u24.c.o 2025-11-03T15:53:35.8645540Z [2522/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u8.c.o 2025-11-03T15:53:35.9069170Z [2523/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u16.c.o 2025-11-03T15:53:35.9124510Z [2524/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u4.c.o 2025-11-03T15:53:35.9182400Z [2525/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u4.c.o 2025-11-03T15:53:35.9304700Z [2526/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u24.c.o 2025-11-03T15:53:35.9305610Z [2527/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u4.c.o 2025-11-03T15:53:35.9318100Z [2528/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u8.c.o 2025-11-03T15:53:35.9332070Z [2529/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u4.c.o 2025-11-03T15:53:35.9515790Z [2530/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:35.9936800Z [2531/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:36.0046720Z [2532/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:36.0426930Z [2533/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:36.0592730Z [2534/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:36.0630320Z [2535/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:36.0711790Z [2536/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:36.0831570Z [2537/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:36.0842780Z [2538/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:36.0951130Z [2539/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:36.0973030Z [2540/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:36.1391480Z [2541/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:36.1402030Z [2542/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:36.1620200Z [2543/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:36.1998090Z [2544/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:36.2113290Z [2545/5269] 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-11-03T15:53:36.2183840Z [2546/5269] 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-11-03T15:53:36.2296320Z [2547/5269] 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-11-03T15:53:36.2302280Z [2548/5269] 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-11-03T15:53:36.2315360Z [2549/5269] 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-11-03T15:53:36.2490230Z [2550/5269] 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-11-03T15:53:36.2883510Z [2551/5269] 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-11-03T15:53:36.3041210Z [2552/5269] 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-11-03T15:53:36.3050700Z [2553/5269] 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-11-03T15:53:36.3599610Z [2554/5269] 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-11-03T15:53:36.3616090Z [2555/5269] 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-11-03T15:53:36.3698630Z [2556/5269] 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-11-03T15:53:36.3777550Z [2557/5269] 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-11-03T15:53:36.3794150Z [2558/5269] 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-11-03T15:53:36.3842880Z [2559/5269] 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-11-03T15:53:36.4257740Z [2560/5269] 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-11-03T15:53:36.4661050Z [2561/5269] 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-11-03T15:53:36.4675290Z [2562/5269] 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-11-03T15:53:36.4683100Z [2563/5269] 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-11-03T15:53:36.4961390Z [2564/5269] 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-11-03T15:53:36.5056420Z [2565/5269] 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-11-03T15:53:36.5058930Z [2566/5269] 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-11-03T15:53:36.5102820Z [2567/5269] 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-11-03T15:53:36.5114340Z [2568/5269] 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-11-03T15:53:36.5480370Z [2569/5269] 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-11-03T15:53:36.5777750Z [2570/5269] 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-11-03T15:53:36.5960380Z [2571/5269] 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-11-03T15:53:36.6042440Z [2572/5269] 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-11-03T15:53:36.6204390Z [2573/5269] 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-11-03T15:53:36.6256210Z [2574/5269] 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-11-03T15:53:36.6438730Z [2575/5269] 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-11-03T15:53:36.6568040Z [2576/5269] 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-11-03T15:53:36.6769920Z [2577/5269] 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-11-03T15:53:36.7078810Z [2578/5269] 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-11-03T15:53:36.7219420Z [2579/5269] 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-11-03T15:53:36.7234350Z [2580/5269] 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-11-03T15:53:36.7389220Z [2581/5269] 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-11-03T15:53:36.7463250Z [2582/5269] 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-11-03T15:53:36.7465410Z [2583/5269] 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-11-03T15:53:36.7480750Z [2584/5269] 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-11-03T15:53:36.7694000Z [2585/5269] 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-11-03T15:53:36.8186120Z [2586/5269] 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-11-03T15:53:36.8315840Z [2587/5269] 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-11-03T15:53:36.8557670Z [2588/5269] 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-11-03T15:53:36.8870790Z [2589/5269] 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-11-03T15:53:36.8930040Z [2590/5269] 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-11-03T15:53:36.8977200Z [2591/5269] 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-11-03T15:53:36.8979150Z [2592/5269] 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-11-03T15:53:36.8982150Z [2593/5269] 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-11-03T15:53:36.9066150Z [2594/5269] 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-11-03T15:53:36.9229860Z [2595/5269] 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-11-03T15:53:36.9957170Z [2596/5269] 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-11-03T15:53:37.0045790Z [2597/5269] 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-11-03T15:53:37.0062470Z [2598/5269] 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-11-03T15:53:37.0276040Z [2599/5269] 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-11-03T15:53:37.0282640Z [2600/5269] 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-11-03T15:53:37.0422980Z [2601/5269] 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-11-03T15:53:37.0475580Z [2602/5269] 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-11-03T15:53:37.0548830Z [2603/5269] 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-11-03T15:53:37.0551890Z [2604/5269] 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-11-03T15:53:37.0779630Z [2605/5269] 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-11-03T15:53:37.1501020Z [2606/5269] 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-11-03T15:53:37.1521260Z [2607/5269] 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-11-03T15:53:37.1592640Z [2608/5269] 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-11-03T15:53:37.1748340Z [2609/5269] 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-11-03T15:53:37.2110830Z [2610/5269] 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-11-03T15:53:37.2153430Z [2611/5269] 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-11-03T15:53:37.2241460Z [2612/5269] 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-11-03T15:53:37.2334980Z [2613/5269] 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-11-03T15:53:37.2337600Z [2614/5269] 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-11-03T15:53:37.2475370Z [2615/5269] 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-11-03T15:53:37.2933410Z [2616/5269] 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-11-03T15:53:37.2957000Z [2617/5269] 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-11-03T15:53:37.3005510Z [2618/5269] 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-11-03T15:53:37.3227740Z [2619/5269] 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-11-03T15:53:37.3594900Z [2620/5269] 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-11-03T15:53:37.3694910Z [2621/5269] 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-11-03T15:53:37.3701980Z [2622/5269] 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-11-03T15:53:37.3910480Z [2623/5269] 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-11-03T15:53:37.3960100Z [2624/5269] 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-11-03T15:53:37.4054130Z [2625/5269] 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-11-03T15:53:37.4549900Z [2626/5269] 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-11-03T15:53:37.4715390Z [2627/5269] 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-11-03T15:53:37.4822850Z [2628/5269] 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-11-03T15:53:37.4920090Z [2629/5269] 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-11-03T15:53:37.4924960Z [2630/5269] 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-11-03T15:53:37.5149110Z [2631/5269] 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-11-03T15:53:37.5175030Z [2632/5269] 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-11-03T15:53:37.5190820Z [2633/5269] 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-11-03T15:53:37.5463280Z [2634/5269] 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-11-03T15:53:37.5842820Z [2635/5269] 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-11-03T15:53:37.5949490Z [2636/5269] 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-11-03T15:53:37.6042020Z [2637/5269] 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-11-03T15:53:37.6277960Z [2638/5269] 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-11-03T15:53:37.6293420Z [2639/5269] 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-11-03T15:53:37.6511470Z [2640/5269] 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-11-03T15:53:37.6547380Z [2641/5269] 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-11-03T15:53:37.6686810Z [2642/5269] 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-11-03T15:53:37.7001860Z [2643/5269] 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-11-03T15:53:37.7105380Z [2644/5269] 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-11-03T15:53:37.7339870Z [2645/5269] 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-11-03T15:53:37.7431520Z [2646/5269] 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-11-03T15:53:37.7640430Z [2647/5269] 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-11-03T15:53:37.7837690Z [2648/5269] 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-11-03T15:53:37.7843740Z [2649/5269] 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-11-03T15:53:37.7959640Z [2650/5269] 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-11-03T15:53:37.8090350Z [2651/5269] 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-11-03T15:53:37.8095840Z [2652/5269] 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-11-03T15:53:37.8285730Z [2653/5269] 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-11-03T15:53:37.8417940Z [2654/5269] 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-11-03T15:53:37.9074030Z [2655/5269] 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-11-03T15:53:37.9082570Z [2656/5269] 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-11-03T15:53:37.9146440Z [2657/5269] 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-11-03T15:53:37.9265040Z [2658/5269] 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-11-03T15:53:37.9342680Z [2659/5269] 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-11-03T15:53:37.9447820Z [2660/5269] 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-11-03T15:53:37.9498490Z [2661/5269] 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-11-03T15:53:37.9557100Z [2662/5269] 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-11-03T15:53:37.9764150Z [2663/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2025-11-03T15:53:37.9828110Z [2664/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2025-11-03T15:53:38.0408710Z [2665/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2025-11-03T15:53:38.0511140Z [2666/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2025-11-03T15:53:38.0670900Z [2667/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2025-11-03T15:53:38.0676870Z [2668/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.0781950Z [2669/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2025-11-03T15:53:38.0789910Z [2670/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.0895430Z [2671/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.0989430Z [2672/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.1482770Z [2673/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.1592530Z [2674/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.1722330Z [2675/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.1836490Z [2676/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.1940290Z [2677/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.2037870Z [2678/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.2043660Z [2679/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.2359950Z [2680/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.2381210Z [2681/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.2712360Z [2682/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.2951450Z [2683/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-11-03T15:53:38.2968840Z [2684/5269] 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-11-03T15:53:38.3144910Z [2685/5269] 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-11-03T15:53:38.3199780Z [2686/5269] 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-11-03T15:53:38.3301770Z [2687/5269] 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-11-03T15:53:38.3422760Z [2688/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2025-11-03T15:53:38.3468970Z [2689/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2025-11-03T15:53:38.3860350Z [2690/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2025-11-03T15:53:38.4058160Z [2691/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2025-11-03T15:53:38.4176950Z [2692/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2025-11-03T15:53:38.4487840Z [2693/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u4.c.o 2025-11-03T15:53:38.4497270Z [2694/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u4.c.o 2025-11-03T15:53:38.4499770Z [2695/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u4.c.o 2025-11-03T15:53:38.4509950Z [2696/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u16.c.o 2025-11-03T15:53:38.4731570Z [2697/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u8.c.o 2025-11-03T15:53:38.4837510Z [2698/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u16.c.o 2025-11-03T15:53:38.5061610Z [2699/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u32.c.o 2025-11-03T15:53:38.5118200Z [2700/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u48.c.o 2025-11-03T15:53:38.5384590Z [2701/5269] 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-11-03T15:53:38.5741140Z [2702/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2025-11-03T15:53:38.5771130Z [2703/5269] 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-11-03T15:53:38.5863310Z [2704/5269] 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-11-03T15:53:38.5875920Z [2705/5269] 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-11-03T15:53:38.5996140Z [2706/5269] 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-11-03T15:53:38.5998460Z [2707/5269] 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-11-03T15:53:38.6281680Z [2708/5269] 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-11-03T15:53:38.6357700Z [2709/5269] 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-11-03T15:53:38.6528280Z [2710/5269] 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-11-03T15:53:38.6552440Z [2711/5269] 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-11-03T15:53:38.7183540Z [2712/5269] 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-11-03T15:53:38.7222720Z [2713/5269] 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-11-03T15:53:38.7237550Z [2714/5269] 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-11-03T15:53:38.7421480Z [2715/5269] 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-11-03T15:53:38.7467190Z [2716/5269] 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-11-03T15:53:38.7469570Z [2717/5269] 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-11-03T15:53:38.7662490Z [2718/5269] 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-11-03T15:53:38.7937840Z [2719/5269] 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-11-03T15:53:38.8110760Z [2720/5269] 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-11-03T15:53:38.8147080Z [2721/5269] 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-11-03T15:53:38.8661200Z [2722/5269] 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-11-03T15:53:38.8709440Z [2723/5269] 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-11-03T15:53:38.8860670Z [2724/5269] 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-11-03T15:53:38.8942770Z [2725/5269] 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-11-03T15:53:38.8971640Z [2726/5269] 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-11-03T15:53:38.9174060Z [2727/5269] 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-11-03T15:53:38.9322180Z [2728/5269] 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-11-03T15:53:38.9330340Z [2729/5269] 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-11-03T15:53:38.9388230Z [2730/5269] 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-11-03T15:53:38.9558480Z [2731/5269] 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-11-03T15:53:39.0077800Z [2732/5269] 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-11-03T15:53:39.0144850Z [2733/5269] 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-11-03T15:53:39.0306210Z [2734/5269] 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-11-03T15:53:39.0350990Z [2735/5269] 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-11-03T15:53:39.0354940Z [2736/5269] 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-11-03T15:53:39.0611900Z [2737/5269] 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-11-03T15:53:39.0817060Z [2738/5269] 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-11-03T15:53:39.0828770Z [2739/5269] 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-11-03T15:53:39.0960590Z [2740/5269] 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-11-03T15:53:39.1125850Z [2741/5269] 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-11-03T15:53:39.1450580Z [2742/5269] 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-11-03T15:53:39.1568970Z [2743/5269] 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-11-03T15:53:39.1611970Z [2744/5269] 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-11-03T15:53:39.1718820Z [2745/5269] 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-11-03T15:53:39.1912940Z [2746/5269] 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-11-03T15:53:39.2263630Z [2747/5269] 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-11-03T15:53:39.2331040Z [2748/5269] 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-11-03T15:53:39.2436020Z [2749/5269] 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-11-03T15:53:39.2527170Z [2750/5269] 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-11-03T15:53:39.2613460Z [2751/5269] 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-11-03T15:53:39.3122010Z [2752/5269] 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-11-03T15:53:39.3132560Z [2753/5269] 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-11-03T15:53:39.3302610Z [2754/5269] 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-11-03T15:53:39.3367670Z [2755/5269] 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-11-03T15:53:39.3371020Z [2756/5269] 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-11-03T15:53:39.3571700Z [2757/5269] 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-11-03T15:53:39.3912950Z [2758/5269] 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-11-03T15:53:39.3939040Z [2759/5269] 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-11-03T15:53:39.4158450Z [2760/5269] 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-11-03T15:53:39.4252730Z [2761/5269] 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-11-03T15:53:39.4525510Z [2762/5269] 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-11-03T15:53:39.4703770Z [2763/5269] 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-11-03T15:53:39.4711890Z [2764/5269] 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-11-03T15:53:39.4957100Z [2765/5269] 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-11-03T15:53:39.4962990Z [2766/5269] 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-11-03T15:53:39.4967450Z [2767/5269] 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-11-03T15:53:39.5290010Z [2768/5269] 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-11-03T15:53:39.5305090Z [2769/5269] 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-11-03T15:53:39.5470300Z [2770/5269] 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-11-03T15:53:39.5534880Z [2771/5269] 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-11-03T15:53:39.5969950Z [2772/5269] 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-11-03T15:53:39.6196960Z [2773/5269] 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-11-03T15:53:39.6293380Z [2774/5269] 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-11-03T15:53:39.6368710Z [2775/5269] 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-11-03T15:53:39.6459050Z [2776/5269] 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-11-03T15:53:39.6563130Z [2777/5269] 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-11-03T15:53:39.6581660Z [2778/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma.c.o 2025-11-03T15:53:39.6625740Z [2779/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma-prfm.c.o 2025-11-03T15:53:39.6767850Z [2780/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma-prfm.c.o 2025-11-03T15:53:39.7221950Z [2781/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma-prfm.c.o 2025-11-03T15:53:39.7531400Z [2782/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma.c.o 2025-11-03T15:53:39.7703300Z [2783/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma.c.o 2025-11-03T15:53:39.7766540Z [2784/5269] 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-11-03T15:53:39.7770580Z [2785/5269] 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-11-03T15:53:39.7857760Z [2786/5269] 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-11-03T15:53:39.7964780Z [2787/5269] 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-11-03T15:53:39.7974770Z [2788/5269] 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-11-03T15:53:39.8111820Z [2789/5269] 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-11-03T15:53:39.8305720Z [2790/5269] 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-11-03T15:53:39.8646500Z [2791/5269] 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-11-03T15:53:39.9218420Z [2792/5269] 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-11-03T15:53:39.9226180Z [2793/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-aarch64-neonfma.c.o 2025-11-03T15:53:39.9254230Z [2794/5269] 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-11-03T15:53:39.9288240Z [2795/5269] 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-11-03T15:53:39.9366490Z [2796/5269] 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-11-03T15:53:39.9458770Z [2797/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x4-minmax-aarch64-neonfma.c.o 2025-11-03T15:53:39.9460940Z [2798/5269] 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-11-03T15:53:39.9464850Z [2799/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x2-minmax-aarch64-neonfma.c.o 2025-11-03T15:53:39.9806390Z [2800/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-aarch64-neonfma.c.o 2025-11-03T15:53:40.0355710Z [2801/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x2-minmax-aarch64-neonfma.c.o 2025-11-03T15:53:40.0632520Z [2802/5269] 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-11-03T15:53:40.0635650Z [2803/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x4-minmax-aarch64-neonfma.c.o 2025-11-03T15:53:40.0638240Z [2804/5269] 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-11-03T15:53:40.0640750Z [2805/5269] 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-11-03T15:53:40.0831810Z [2806/5269] 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-11-03T15:53:40.0834560Z [2807/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x4-minmax-aarch64-neonfma.c.o 2025-11-03T15:53:40.0899900Z [2808/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x2-minmax-aarch64-neonfma.c.o 2025-11-03T15:53:40.0979880Z [2809/5269] 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-11-03T15:53:40.1663920Z [2810/5269] 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-11-03T15:53:40.1724440Z [2811/5269] 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-11-03T15:53:40.1906340Z [2812/5269] 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-11-03T15:53:40.1935750Z [2813/5269] 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-11-03T15:53:40.1955050Z [2814/5269] 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-11-03T15:53:40.2128620Z [2815/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u1.c.o 2025-11-03T15:53:40.2129530Z [2816/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u2.c.o 2025-11-03T15:53:40.2378440Z [2817/5269] 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-11-03T15:53:40.2530650Z [2818/5269] 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-11-03T15:53:40.2546000Z [2819/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u4.c.o 2025-11-03T15:53:40.2829750Z [2820/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u2.c.o 2025-11-03T15:53:40.2847370Z [2821/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u1.c.o 2025-11-03T15:53:40.3114670Z [2822/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u4.c.o 2025-11-03T15:53:40.3137700Z [2823/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u1.c.o 2025-11-03T15:53:40.3347500Z [2824/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u4.c.o 2025-11-03T15:53:40.3432840Z [2825/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u1.c.o 2025-11-03T15:53:40.3547420Z [2826/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u4.c.o 2025-11-03T15:53:40.3656410Z [2827/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u1.c.o 2025-11-03T15:53:40.3795470Z [2828/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u2.c.o 2025-11-03T15:53:40.3922610Z [2829/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u4.c.o 2025-11-03T15:53:40.4221930Z [2830/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u2.c.o 2025-11-03T15:53:40.4274210Z [2831/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u1.c.o 2025-11-03T15:53:40.4548480Z [2832/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u1.c.o 2025-11-03T15:53:40.4758330Z [2833/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u4.c.o 2025-11-03T15:53:40.4766510Z [2834/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u4.c.o 2025-11-03T15:53:40.4824940Z [2835/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u2.c.o 2025-11-03T15:53:40.5017040Z [2836/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u1.c.o 2025-11-03T15:53:40.5194370Z [2837/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u4.c.o 2025-11-03T15:53:40.5228450Z [2838/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u2.c.o 2025-11-03T15:53:40.5395630Z [2839/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u1.c.o 2025-11-03T15:53:40.5603050Z [2840/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u4.c.o 2025-11-03T15:53:40.5697420Z [2841/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u2.c.o 2025-11-03T15:53:40.5861190Z [2842/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u1.c.o 2025-11-03T15:53:40.6068390Z [2843/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u1.c.o 2025-11-03T15:53:40.6198360Z [2844/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u4.c.o 2025-11-03T15:53:40.6244150Z [2845/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u2.c.o 2025-11-03T15:53:40.6398380Z [2846/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u4.c.o 2025-11-03T15:53:40.6417820Z [2847/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u1.c.o 2025-11-03T15:53:40.6729770Z [2848/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u2.c.o 2025-11-03T15:53:40.6940120Z [2849/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u4.c.o 2025-11-03T15:53:40.6972080Z [2850/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u1.c.o 2025-11-03T15:53:40.7156010Z [2851/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u4.c.o 2025-11-03T15:53:40.7433400Z [2852/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u1.c.o 2025-11-03T15:53:40.7445810Z [2853/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u4.c.o 2025-11-03T15:53:40.7457710Z [2854/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u2.c.o 2025-11-03T15:53:40.7673220Z [2855/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u1.c.o 2025-11-03T15:53:40.7738700Z [2856/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u2.c.o 2025-11-03T15:53:40.7897490Z [2857/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u2.c.o 2025-11-03T15:53:40.8033520Z [2858/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u4.c.o 2025-11-03T15:53:40.8373160Z [2859/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u1.c.o 2025-11-03T15:53:40.8473400Z [2860/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u4.c.o 2025-11-03T15:53:40.8625900Z [2861/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u2.c.o 2025-11-03T15:53:40.8781320Z [2862/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u2.c.o 2025-11-03T15:53:40.8934260Z [2863/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u4.c.o 2025-11-03T15:53:40.9124980Z [2864/5269] 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-11-03T15:53:40.9258630Z [2865/5269] 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-11-03T15:53:40.9331210Z [2866/5269] 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-11-03T15:53:40.9442190Z [2867/5269] 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-11-03T15:53:40.9550580Z [2868/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u1.c.o 2025-11-03T15:53:40.9949980Z [2869/5269] 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-11-03T15:53:41.0062970Z [2870/5269] 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-11-03T15:53:41.0263680Z [2871/5269] 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-11-03T15:53:41.0363840Z [2872/5269] 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-11-03T15:53:41.0366310Z [2873/5269] 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-11-03T15:53:41.0462700Z [2874/5269] 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-11-03T15:53:41.0665100Z [2875/5269] 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-11-03T15:53:41.1061450Z [2876/5269] 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-11-03T15:53:41.1107070Z [2877/5269] 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-11-03T15:53:41.1305120Z [2878/5269] 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-11-03T15:53:41.1470910Z [2879/5269] 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-11-03T15:53:41.1615720Z [2880/5269] 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-11-03T15:53:41.1771920Z [2881/5269] 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-11-03T15:53:41.1804740Z [2882/5269] 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-11-03T15:53:41.2036950Z [2883/5269] 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-11-03T15:53:41.2063830Z [2884/5269] 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-11-03T15:53:41.2411070Z [2885/5269] 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-11-03T15:53:41.2417150Z [2886/5269] 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-11-03T15:53:41.2622590Z [2887/5269] 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-11-03T15:53:41.2649820Z [2888/5269] 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-11-03T15:53:41.3062330Z [2889/5269] 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-11-03T15:53:41.3160900Z [2890/5269] 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-11-03T15:53:41.3232450Z [2891/5269] 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-11-03T15:53:41.3337030Z [2892/5269] 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-11-03T15:53:41.3445030Z [2893/5269] 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-11-03T15:53:41.3790780Z [2894/5269] 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-11-03T15:53:41.3988770Z [2895/5269] 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-11-03T15:53:41.4095620Z [2896/5269] 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-11-03T15:53:41.4098000Z [2897/5269] 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-11-03T15:53:41.4132830Z [2898/5269] 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-11-03T15:53:41.4390550Z [2899/5269] 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-11-03T15:53:41.4598530Z [2900/5269] 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-11-03T15:53:41.4663400Z [2901/5269] 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-11-03T15:53:41.5009720Z [2902/5269] 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-11-03T15:53:41.5192220Z [2903/5269] 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-11-03T15:53:41.5195630Z [2904/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.5400950Z [2905/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.5409830Z [2906/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith.c.o 2025-11-03T15:53:41.5435910Z [2907/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith.c.o 2025-11-03T15:53:41.5621430Z [2908/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.5860280Z [2909/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.6226410Z [2910/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.6283250Z [2911/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.6442950Z [2912/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith.c.o 2025-11-03T15:53:41.6480000Z [2913/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.6592310Z [2914/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith.c.o 2025-11-03T15:53:41.6610620Z [2915/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith.c.o 2025-11-03T15:53:41.6813610Z [2916/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith.c.o 2025-11-03T15:53:41.6855490Z [2917/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.7071860Z [2918/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith.c.o 2025-11-03T15:53:41.7219690Z [2919/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.7797720Z [2920/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith.c.o 2025-11-03T15:53:41.7801530Z [2921/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.7898260Z [2922/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.8039360Z [2923/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.8052180Z [2924/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.8093040Z [2925/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith.c.o 2025-11-03T15:53:41.8228170Z [2926/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith.c.o 2025-11-03T15:53:41.8655490Z [2927/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith.c.o 2025-11-03T15:53:41.8879450Z [2928/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith.c.o 2025-11-03T15:53:41.8905290Z [2929/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.9215590Z [2930/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.9329510Z [2931/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith.c.o 2025-11-03T15:53:41.9500390Z [2932/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.9602140Z [2933/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:41.9606190Z [2934/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith.c.o 2025-11-03T15:53:41.9654940Z [2935/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:42.0136120Z [2936/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith.c.o 2025-11-03T15:53:42.0577730Z [2937/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:42.0596830Z [2938/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith-acc2.c.o 2025-11-03T15:53:42.0599660Z [2939/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith.c.o 2025-11-03T15:53:42.0734510Z [2940/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith.c.o 2025-11-03T15:53:42.0738060Z [2941/5269] 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-11-03T15:53:42.0789650Z [2942/5269] 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-11-03T15:53:42.1018820Z [2943/5269] 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-11-03T15:53:42.1036460Z [2944/5269] 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-11-03T15:53:42.1277840Z [2945/5269] 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-11-03T15:53:42.1803080Z [2946/5269] 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-11-03T15:53:42.1879320Z [2947/5269] 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-11-03T15:53:42.1975450Z [2948/5269] 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-11-03T15:53:42.2086620Z [2949/5269] 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-11-03T15:53:42.2094980Z [2950/5269] 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-11-03T15:53:42.2166390Z [2951/5269] 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-11-03T15:53:42.2263270Z [2952/5269] 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-11-03T15:53:42.2531520Z [2953/5269] 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-11-03T15:53:42.2822690Z [2954/5269] 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-11-03T15:53:42.2995000Z [2955/5269] 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-11-03T15:53:42.3081660Z [2956/5269] 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-11-03T15:53:42.3194610Z [2957/5269] 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-11-03T15:53:42.3425880Z [2958/5269] 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-11-03T15:53:42.3468520Z [2959/5269] 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-11-03T15:53:42.3629900Z [2960/5269] 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-11-03T15:53:42.3636460Z [2961/5269] 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-11-03T15:53:42.3903990Z [2962/5269] 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-11-03T15:53:42.4123800Z [2963/5269] 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-11-03T15:53:42.4197370Z [2964/5269] 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-11-03T15:53:42.4208150Z [2965/5269] 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-11-03T15:53:42.4484780Z [2966/5269] 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-11-03T15:53:42.4662690Z [2967/5269] 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-11-03T15:53:42.4878400Z [2968/5269] 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-11-03T15:53:42.4929770Z [2969/5269] 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-11-03T15:53:42.4942790Z [2970/5269] 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-11-03T15:53:42.5109490Z [2971/5269] 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-11-03T15:53:42.5227930Z [2972/5269] 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-11-03T15:53:42.5894410Z [2973/5269] 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-11-03T15:53:42.5903230Z [2974/5269] 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-11-03T15:53:42.5934150Z [2975/5269] 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-11-03T15:53:42.5960500Z [2976/5269] 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-11-03T15:53:42.6136890Z [2977/5269] 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-11-03T15:53:42.6167310Z [2978/5269] 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-11-03T15:53:42.6181840Z [2979/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u4.c.o 2025-11-03T15:53:42.6331050Z [2980/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u8.c.o 2025-11-03T15:53:42.6586860Z [2981/5269] 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-11-03T15:53:42.6695490Z [2982/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u16-acc2.c.o 2025-11-03T15:53:42.7281920Z [2983/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u24-acc3.c.o 2025-11-03T15:53:42.7350710Z [2984/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc2.c.o 2025-11-03T15:53:42.7431010Z [2985/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x8-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:42.7462380Z [2986/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:42.7530350Z [2987/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x8-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:42.7646390Z [2988/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x16-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:42.7746990Z [2989/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x16-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:42.8046830Z [2990/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:42.8289240Z [2991/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x16-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:42.8610300Z [2992/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x8-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:42.8772580Z [2993/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p4.c.o 2025-11-03T15:53:42.8894900Z [2994/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p16.c.o 2025-11-03T15:53:42.8942200Z [2995/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x16-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:42.8946570Z [2996/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x8-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:42.9063680Z [2997/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x8-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:42.9256000Z [2998/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c16.c.o 2025-11-03T15:53:42.9277870Z [2999/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:42.9663630Z [3000/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x8-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:42.9686390Z [3001/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x16-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:42.9954720Z [3002/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x8-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:43.0304800Z [3003/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x16-minmax-neonfp16arith-ld64.c.o 2025-11-03T15:53:43.0313950Z [3004/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u16.c.o 2025-11-03T15:53:43.0319400Z [3005/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u24.c.o 2025-11-03T15:53:43.0400250Z [3006/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u8.c.o 2025-11-03T15:53:43.0508310Z [3007/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc2.c.o 2025-11-03T15:53:43.0517980Z [3008/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u64.c.o 2025-11-03T15:53:43.0702090Z [3009/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc4.c.o 2025-11-03T15:53:43.1015600Z [3010/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40.c.o 2025-11-03T15:53:43.1276000Z [3011/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc2.c.o 2025-11-03T15:53:43.1319320Z [3012/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc5.c.o 2025-11-03T15:53:43.1702650Z [3013/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48.c.o 2025-11-03T15:53:43.1707190Z [3014/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc4.c.o 2025-11-03T15:53:43.1708160Z [3015/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc2.c.o 2025-11-03T15:53:43.1763590Z [3016/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc3.c.o 2025-11-03T15:53:43.1891850Z [3017/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64.c.o 2025-11-03T15:53:43.1921070Z [3018/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc2.c.o 2025-11-03T15:53:43.1948430Z [3019/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72-acc3.c.o 2025-11-03T15:53:43.2377490Z [3020/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc5.c.o 2025-11-03T15:53:43.2578290Z [3021/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc2.c.o 2025-11-03T15:53:43.2681780Z [3022/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72.c.o 2025-11-03T15:53:43.3104410Z [3023/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc3.c.o 2025-11-03T15:53:43.3107190Z [3024/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96.c.o 2025-11-03T15:53:43.3367610Z [3025/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc6.c.o 2025-11-03T15:53:43.3540680Z [3026/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc2.c.o 2025-11-03T15:53:43.3641360Z [3027/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u16-acc2.c.o 2025-11-03T15:53:43.3642250Z [3028/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80.c.o 2025-11-03T15:53:43.3643310Z [3029/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u8.c.o 2025-11-03T15:53:43.3678410Z [3030/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u8.c.o 2025-11-03T15:53:43.3838350Z [3031/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc2.c.o 2025-11-03T15:53:43.3899140Z [3032/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u24-acc3.c.o 2025-11-03T15:53:43.4511940Z [3033/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc1.c.o 2025-11-03T15:53:43.4638800Z [3034/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc2.c.o 2025-11-03T15:53:43.4774520Z [3035/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24.c.o 2025-11-03T15:53:43.4807360Z [3036/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc2.c.o 2025-11-03T15:53:43.4844270Z [3037/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32.c.o 2025-11-03T15:53:43.4961750Z [3038/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc3.c.o 2025-11-03T15:53:43.4965250Z [3039/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc2.c.o 2025-11-03T15:53:43.5034110Z [3040/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc2.c.o 2025-11-03T15:53:43.5040420Z [3041/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc4.c.o 2025-11-03T15:53:43.5063130Z [3042/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc4.c.o 2025-11-03T15:53:43.5858160Z [3043/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64.c.o 2025-11-03T15:53:43.5995400Z [3044/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc1.c.o 2025-11-03T15:53:43.6003300Z [3045/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u8.c.o 2025-11-03T15:53:43.6123530Z [3046/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc2.c.o 2025-11-03T15:53:43.6129790Z [3047/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc2.c.o 2025-11-03T15:53:43.6304620Z [3048/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc3.c.o 2025-11-03T15:53:43.6568760Z [3049/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32.c.o 2025-11-03T15:53:43.6625120Z [3050/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc2.c.o 2025-11-03T15:53:43.6654630Z [3051/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc2.c.o 2025-11-03T15:53:43.6788640Z [3052/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24.c.o 2025-11-03T15:53:43.7120080Z [3053/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64.c.o 2025-11-03T15:53:43.7293960Z [3054/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc4.c.o 2025-11-03T15:53:43.7381950Z [3055/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u8.c.o 2025-11-03T15:53:43.7397270Z [3056/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u16-acc2.c.o 2025-11-03T15:53:43.7595850Z [3057/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc2.c.o 2025-11-03T15:53:43.7609630Z [3058/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u24-acc3.c.o 2025-11-03T15:53:43.7923150Z [3059/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc4.c.o 2025-11-03T15:53:43.7946100Z [3060/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-x2.c.o 2025-11-03T15:53:43.8129790Z [3061/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-pipelined.c.o 2025-11-03T15:53:43.8419490Z [3062/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith.c.o 2025-11-03T15:53:43.8423570Z [3063/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-pipelined.c.o 2025-11-03T15:53:43.8578390Z [3064/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith.c.o 2025-11-03T15:53:43.8735170Z [3065/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-x2.c.o 2025-11-03T15:53:43.8774340Z [3066/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-pipelined.c.o 2025-11-03T15:53:43.8907600Z [3067/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith.c.o 2025-11-03T15:53:43.8975060Z [3068/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-x2.c.o 2025-11-03T15:53:43.9449320Z [3069/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-x2.c.o 2025-11-03T15:53:43.9480510Z [3070/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u8.c.o 2025-11-03T15:53:43.9734330Z [3071/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u8.c.o 2025-11-03T15:53:43.9790840Z [3072/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u8.c.o 2025-11-03T15:53:43.9816770Z [3073/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith.c.o 2025-11-03T15:53:43.9962670Z [3074/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u8.c.o 2025-11-03T15:53:44.0018320Z [3075/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u8.c.o 2025-11-03T15:53:44.0277230Z [3076/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u8.c.o 2025-11-03T15:53:44.0382920Z [3077/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u8.c.o 2025-11-03T15:53:44.0668190Z [3078/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u8.c.o 2025-11-03T15:53:44.0680870Z [3079/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u8.c.o 2025-11-03T15:53:44.0962610Z [3080/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u8.c.o 2025-11-03T15:53:44.0964720Z [3081/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u8.c.o 2025-11-03T15:53:44.1191410Z [3082/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u8.c.o 2025-11-03T15:53:44.1195770Z [3083/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u8.c.o 2025-11-03T15:53:44.1228790Z [3084/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u8.c.o 2025-11-03T15:53:44.1440190Z [3085/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u8.c.o 2025-11-03T15:53:44.1769300Z [3086/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u8.c.o 2025-11-03T15:53:44.1926970Z [3087/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u8.c.o 2025-11-03T15:53:44.2023230Z [3088/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u32.c.o 2025-11-03T15:53:44.2174510Z [3089/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u8.c.o 2025-11-03T15:53:44.2300170Z [3090/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u8.c.o 2025-11-03T15:53:44.2492470Z [3091/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u8.c.o 2025-11-03T15:53:44.2713040Z [3092/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u8.c.o 2025-11-03T15:53:44.2750400Z [3093/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c16-minmax-neonfp16arith-2x.c.o 2025-11-03T15:53:44.2815080Z [3094/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u8.c.o 2025-11-03T15:53:44.3008380Z [3095/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u8.c.o 2025-11-03T15:53:44.3018490Z [3096/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u8.c.o 2025-11-03T15:53:44.3241540Z [3097/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u8.c.o 2025-11-03T15:53:44.3359930Z [3098/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u8.c.o 2025-11-03T15:53:44.3464400Z [3099/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u32.c.o 2025-11-03T15:53:44.3900760Z [3100/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u8.c.o 2025-11-03T15:53:44.3968230Z [3101/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u24.c.o 2025-11-03T15:53:44.4031170Z [3102/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u24.c.o 2025-11-03T15:53:44.4035990Z [3103/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u16.c.o 2025-11-03T15:53:44.4040770Z [3104/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u8.c.o 2025-11-03T15:53:44.4237750Z [3105/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u32.c.o 2025-11-03T15:53:44.4467920Z [3106/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u16.c.o 2025-11-03T15:53:44.4688330Z [3107/5269] 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-11-03T15:53:44.4709100Z [3108/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u32.c.o 2025-11-03T15:53:44.5226920Z [3109/5269] 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-11-03T15:53:44.5239410Z [3110/5269] 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-11-03T15:53:44.5295550Z [3111/5269] 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-11-03T15:53:44.5390070Z [3112/5269] 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-11-03T15:53:44.5484820Z [3113/5269] 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-11-03T15:53:44.5487960Z [3114/5269] 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-11-03T15:53:44.5653850Z [3115/5269] 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-11-03T15:53:44.5768710Z [3116/5269] 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-11-03T15:53:44.5970700Z [3117/5269] 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-11-03T15:53:44.6077710Z [3118/5269] 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-11-03T15:53:44.6563720Z [3119/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u8.c.o 2025-11-03T15:53:44.6655290Z [3120/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u8.c.o 2025-11-03T15:53:44.6782520Z [3121/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u8.c.o 2025-11-03T15:53:44.6884480Z [3122/5269] 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-11-03T15:53:44.6911590Z [3123/5269] 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-11-03T15:53:44.7033370Z [3124/5269] 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-11-03T15:53:44.7213770Z [3125/5269] 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-11-03T15:53:44.7523140Z [3126/5269] 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-11-03T15:53:44.7559400Z [3127/5269] 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-11-03T15:53:44.8012440Z [3128/5269] 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-11-03T15:53:44.8248280Z [3129/5269] 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-11-03T15:53:44.8287630Z [3130/5269] 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-11-03T15:53:44.8390810Z [3131/5269] 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-11-03T15:53:44.8490070Z [3132/5269] 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-11-03T15:53:44.8497390Z [3133/5269] 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-11-03T15:53:44.8506910Z [3134/5269] 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-11-03T15:53:44.8519890Z [3135/5269] 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-11-03T15:53:44.9056720Z [3136/5269] 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-11-03T15:53:44.9186060Z [3137/5269] 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-11-03T15:53:44.9311820Z [3138/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u8.c.o 2025-11-03T15:53:44.9621710Z [3139/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u16.c.o 2025-11-03T15:53:44.9680380Z [3140/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u16.c.o 2025-11-03T15:53:44.9851900Z [3141/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u16.c.o 2025-11-03T15:53:44.9985950Z [3142/5269] 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-11-03T15:53:44.9997180Z [3143/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u16.c.o 2025-11-03T15:53:45.0007870Z [3144/5269] 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-11-03T15:53:45.0180810Z [3145/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u24.c.o 2025-11-03T15:53:45.0455110Z [3146/5269] 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-11-03T15:53:45.0650550Z [3147/5269] 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-11-03T15:53:45.0695410Z [3148/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u32.c.o 2025-11-03T15:53:45.0889900Z [3149/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u16.c.o 2025-11-03T15:53:45.0908410Z [3150/5269] 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-11-03T15:53:45.1072000Z [3151/5269] 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-11-03T15:53:45.1530820Z [3152/5269] 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-11-03T15:53:45.1567120Z [3153/5269] 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-11-03T15:53:45.1775040Z [3154/5269] 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-11-03T15:53:45.1878530Z [3155/5269] 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-11-03T15:53:45.2036070Z [3156/5269] 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-11-03T15:53:45.2100960Z [3157/5269] 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-11-03T15:53:45.2170230Z [3158/5269] 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-11-03T15:53:45.2363670Z [3159/5269] 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-11-03T15:53:45.2400120Z [3160/5269] 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-11-03T15:53:45.2771590Z [3161/5269] 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-11-03T15:53:45.3027360Z [3162/5269] 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-11-03T15:53:45.3156250Z [3163/5269] 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-11-03T15:53:45.3221710Z [3164/5269] 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-11-03T15:53:45.3634620Z [3165/5269] 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-11-03T15:53:45.3646340Z [3166/5269] 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-11-03T15:53:45.3706520Z [3167/5269] 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-11-03T15:53:45.3867240Z [3168/5269] 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-11-03T15:53:45.3869080Z [3169/5269] 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-11-03T15:53:45.3898950Z [3170/5269] 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-11-03T15:53:45.4584320Z [3171/5269] 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-11-03T15:53:45.4719940Z [3172/5269] 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-11-03T15:53:45.4776050Z [3173/5269] 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-11-03T15:53:45.4821030Z [3174/5269] 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-11-03T15:53:45.5459950Z [3175/5269] 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-11-03T15:53:45.5558710Z [3176/5269] 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-11-03T15:53:45.5587130Z [3177/5269] 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-11-03T15:53:45.5596800Z [3178/5269] 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-11-03T15:53:45.5672990Z [3179/5269] 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-11-03T15:53:45.5799950Z [3180/5269] 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-11-03T15:53:45.5840370Z [3181/5269] 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-11-03T15:53:45.6416590Z [3182/5269] 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-11-03T15:53:45.6530900Z [3183/5269] 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-11-03T15:53:45.6535510Z [3184/5269] 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-11-03T15:53:45.6937160Z [3185/5269] 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-11-03T15:53:45.6958850Z [3186/5269] 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-11-03T15:53:45.6970250Z [3187/5269] 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-11-03T15:53:45.6996300Z [3188/5269] 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-11-03T15:53:45.7166590Z [3189/5269] 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-11-03T15:53:45.7201330Z [3190/5269] 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-11-03T15:53:45.7539920Z [3191/5269] 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-11-03T15:53:45.7922640Z [3192/5269] 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-11-03T15:53:45.8022560Z [3193/5269] 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-11-03T15:53:45.8091170Z [3194/5269] 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-11-03T15:53:45.8385240Z [3195/5269] 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-11-03T15:53:45.8531240Z [3196/5269] 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-11-03T15:53:45.8542440Z [3197/5269] 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-11-03T15:53:45.8551620Z [3198/5269] 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-11-03T15:53:45.8805600Z [3199/5269] 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-11-03T15:53:45.8910380Z [3200/5269] 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-11-03T15:53:45.9099670Z [3201/5269] 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-11-03T15:53:45.9302790Z [3202/5269] 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-11-03T15:53:45.9346880Z [3203/5269] 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-11-03T15:53:45.9455940Z [3204/5269] 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-11-03T15:53:45.9665020Z [3205/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u16.c.o 2025-11-03T15:53:45.9946940Z [3206/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u64-acc2.c.o 2025-11-03T15:53:46.0011320Z [3207/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u64-acc4.c.o 2025-11-03T15:53:46.0013440Z [3208/5269] 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-11-03T15:53:46.0212810Z [3209/5269] 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-11-03T15:53:46.0228610Z [3210/5269] 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-11-03T15:53:46.0516420Z [3211/5269] 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-11-03T15:53:46.0752590Z [3212/5269] 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-11-03T15:53:46.0775330Z [3213/5269] 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-11-03T15:53:46.0819930Z [3214/5269] 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-11-03T15:53:46.0998930Z [3215/5269] 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-11-03T15:53:46.1025530Z [3216/5269] 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-11-03T15:53:46.1042630Z [3217/5269] 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-11-03T15:53:46.1067840Z [3218/5269] 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-11-03T15:53:46.1247710Z [3219/5269] 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-11-03T15:53:46.1273860Z [3220/5269] 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-11-03T15:53:46.1554070Z [3221/5269] 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-11-03T15:53:46.1555910Z [3222/5269] 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-11-03T15:53:46.1561200Z [3223/5269] 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-11-03T15:53:46.1851110Z [3224/5269] 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-11-03T15:53:46.1865780Z [3225/5269] 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-11-03T15:53:46.1866700Z [3226/5269] 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-11-03T15:53:46.1935700Z [3227/5269] 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-11-03T15:53:46.2074450Z [3228/5269] 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-11-03T15:53:46.2148650Z [3229/5269] 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-11-03T15:53:46.2428220Z [3230/5269] 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-11-03T15:53:46.2527600Z [3231/5269] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-11-03T15:53:46.2653240Z [3232/5269] 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-11-03T15:53:46.2666390Z [3233/5269] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-11-03T15:53:46.2729370Z [3234/5269] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma.S.o 2025-11-03T15:53:46.2739810Z [3235/5269] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-11-03T15:53:46.2785430Z [3236/5269] 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-11-03T15:53:46.2796640Z [3237/5269] 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-11-03T15:53:46.2935230Z [3238/5269] 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-11-03T15:53:46.2938810Z [3239/5269] 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-11-03T15:53:46.3551480Z [3240/5269] 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-11-03T15:53:46.3653970Z [3241/5269] 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-11-03T15:53:46.3671010Z [3242/5269] 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-11-03T15:53:46.3785940Z [3243/5269] 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-11-03T15:53:46.3792740Z [3244/5269] 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-11-03T15:53:46.3812910Z [3245/5269] 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-11-03T15:53:46.3814110Z [3246/5269] 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-11-03T15:53:46.3844990Z [3247/5269] 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-11-03T15:53:46.3846540Z [3248/5269] 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-11-03T15:53:46.3849670Z [3249/5269] 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-11-03T15:53:46.4588550Z [3250/5269] 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-11-03T15:53:46.4609650Z [3251/5269] 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-11-03T15:53:46.4619090Z [3252/5269] 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-11-03T15:53:46.4637960Z [3253/5269] 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-11-03T15:53:46.4740640Z [3254/5269] 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-11-03T15:53:46.4828520Z [3255/5269] 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-11-03T15:53:46.4843140Z [3256/5269] 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-11-03T15:53:46.4882350Z [3257/5269] 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-11-03T15:53:46.4892270Z [3258/5269] 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-11-03T15:53:46.4893790Z [3259/5269] 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-11-03T15:53:46.5656010Z [3260/5269] 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-11-03T15:53:46.5669910Z [3261/5269] 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-11-03T15:53:46.5683050Z [3262/5269] 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-11-03T15:53:46.5704590Z [3263/5269] 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-11-03T15:53:46.5829120Z [3264/5269] 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-11-03T15:53:46.5833520Z [3265/5269] 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-11-03T15:53:46.5837420Z [3266/5269] 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-11-03T15:53:46.5839740Z [3267/5269] 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-11-03T15:53:46.5854460Z [3268/5269] 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-11-03T15:53:46.5877350Z [3269/5269] 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-11-03T15:53:46.6640020Z [3270/5269] 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-11-03T15:53:46.6650120Z [3271/5269] 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-11-03T15:53:46.6658260Z [3272/5269] 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-11-03T15:53:46.6667550Z [3273/5269] 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-11-03T15:53:46.6668430Z [3274/5269] 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-11-03T15:53:46.6730750Z [3275/5269] 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-11-03T15:53:46.6752080Z [3276/5269] 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-11-03T15:53:46.6809300Z [3277/5269] 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-11-03T15:53:46.6953730Z [3278/5269] 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-11-03T15:53:46.7060760Z [3279/5269] 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-11-03T15:53:46.7671440Z [3280/5269] 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-11-03T15:53:46.7673880Z [3281/5269] 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-11-03T15:53:46.7679380Z [3282/5269] 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-11-03T15:53:46.7684850Z [3283/5269] 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-11-03T15:53:46.7698710Z [3284/5269] 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-11-03T15:53:46.7815760Z [3285/5269] 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-11-03T15:53:46.7833900Z [3286/5269] 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-11-03T15:53:46.7839110Z [3287/5269] 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-11-03T15:53:46.7856860Z [3288/5269] 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-11-03T15:53:46.7962350Z [3289/5269] 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-11-03T15:53:46.8648490Z [3290/5269] 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-11-03T15:53:46.8649420Z [3291/5269] 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-11-03T15:53:46.8709460Z [3292/5269] 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-11-03T15:53:46.8727480Z [3293/5269] 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-11-03T15:53:46.8738920Z [3294/5269] 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-11-03T15:53:46.8739900Z [3295/5269] 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-11-03T15:53:46.8757480Z [3296/5269] 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-11-03T15:53:46.8758500Z [3297/5269] 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-11-03T15:53:46.8871270Z [3298/5269] 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-11-03T15:53:46.8880840Z [3299/5269] 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-11-03T15:53:46.9600430Z [3300/5269] 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-11-03T15:53:46.9669860Z [3301/5269] 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-11-03T15:53:46.9670990Z [3302/5269] 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-11-03T15:53:46.9684420Z [3303/5269] 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-11-03T15:53:46.9694320Z [3304/5269] 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-11-03T15:53:46.9719900Z [3305/5269] 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-11-03T15:53:46.9839310Z [3306/5269] 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-11-03T15:53:46.9852440Z [3307/5269] 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-11-03T15:53:46.9863040Z [3308/5269] 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-11-03T15:53:46.9868890Z [3309/5269] 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-11-03T15:53:47.0607270Z [3310/5269] 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-11-03T15:53:47.0611200Z [3311/5269] 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-11-03T15:53:47.0615160Z [3312/5269] 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-11-03T15:53:47.0621120Z [3313/5269] 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-11-03T15:53:47.0625180Z [3314/5269] 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-11-03T15:53:47.0633390Z [3315/5269] 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-11-03T15:53:47.0636950Z [3316/5269] 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-11-03T15:53:47.0649600Z [3317/5269] 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-11-03T15:53:47.0671710Z [3318/5269] 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-11-03T15:53:47.0760490Z [3319/5269] 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-11-03T15:53:47.1575930Z [3320/5269] 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-11-03T15:53:47.1578350Z [3321/5269] 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-11-03T15:53:47.1589110Z [3322/5269] 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-11-03T15:53:47.1599760Z [3323/5269] 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-11-03T15:53:47.1609870Z [3324/5269] 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-11-03T15:53:47.1624110Z [3325/5269] 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-11-03T15:53:47.1630190Z [3326/5269] 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-11-03T15:53:47.1646060Z [3327/5269] 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-11-03T15:53:47.1652050Z [3328/5269] 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-11-03T15:53:47.1769970Z [3329/5269] 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-11-03T15:53:47.2508080Z [3330/5269] 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-11-03T15:53:47.2512840Z [3331/5269] 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-11-03T15:53:47.2517470Z [3332/5269] 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-11-03T15:53:47.2525220Z [3333/5269] 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-11-03T15:53:47.2546360Z [3334/5269] 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-11-03T15:53:47.2555000Z [3335/5269] 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-11-03T15:53:47.2564000Z [3336/5269] 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-11-03T15:53:47.2591290Z [3337/5269] 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-11-03T15:53:47.2770030Z [3338/5269] 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-11-03T15:53:47.2771030Z [3339/5269] 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-11-03T15:53:47.3424270Z [3340/5269] 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-11-03T15:53:47.3427260Z [3341/5269] 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-11-03T15:53:47.3429490Z [3342/5269] 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-11-03T15:53:47.3444170Z [3343/5269] 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-11-03T15:53:47.3705380Z [3344/5269] 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-11-03T15:53:47.3715840Z [3345/5269] 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-11-03T15:53:47.3719800Z [3346/5269] 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-11-03T15:53:47.3748140Z [3347/5269] 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-11-03T15:53:47.3760080Z [3348/5269] 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-11-03T15:53:47.3775990Z [3349/5269] 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-11-03T15:53:47.4269010Z [3350/5269] 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-11-03T15:53:47.4275160Z [3351/5269] 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-11-03T15:53:47.4311780Z [3352/5269] 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-11-03T15:53:47.4319420Z [3353/5269] 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-11-03T15:53:47.4716290Z [3354/5269] 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-11-03T15:53:47.4719310Z [3355/5269] 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-11-03T15:53:47.4837490Z [3356/5269] 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-11-03T15:53:47.4840470Z [3357/5269] 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-11-03T15:53:47.4850200Z [3358/5269] 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-11-03T15:53:47.4861170Z [3359/5269] 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-11-03T15:53:47.5237320Z [3360/5269] 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-11-03T15:53:47.5245710Z [3361/5269] 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-11-03T15:53:47.5264630Z [3362/5269] 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-11-03T15:53:47.5293710Z [3363/5269] 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-11-03T15:53:47.5686920Z [3364/5269] 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-11-03T15:53:47.5800590Z [3365/5269] 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-11-03T15:53:47.5803440Z [3366/5269] 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-11-03T15:53:47.5920110Z [3367/5269] 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-11-03T15:53:47.5999930Z [3368/5269] 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-11-03T15:53:47.6111610Z [3369/5269] Building C object confu-deps/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-11-03T15:53:47.6348430Z [3370/5269] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-11-03T15:53:47.6365610Z [3371/5269] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-11-03T15:53:47.6507250Z [3372/5269] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-11-03T15:53:47.6564090Z [3373/5269] Building C object confu-deps/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-11-03T15:53:47.6682620Z [3374/5269] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-11-03T15:53:47.6818470Z [3375/5269] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-11-03T15:53:47.6924370Z [3376/5269] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-11-03T15:53:47.6929390Z [3377/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-11-03T15:53:47.7203180Z [3378/5269] Building C object confu-deps/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-11-03T15:53:47.7559890Z [3379/5269] Building C object confu-deps/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-11-03T15:53:47.7610610Z [3380/5269] Building C object confu-deps/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-11-03T15:53:47.7721190Z [3381/5269] Building C object confu-deps/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-11-03T15:53:47.7805030Z [3382/5269] Building C object confu-deps/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-11-03T15:53:47.7960430Z [3383/5269] Building C object confu-deps/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-11-03T15:53:47.8004150Z [3384/5269] Building C object confu-deps/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-11-03T15:53:47.8117780Z [3385/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-11-03T15:53:47.8435740Z [3386/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-11-03T15:53:47.8594210Z [3387/5269] Building CXX object confu-deps/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-11-03T15:53:47.8706980Z [3388/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-11-03T15:53:47.8843900Z [3389/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-11-03T15:53:47.8888070Z [3390/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-11-03T15:53:47.8896220Z [3391/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-11-03T15:53:47.9013110Z [3392/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-11-03T15:53:47.9165460Z [3393/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-11-03T15:53:47.9195150Z [3394/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-11-03T15:53:47.9584240Z [3395/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-11-03T15:53:47.9903240Z [3396/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-11-03T15:53:47.9919380Z [3397/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-11-03T15:53:48.0028240Z [3398/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-11-03T15:53:48.0046620Z [3399/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-11-03T15:53:48.0127000Z [3400/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-11-03T15:53:48.0228990Z [3401/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-11-03T15:53:48.0230650Z [3402/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-11-03T15:53:48.0370310Z [3403/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-11-03T15:53:48.0729800Z [3404/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-11-03T15:53:48.0922620Z [3405/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-11-03T15:53:48.0938940Z [3406/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-11-03T15:53:48.1139080Z [3407/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-11-03T15:53:48.1144470Z [3408/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-11-03T15:53:48.1205910Z [3409/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-11-03T15:53:48.1415590Z [3410/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-11-03T15:53:48.1531570Z [3411/5269] Building C object confu-deps/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-11-03T15:53:48.2017220Z [3412/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-11-03T15:53:48.2109200Z [3413/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-11-03T15:53:48.2332380Z [3414/5269] Building CXX object confu-deps/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-11-03T15:53:48.2435310Z [3415/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-11-03T15:53:48.2520590Z [3416/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-11-03T15:53:48.2535540Z [3417/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-11-03T15:53:48.2540900Z [3418/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-11-03T15:53:48.2588350Z [3419/5269] Building CXX object confu-deps/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-11-03T15:53:48.3038830Z [3420/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-11-03T15:53:48.3164250Z [3421/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-11-03T15:53:48.3202170Z [3422/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-11-03T15:53:48.3423890Z [3423/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-11-03T15:53:48.3453830Z [3424/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-11-03T15:53:48.3639480Z [3425/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-11-03T15:53:48.3642910Z [3426/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-11-03T15:53:48.3827610Z [3427/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-11-03T15:53:48.4006620Z [3428/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-11-03T15:53:48.4187620Z [3429/5269] Linking C static library lib/libmicrokernels-all.a 2025-11-03T15:53:48.4240830Z [3430/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-11-03T15:53:48.4245320Z [3431/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-11-03T15:53:48.4321150Z [3432/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-11-03T15:53:48.4439970Z [3433/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-11-03T15:53:48.4621800Z [3434/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-11-03T15:53:48.4806880Z [3435/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-11-03T15:53:48.4863410Z [3436/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-11-03T15:53:48.5075290Z [3437/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-11-03T15:53:48.5206280Z [3438/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-11-03T15:53:48.5364530Z [3439/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-11-03T15:53:48.5373470Z [3440/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-11-03T15:53:48.5455110Z [3441/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-11-03T15:53:48.5557860Z [3442/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-11-03T15:53:48.5560340Z [3443/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-11-03T15:53:48.5730160Z [3444/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-11-03T15:53:48.5735200Z [3445/5269] Running gen_proto.py on onnx/onnx.in.proto 2025-11-03T15:53:48.5738710Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx.in.proto 2025-11-03T15:53:48.5742240Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-11-03T15:53:48.5745520Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto3 2025-11-03T15:53:48.5746470Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-ml.pb.h 2025-11-03T15:53:48.5753890Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_pb.py 2025-11-03T15:53:48.5930380Z [3446/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-11-03T15:53:48.6206630Z [3447/5269] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-11-03T15:53:48.6721250Z [3448/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.c.o 2025-11-03T15:53:48.6749770Z [3449/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.c.o 2025-11-03T15:53:48.6904270Z [3450/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.c.o 2025-11-03T15:53:48.6954190Z [3451/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.c.o 2025-11-03T15:53:48.6988970Z [3452/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.c.o 2025-11-03T15:53:48.6992600Z [3453/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.c.o 2025-11-03T15:53:48.7102340Z [3454/5269] Generating build_identifier.c 2025-11-03T15:53:48.7231400Z [3455/5269] 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-11-03T15:53:48.7410850Z [3456/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.c.o 2025-11-03T15:53:48.8134710Z [3457/5269] 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-11-03T15:53:48.8142830Z [3458/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16x1b_6x16_neon_mla_asm.S.o 2025-11-03T15:53:48.8156070Z [3459/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-11-03T15:53:48.8184370Z [3460/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16x1b_6x16_neon_mla_cortexa55_asm.S.o 2025-11-03T15:53:48.8355730Z [3461/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16x1b_6x16_neon_mla.c.o 2025-11-03T15:53:48.8369740Z [3462/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16x1b_6x16_neon_mla_cortexa55.c.o 2025-11-03T15:53:48.8393590Z [3463/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_bf16_neon.c.o 2025-11-03T15:53:48.8546070Z [3464/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-11-03T15:53:48.8951470Z [3465/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-11-03T15:53:48.9284590Z [3466/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-11-03T15:53:48.9292850Z [3467/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-11-03T15:53:48.9410570Z [3468/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-11-03T15:53:48.9415730Z [3469/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-11-03T15:53:48.9466990Z [3470/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-11-03T15:53:48.9711220Z [3471/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-11-03T15:53:48.9743650Z [3472/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-11-03T15:53:48.9937280Z [3473/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-11-03T15:53:48.9999150Z [3474/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-11-03T15:53:49.0342370Z [3475/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-11-03T15:53:49.0343130Z [3476/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-11-03T15:53:49.0360820Z [3477/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-11-03T15:53:49.0415580Z [3478/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-11-03T15:53:49.0627790Z [3479/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-11-03T15:53:49.0796320Z [3480/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-11-03T15:53:49.0915020Z [3481/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-11-03T15:53:49.1090890Z [3482/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-11-03T15:53:49.1202800Z [3483/5269] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-11-03T15:53:49.1214140Z [3484/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-11-03T15:53:49.1400320Z [3485/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-11-03T15:53:49.1492550Z [3486/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-11-03T15:53:49.1552000Z [3487/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-11-03T15:53:49.1693040Z [3488/5269] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-11-03T15:53:49.1696680Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-operators.in.proto 2025-11-03T15:53:49.1702050Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-11-03T15:53:49.1702920Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto3 2025-11-03T15:53:49.1706840Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators-ml.pb.h 2025-11-03T15:53:49.1715160Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py 2025-11-03T15:53:49.1749000Z [3489/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-11-03T15:53:49.1807620Z [3490/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-11-03T15:53:49.1904080Z [3491/5269] Running gen_proto.py on onnx/onnx-data.in.proto 2025-11-03T15:53:49.1906370Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-data.in.proto 2025-11-03T15:53:49.1912830Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-11-03T15:53:49.1921020Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto3 2025-11-03T15:53:49.1931310Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data.pb.h 2025-11-03T15:53:49.1948930Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_data_pb.py 2025-11-03T15:53:49.1985450Z [3492/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-11-03T15:53:49.2001520Z [3493/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-11-03T15:53:49.2027440Z [3494/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-11-03T15:53:49.2111690Z [3495/5269] 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-11-03T15:53:49.2296380Z [3496/5269] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-11-03T15:53:49.2452440Z [3497/5269] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-11-03T15:53:49.2764630Z [3498/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.c.o 2025-11-03T15:53:49.2939940Z [3499/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x32p16x1b_x32_x32_neon_asm.S.o 2025-11-03T15:53:49.3053070Z [3500/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.c.o 2025-11-03T15:53:49.3193220Z [3501/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p4x8sb_f32_neon.c.o 2025-11-03T15:53:49.3248730Z [3502/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x32p16x1b_x32_x32_neon.c.o 2025-11-03T15:53:49.3499760Z [3503/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32ps1s0nrx4_qau4c32s1s0_f32_f32_f32_neon.c.o 2025-11-03T15:53:49.3518500Z [3504/5269] 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-11-03T15:53:49.3713220Z [3505/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32ps1s0nrx4_qau4c32s0s1_f32_f32_f32_neon.c.o 2025-11-03T15:53:49.3820900Z [3506/5269] Linking CXX static library lib/libXNNPACK.a 2025-11-03T15:53:49.5108950Z [3507/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o 2025-11-03T15:53:49.5211610Z [3508/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o 2025-11-03T15:53:49.5487140Z [3509/5269] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch-ml.pb.cc.o 2025-11-03T15:53:49.5498540Z [3510/5269] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-data_onnx_torch.pb.cc.o 2025-11-03T15:53:49.5857310Z [3511/5269] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch-ml.pb.cc.o 2025-11-03T15:53:49.6331820Z [3512/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o 2025-11-03T15:53:49.6389720Z [3513/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/path.cc.o 2025-11-03T15:53:49.6585210Z [3514/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o 2025-11-03T15:53:49.6626190Z [3515/5269] Linking CXX static library lib/libonnx_proto.a 2025-11-03T15:53:49.7372330Z [3516/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o 2025-11-03T15:53:49.7747970Z [3517/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o 2025-11-03T15:53:49.8672550Z [3518/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/attr_proto_util.cc.o 2025-11-03T15:53:49.8873330Z [3519/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o 2025-11-03T15:53:49.8883140Z [3520/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/old.cc.o 2025-11-03T15:53:49.8995430Z [3521/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/utils.cc.o 2025-11-03T15:53:49.9237310Z [3522/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o 2025-11-03T15:53:49.9506250Z [3523/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o 2025-11-03T15:53:49.9810760Z [3524/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o 2025-11-03T15:53:50.0121590Z [3525/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o 2025-11-03T15:53:50.1105830Z [3526/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/image/defs.cc.o 2025-11-03T15:53:50.1428070Z [3527/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/utils.cc.o 2025-11-03T15:53:50.1849180Z [3528/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o 2025-11-03T15:53:50.2203060Z [3529/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o 2025-11-03T15:53:50.2305130Z [3530/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/utils.cc.o 2025-11-03T15:53:50.2485800Z [3531/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o 2025-11-03T15:53:50.2923380Z [3532/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o 2025-11-03T15:53:50.3278970Z [3533/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o 2025-11-03T15:53:50.3463350Z [3534/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/defs.cc.o 2025-11-03T15:53:50.4177260Z [3535/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/old.cc.o 2025-11-03T15:53:50.4314910Z [3536/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/defs.cc.o 2025-11-03T15:53:50.4433930Z [3537/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o 2025-11-03T15:53:50.5134840Z [3538/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/printer.cc.o 2025-11-03T15:53:50.5197390Z [3539/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/old.cc.o 2025-11-03T15:53:50.5433090Z [3540/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/parser.cc.o 2025-11-03T15:53:50.5484310Z [3541/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/defs.cc.o 2025-11-03T15:53:50.6558380Z [3542/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/old.cc.o 2025-11-03T15:53:50.6655500Z [3543/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o 2025-11-03T15:53:50.6887570Z [3544/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/utils.cc.o 2025-11-03T15:53:50.7108160Z [3545/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/old.cc.o 2025-11-03T15:53:50.7356000Z [3546/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o 2025-11-03T15:53:50.7783940Z [3547/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o 2025-11-03T15:53:50.8209590Z [3548/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/sequence/defs.cc.o 2025-11-03T15:53:50.8311060Z [3549/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o 2025-11-03T15:53:50.8944250Z [3550/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/shape_inference.cc.o 2025-11-03T15:53:50.9212310Z [3551/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o 2025-11-03T15:53:51.0125880Z [3552/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/text/defs.cc.o 2025-11-03T15:53:51.0134670Z [3553/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_util.cc.o 2025-11-03T15:53:51.0376280Z [3554/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_proto_util.cc.o 2025-11-03T15:53:51.0477550Z [3555/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o 2025-11-03T15:53:51.0625610Z [3556/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/utils.cc.o 2025-11-03T15:53:51.0945990Z [3557/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/training/defs.cc.o 2025-11-03T15:53:51.0971360Z [3558/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o 2025-11-03T15:53:51.1610720Z [3559/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.c.o 2025-11-03T15:53:51.1693870Z [3560/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pnrx4_qsu4c32s1s0_neon.c.o 2025-11-03T15:53:51.1838300Z [3561/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pnrx8_qsu4c32s1s0_neon.c.o 2025-11-03T15:53:51.2045940Z [3562/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/old.cc.o 2025-11-03T15:53:51.2222940Z [3563/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.c.o 2025-11-03T15:53:51.2332560Z [3564/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.c.o 2025-11-03T15:53:51.2818310Z [3565/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/inliner/inliner.cc.o 2025-11-03T15:53:51.2884890Z [3566/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.c.o 2025-11-03T15:53:51.2963010Z [3567/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p32x1b_6x32_neon_mla_asm.S.o 2025-11-03T15:53:51.3041410Z [3568/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o 2025-11-03T15:53:51.3145200Z [3569/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o 2025-11-03T15:53:51.3247330Z [3570/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.c.o 2025-11-03T15:53:51.3349880Z [3571/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p32x1b_6x32_neon_mla.c.o 2025-11-03T15:53:51.3656880Z [3572/5269] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o 2025-11-03T15:53:51.3674060Z [3573/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p32x1b_6x32_neon_mla_cortexa55.c.o 2025-11-03T15:53:51.3678220Z [3574/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p32x1b_x16_x16_neon_asm.S.o 2025-11-03T15:53:51.3844450Z [3575/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p32x1b_6x32_neon_mla_cortexa55_asm.S.o 2025-11-03T15:53:51.4173070Z [3576/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p32x1b_x16_x16_neon.c.o 2025-11-03T15:53:51.4192510Z [3577/5269] 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-11-03T15:53:51.4341380Z [3578/5269] 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-11-03T15:53:51.4401110Z [3579/5269] 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-11-03T15:53:51.4557030Z [3580/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.c.o 2025-11-03T15:53:51.4785450Z [3581/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.c.o 2025-11-03T15:53:51.4806020Z [3582/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.c.o 2025-11-03T15:53:51.4818710Z [3583/5269] 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-11-03T15:53:51.5036300Z [3584/5269] 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-11-03T15:53:51.5085470Z [3585/5269] 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-11-03T15:53:51.5296170Z [3586/5269] 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-11-03T15:53:51.5299710Z [3587/5269] 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-11-03T15:53:51.5516830Z [3588/5269] 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-11-03T15:53:51.5582530Z [3589/5269] 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-11-03T15:53:51.5689230Z [3590/5269] 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-11-03T15:53:51.5885110Z [3591/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x4_qai4c32p4x4_1x4_neon_dotprod_asm.S.o 2025-11-03T15:53:51.5905170Z [3592/5269] 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-11-03T15:53:51.6136150Z [3593/5269] 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-11-03T15:53:51.6365210Z [3594/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x4_qai4c32p4x4_8x4_neon_dotprod_asm.S.o 2025-11-03T15:53:51.6513100Z [3595/5269] 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-11-03T15:53:51.6558540Z [3596/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x4_qai4c32p4x4_1x4_neon_dotprod.c.o 2025-11-03T15:53:51.6639190Z [3597/5269] 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-11-03T15:53:51.6658230Z [3598/5269] 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-11-03T15:53:51.6692080Z [3599/5269] 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-11-03T15:53:51.7048030Z [3600/5269] 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-11-03T15:53:51.7187920Z [3601/5269] 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-11-03T15:53:51.7420050Z [3602/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x4_qai4c32p4x4_8x4_neon_dotprod.c.o 2025-11-03T15:53:51.7603560Z [3603/5269] 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-11-03T15:53:51.7699230Z [3604/5269] 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-11-03T15:53:51.7711980Z [3605/5269] 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-11-03T15:53:51.7883380Z [3606/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.c.o 2025-11-03T15:53:51.8038410Z [3607/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.c.o 2025-11-03T15:53:51.8161000Z [3608/5269] 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-11-03T15:53:51.8329270Z [3609/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.c.o 2025-11-03T15:53:51.8471040Z [3610/5269] Linking CXX static library lib/libonnx.a 2025-11-03T15:53:51.8482990Z [3611/5269] 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-11-03T15:53:51.8625760Z [3612/5269] 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-11-03T15:53:51.8832650Z [3613/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.c.o 2025-11-03T15:53:51.8843710Z [3614/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.c.o 2025-11-03T15:53:51.9135370Z [3615/5269] 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-11-03T15:53:51.9138260Z [3616/5269] 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-11-03T15:53:51.9183010Z [3617/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.c.o 2025-11-03T15:53:51.9286500Z [3618/5269] 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-11-03T15:53:51.9402220Z [3619/5269] 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-11-03T15:53:51.9471740Z [3620/5269] 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-11-03T15:53:51.9608730Z [3621/5269] 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-11-03T15:53:51.9680230Z [3622/5269] 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-11-03T15:53:51.9721490Z [3623/5269] 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-11-03T15:53:52.0046800Z [3624/5269] 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-11-03T15:53:52.0066800Z [3625/5269] 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-11-03T15:53:52.0227550Z [3626/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qai4c32p4x4_1x4_neon_dotprod_asm.S.o 2025-11-03T15:53:52.0552990Z [3627/5269] 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-11-03T15:53:52.0619590Z [3628/5269] 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-11-03T15:53:52.0642210Z [3629/5269] 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-11-03T15:53:52.0736450Z [3630/5269] 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-11-03T15:53:52.0851580Z [3631/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qai4c32p4x4_1x4_neon_dotprod.c.o 2025-11-03T15:53:52.0877210Z [3632/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qai4c32p4x4_8x4_neon_dotprod_asm.S.o 2025-11-03T15:53:52.1004680Z [3633/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp/kai_matmul_clamp_bf16_qai8dxp1x8_qsi4cxp8x8_1x8_neon_dotprod_asm.S.o 2025-11-03T15:53:52.1411310Z [3634/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qai4c32p4x4_8x4_neon_dotprod.c.o 2025-11-03T15:53:52.1424430Z [3635/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p/kai_matmul_clamp_bf16_qai8dxp1x8_qsi4c32p4x8_1x4_neon_dotprod_asm.S.o 2025-11-03T15:53:52.1727800Z [3636/5269] 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-11-03T15:53:52.1832300Z [3637/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp/kai_matmul_clamp_bf16_qai8dxp1x8_qsi4cxp8x8_1x8_neon_dotprod.c.o 2025-11-03T15:53:52.1942680Z [3638/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p/kai_matmul_clamp_bf16_qai8dxp1x8_qsi4c32p4x8_1x4_neon_dotprod.c.o 2025-11-03T15:53:52.1946180Z [3639/5269] 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-11-03T15:53:52.2142980Z [3640/5269] 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-11-03T15:53:52.2213030Z [3641/5269] 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-11-03T15:53:52.2329840Z [3642/5269] 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-11-03T15:53:52.2332740Z [3643/5269] 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-11-03T15:53:52.2626190Z [3644/5269] 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-11-03T15:53:52.2820830Z [3645/5269] 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-11-03T15:53:52.2925350Z [3646/5269] 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-11-03T15:53:52.3037560Z [3647/5269] 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-11-03T15:53:52.3097540Z [3648/5269] 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-11-03T15:53:52.3200510Z [3649/5269] 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-11-03T15:53:52.3223230Z [3650/5269] 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-11-03T15:53:52.3247240Z [3651/5269] 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-11-03T15:53:52.3707860Z [3652/5269] 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-11-03T15:53:52.3711440Z [3653/5269] 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-11-03T15:53:52.3874160Z [3654/5269] 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-11-03T15:53:52.3890300Z [3655/5269] 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-11-03T15:53:52.3931920Z [3656/5269] 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-11-03T15:53:52.3960970Z [3657/5269] 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-11-03T15:53:52.4182020Z [3658/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp/kai_matmul_clamp_bf16_qai8dxp4x8_qsi4cxp8x8_8x8_neon_i8mm_asm.S.o 2025-11-03T15:53:52.4590410Z [3659/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p/kai_matmul_clamp_bf16_qai8dxp4x8_qsi4c32p4x8_16x4_neon_i8mm_asm.S.o 2025-11-03T15:53:52.4608820Z [3660/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp/kai_matmul_clamp_bf16_qai8dxp4x8_qsi4cxp8x8_8x8_neon_i8mm.c.o 2025-11-03T15:53:52.4882510Z [3661/5269] 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-11-03T15:53:52.4943820Z [3662/5269] 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-11-03T15:53:52.5175630Z [3663/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p/kai_matmul_clamp_bf16_qai8dxp4x8_qsi4c32p4x8_16x4_neon_i8mm.c.o 2025-11-03T15:53:52.5178860Z [3664/5269] 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-11-03T15:53:52.5313340Z [3665/5269] 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-11-03T15:53:52.5400590Z [3666/5269] 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-11-03T15:53:52.5523310Z [3667/5269] 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-11-03T15:53:52.5538740Z [3668/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/kai_common_sme_asm.S.o 2025-11-03T15:53:52.5578570Z [3669/5269] 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-11-03T15:53:52.5745390Z [3670/5269] 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-11-03T15:53:52.5970130Z [3671/5269] 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-11-03T15:53:52.6187690Z [3672/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2b_2vlx2vl_sme_mopa_asm.S.o 2025-11-03T15:53:52.6241350Z [3673/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/dwconv/pack/kai_rhs_dwconv_pack_x32p1vlx1b_x32_x32_sme.c.o 2025-11-03T15:53:52.6299450Z [3674/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme_mopa_asm.S.o 2025-11-03T15:53:52.6484650Z [3675/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxp2vlx4sb_2vlx2vl_sme_mopa_asm.S.o 2025-11-03T15:53:52.6489060Z [3676/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2b_2vlx2vl_sme_mopa.c.o 2025-11-03T15:53:52.6497410Z [3677/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x8vl_sme_mla_asm.S.o 2025-11-03T15:53:52.6694850Z [3678/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme_mopa.c.o 2025-11-03T15:53:52.6861770Z [3679/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxp2vlx4sb_2vlx2vl_sme_mopa.c.o 2025-11-03T15:53:52.6865580Z [3680/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x8vl_sme_mla.c.o 2025-11-03T15:53:52.7089520Z [3681/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2b_2vlx2vl_sme_mopa_asm.S.o 2025-11-03T15:53:52.7195020Z [3682/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x8vl_sme_mla_asm.S.o 2025-11-03T15:53:52.7408430Z [3683/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme_mopa_asm.S.o 2025-11-03T15:53:52.7464400Z [3684/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2b_2vlx2vl_sme_mopa.c.o 2025-11-03T15:53:52.7623900Z [3685/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4vlx4_1x4vl_sme_dot_asm.S.o 2025-11-03T15:53:52.7702280Z [3686/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1vlx4_qsi8cxp4vlx4_1vlx4vl_sme_mopa_asm.S.o 2025-11-03T15:53:52.7769710Z [3687/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x8vl_sme_mla.c.o 2025-11-03T15:53:52.7946980Z [3688/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme_mopa.c.o 2025-11-03T15:53:52.7952550Z [3689/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4vlx4_1x4vl_sme_dot.c.o 2025-11-03T15:53:52.8173500Z [3690/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxp2vlx4sb_2vlx2vl_sme_mopa_asm.S.o 2025-11-03T15:53:52.8363660Z [3691/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1vlx4_qsi8cxp4vlx4_1vlx4vl_sme_mopa.c.o 2025-11-03T15:53:52.8372450Z [3692/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme_asm.S.o 2025-11-03T15:53:52.8540090Z [3693/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme_asm.S.o 2025-11-03T15:53:52.8608150Z [3694/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxp2vlx4sb_2vlx2vl_sme_mopa.c.o 2025-11-03T15:53:52.8812590Z [3695/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.c.o 2025-11-03T15:53:52.8845900Z [3696/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme_asm.S.o 2025-11-03T15:53:52.9017950Z [3697/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.c.o 2025-11-03T15:53:52.9027810Z [3698/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme_asm.S.o 2025-11-03T15:53:52.9161940Z [3699/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme_asm.S.o 2025-11-03T15:53:52.9359460Z [3700/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.c.o 2025-11-03T15:53:52.9371140Z [3701/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme_asm.S.o 2025-11-03T15:53:52.9442440Z [3702/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.c.o 2025-11-03T15:53:52.9745300Z [3703/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.c.o 2025-11-03T15:53:52.9763360Z [3704/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme_asm.S.o 2025-11-03T15:53:52.9981710Z [3705/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme_asm.S.o 2025-11-03T15:53:53.0030390Z [3706/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.c.o 2025-11-03T15:53:53.0207970Z [3707/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme_asm.S.o 2025-11-03T15:53:53.0299960Z [3708/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme_asm.S.o 2025-11-03T15:53:53.0395710Z [3709/5269] 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-11-03T15:53:53.0570860Z [3710/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme_asm.S.o 2025-11-03T15:53:53.0685190Z [3711/5269] 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-11-03T15:53:53.0784010Z [3712/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.c.o 2025-11-03T15:53:53.0820810Z [3713/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme_asm.S.o 2025-11-03T15:53:53.0880460Z [3714/5269] 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-11-03T15:53:53.1100150Z [3715/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme_asm.S.o 2025-11-03T15:53:53.1120980Z [3716/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.c.o 2025-11-03T15:53:53.1340060Z [3717/5269] 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-11-03T15:53:53.1356820Z [3718/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme_asm.S.o 2025-11-03T15:53:53.1640930Z [3719/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme_asm.S.o 2025-11-03T15:53:53.1683270Z [3720/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.c.o 2025-11-03T15:53:53.1753760Z [3721/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/dwconv/dwconv_f32_f32_f32p/kai_dwconv_clamp_f32_f32_f32p1vlx1b_3x3_s1_4xc_sme2_mla_asm.S.o 2025-11-03T15:53:53.1887700Z [3722/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.c.o 2025-11-03T15:53:53.1986190Z [3723/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa_asm.S.o 2025-11-03T15:53:53.2075640Z [3724/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.c.o 2025-11-03T15:53:53.2167230Z [3725/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa_asm.S.o 2025-11-03T15:53:53.2570260Z [3726/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa_asm.S.o 2025-11-03T15:53:53.2584240Z [3727/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/dwconv/dwconv_f32_f32_f32p/kai_dwconv_clamp_f32_f32_f32p1vlx1b_3x3_s1_4xc_sme2_mla.c.o 2025-11-03T15:53:53.2602320Z [3728/5269] 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-11-03T15:53:53.2632900Z [3729/5269] 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-11-03T15:53:53.2794180Z [3730/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot_asm.S.o 2025-11-03T15:53:53.2979760Z [3731/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa_asm.S.o 2025-11-03T15:53:53.3012120Z [3732/5269] 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-11-03T15:53:53.3155430Z [3733/5269] 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-11-03T15:53:53.3385210Z [3734/5269] 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-11-03T15:53:53.3513990Z [3735/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1vlx4_qai4c32p4vlx4_1vlx4vl_sme2_mopa.c.o 2025-11-03T15:53:53.3551490Z [3736/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x4_qai4c32p4vlx4_1x4vl_sme2_dot_asm.S.o 2025-11-03T15:53:53.3715210Z [3737/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1vlx4_qai4c32p4vlx4_1vlx4vl_sme2_mopa_asm.S.o 2025-11-03T15:53:53.3729930Z [3738/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla_asm.S.o 2025-11-03T15:53:53.3881420Z [3739/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla_asm.S.o 2025-11-03T15:53:53.4048370Z [3740/5269] 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-11-03T15:53:53.4142600Z [3741/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x4_qai4c32p4vlx4_1x4vl_sme2_dot.c.o 2025-11-03T15:53:53.4254950Z [3742/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa_asm.S.o 2025-11-03T15:53:53.4313840Z [3743/5269] 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-11-03T15:53:53.4366250Z [3744/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1vlx4_qsi8cxp4vlx4_1vlx4vl_sme2_mopa_asm.S.o 2025-11-03T15:53:53.4452520Z [3745/5269] 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-11-03T15:53:53.4634710Z [3746/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4vlx4_1x4vl_sme2_dot_asm.S.o 2025-11-03T15:53:53.4907550Z [3747/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qai4c32p4vlx4_1vlx4vl_sme2_mopa_asm.S.o 2025-11-03T15:53:53.4925910Z [3748/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1vlx4_qsi8cxp4vlx4_1vlx4vl_sme2_mopa.c.o 2025-11-03T15:53:53.5111960Z [3749/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4vlx4_1x4vl_sme2_dot.c.o 2025-11-03T15:53:53.5341860Z [3750/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa_asm.S.o 2025-11-03T15:53:53.5371560Z [3751/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qai4c32p4vlx4_1vlx4vl_sme2_mopa.c.o 2025-11-03T15:53:53.5412690Z [3752/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qai4c32p4vlx4_1x4vl_sme2_dot_asm.S.o 2025-11-03T15:53:53.5632210Z [3753/5269] 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-11-03T15:53:53.5737690Z [3754/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot_asm.S.o 2025-11-03T15:53:53.5752920Z [3755/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qai4c32p4vlx4_1x4vl_sme2_dot.c.o 2025-11-03T15:53:53.5804800Z [3756/5269] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa_asm.S.o 2025-11-03T15:53:53.5867270Z [3757/5269] 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-11-03T15:53:53.6496760Z [3758/5269] 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-11-03T15:53:53.6523760Z [3759/5269] 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-11-03T15:53:53.6720220Z [3760/5269] 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-11-03T15:53:53.6765300Z [3761/5269] 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-11-03T15:53:53.6963230Z [3762/5269] 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-11-03T15:53:53.6992200Z [3763/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.c.o 2025-11-03T15:53:53.7034540Z [3764/5269] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.c.o 2025-11-03T15:53:53.7404250Z [3765/5269] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/os.cc.o 2025-11-03T15:53:53.8819490Z [3766/5269] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/format.cc.o 2025-11-03T15:53:53.9019790Z [3767/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/ThreadUtil.cpp.o 2025-11-03T15:53:53.9026390Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/src/ThreadUtil.cpp:85: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-11-03T15:53:53.9035250Z 85 | sysTid = (int32_t)syscall(SYS_thread_selfid); 2025-11-03T15:53:53.9036180Z | ^ 2025-11-03T15:53:53.9039070Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/unistd.h:740:6: note: 'syscall' has been explicitly marked deprecated here 2025-11-03T15:53:53.9040370Z 740 | int syscall(int, ...); 2025-11-03T15:53:53.9044660Z | ^ 2025-11-03T15:53:53.9049480Z 1 warning generated. 2025-11-03T15:53:53.9176850Z [3768/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ApproximateClock.cpp.o 2025-11-03T15:53:53.9230380Z [3769/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/libkineto_api.cpp.o 2025-11-03T15:53:53.9416480Z [3770/5269] Linking CXX static library lib/libfmt.a 2025-11-03T15:53:53.9438430Z [3771/5269] Linking C static library lib/libkleidiai.a 2025-11-03T15:53:53.9503910Z [3772/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerController.cpp.o 2025-11-03T15:53:53.9595710Z [3773/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerProxy.cpp.o 2025-11-03T15:53:53.9749190Z [3774/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityProfiler.cpp.o 2025-11-03T15:53:54.0135810Z [3775/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/AbstractConfig.cpp.o 2025-11-03T15:53:54.0307420Z [3776/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DaemonConfigLoader.cpp.o 2025-11-03T15:53:54.0508280Z [3777/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityType.cpp.o 2025-11-03T15:53:54.1481140Z [3778/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Demangle.cpp.o 2025-11-03T15:53:54.1631800Z [3779/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceUtil.cpp.o 2025-11-03T15:53:54.1737200Z [3780/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/IpcFabricConfigClient.cpp.o 2025-11-03T15:53:54.2001880Z [3781/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ConfigLoader.cpp.o 2025-11-03T15:53:54.2010500Z [3782/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceProperties.cpp.o 2025-11-03T15:53:54.2327070Z [3783/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Config.cpp.o 2025-11-03T15:53:54.2516040Z [3784/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityApi.cpp.o 2025-11-03T15:53:54.2627890Z [3785/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/GenericTraceActivity.cpp.o 2025-11-03T15:53:54.2738350Z [3786/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ILoggerObserver.cpp.o 2025-11-03T15:53:54.3654240Z [3787/5269] Building CXX object c10/CMakeFiles/c10.dir/core/AutogradState.cpp.o 2025-11-03T15:53:54.3852750Z [3788/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Logger.cpp.o 2025-11-03T15:53:54.4519600Z [3789/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/LoggingAPI.cpp.o 2025-11-03T15:53:54.4638840Z [3790/5269] Building CXX object c10/CMakeFiles/c10.dir/core/Allocator.cpp.o 2025-11-03T15:53:54.4759560Z [3791/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/init.cpp.o 2025-11-03T15:53:54.4860880Z [3792/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_json.cpp.o 2025-11-03T15:53:54.5149610Z [3793/5269] Building CXX object c10/CMakeFiles/c10.dir/core/AllocatorConfig.cpp.o 2025-11-03T15:53:54.5345310Z [3794/5269] Building CXX object c10/CMakeFiles/c10.dir/core/CachingDeviceAllocator.cpp.o 2025-11-03T15:53:54.5460010Z [3795/5269] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_csv.cpp.o 2025-11-03T15:53:54.6342940Z [3796/5269] Building CXX object c10/CMakeFiles/c10.dir/core/CPUAllocator.cpp.o 2025-11-03T15:53:54.6567920Z [3797/5269] Building CXX object c10/CMakeFiles/c10.dir/core/CopyBytes.cpp.o 2025-11-03T15:53:54.7055090Z [3798/5269] Building CXX object c10/CMakeFiles/c10.dir/core/Device.cpp.o 2025-11-03T15:53:54.7160450Z [3799/5269] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKey.cpp.o 2025-11-03T15:53:54.7202930Z [3800/5269] Building CXX object c10/CMakeFiles/c10.dir/core/ConstantSymNodeImpl.cpp.o 2025-11-03T15:53:54.7346170Z [3801/5269] Linking CXX static library lib/libkineto.a 2025-11-03T15:53:54.7460200Z [3802/5269] Building CXX object c10/CMakeFiles/c10.dir/core/DefaultDtype.cpp.o 2025-11-03T15:53:54.7473350Z [3803/5269] Building CXX object c10/CMakeFiles/c10.dir/core/GradMode.cpp.o 2025-11-03T15:53:54.7514180Z [3804/5269] Building CXX object c10/CMakeFiles/c10.dir/core/DeviceType.cpp.o 2025-11-03T15:53:54.8050860Z [3805/5269] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKeySet.cpp.o 2025-11-03T15:53:54.8701430Z [3806/5269] Building CXX object c10/CMakeFiles/c10.dir/core/GeneratorImpl.cpp.o 2025-11-03T15:53:54.9217370Z [3807/5269] Building CXX object c10/CMakeFiles/c10.dir/core/InferenceMode.cpp.o 2025-11-03T15:53:55.0087380Z [3808/5269] Building CXX object c10/CMakeFiles/c10.dir/core/SafePyObject.cpp.o 2025-11-03T15:53:55.0106210Z [3809/5269] Building CXX object c10/CMakeFiles/c10.dir/core/RefcountedDeleter.cpp.o 2025-11-03T15:53:55.0265610Z [3810/5269] Building CXX object c10/CMakeFiles/c10.dir/core/ScalarType.cpp.o 2025-11-03T15:53:55.0335260Z [3811/5269] Building CXX object c10/CMakeFiles/c10.dir/core/Storage.cpp.o 2025-11-03T15:53:55.0563180Z [3812/5269] Building CXX object c10/CMakeFiles/c10.dir/core/Stream.cpp.o 2025-11-03T15:53:55.0860460Z [3813/5269] Building CXX object c10/CMakeFiles/c10.dir/core/StorageImpl.cpp.o 2025-11-03T15:53:55.0885880Z [3814/5269] Building CXX object c10/CMakeFiles/c10.dir/core/SymBool.cpp.o 2025-11-03T15:53:55.0981730Z [3815/5269] Building CXX object c10/CMakeFiles/c10.dir/core/Scalar.cpp.o 2025-11-03T15:53:55.2262680Z [3816/5269] Building CXX object c10/CMakeFiles/c10.dir/core/SymFloat.cpp.o 2025-11-03T15:53:55.2445710Z [3817/5269] Building CXX object c10/CMakeFiles/c10.dir/core/SymInt.cpp.o 2025-11-03T15:53:55.2546580Z [3818/5269] Building CXX object c10/CMakeFiles/c10.dir/core/SymIntArrayRef.cpp.o 2025-11-03T15:53:55.2675660Z [3819/5269] Building CXX object c10/CMakeFiles/c10.dir/core/SymbolicShapeMeta.cpp.o 2025-11-03T15:53:55.3532520Z [3820/5269] Building CXX object c10/CMakeFiles/c10.dir/core/SymNodeImpl.cpp.o 2025-11-03T15:53:55.3552560Z [3821/5269] Building CXX object c10/CMakeFiles/c10.dir/core/WrapDimMinimal.cpp.o 2025-11-03T15:53:55.3640520Z [3822/5269] Building CXX object c10/CMakeFiles/c10.dir/core/TensorImpl.cpp.o 2025-11-03T15:53:55.3835370Z [3823/5269] Building CXX object c10/CMakeFiles/c10.dir/core/UndefinedTensorImpl.cpp.o 2025-11-03T15:53:55.3953640Z [3824/5269] Building CXX object c10/CMakeFiles/c10.dir/core/TensorOptions.cpp.o 2025-11-03T15:53:55.3967530Z [3825/5269] Building CXX object c10/CMakeFiles/c10.dir/core/impl/HermeticPyObjectTLS.cpp.o 2025-11-03T15:53:55.4482200Z [3826/5269] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COW.cpp.o 2025-11-03T15:53:55.4801000Z [3827/5269] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COWDeleter.cpp.o 2025-11-03T15:53:55.4952920Z [3828/5269] Building CXX object c10/CMakeFiles/c10.dir/core/impl/DeviceGuardImplInterface.cpp.o 2025-11-03T15:53:55.4990270Z [3829/5269] Building CXX object c10/CMakeFiles/c10.dir/core/impl/GPUTrace.cpp.o 2025-11-03T15:53:55.6275100Z [3830/5269] Building CXX object c10/CMakeFiles/c10.dir/core/impl/LocalDispatchKeySet.cpp.o 2025-11-03T15:53:55.6406780Z [3831/5269] Building CXX object c10/CMakeFiles/c10.dir/core/impl/SizesAndStrides.cpp.o 2025-11-03T15:53:55.6759690Z [3832/5269] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyObjectSlot.cpp.o 2025-11-03T15:53:55.6898740Z [3833/5269] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreterHooks.cpp.o 2025-11-03T15:53:55.7202570Z [3834/5269] Building CXX object c10/CMakeFiles/c10.dir/core/impl/TorchDispatchModeTLS.cpp.o 2025-11-03T15:53:55.7235540Z [3835/5269] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PythonDispatcherTLS.cpp.o 2025-11-03T15:53:55.7392580Z [3836/5269] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreter.cpp.o 2025-11-03T15:53:55.7744110Z [3837/5269] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUCachingAllocator.cpp.o 2025-11-03T15:53:55.8023010Z [3838/5269] Building CXX object c10/CMakeFiles/c10.dir/core/impl/alloc_cpu.cpp.o 2025-11-03T15:53:55.8474060Z [3839/5269] Building CXX object c10/CMakeFiles/c10.dir/core/thread_pool.cpp.o 2025-11-03T15:53:55.9356470Z [3840/5269] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUProfilingAllocator.cpp.o 2025-11-03T15:53:55.9378790Z [3841/5269] Building CXX object c10/CMakeFiles/c10.dir/util/ApproximateClock.cpp.o 2025-11-03T15:53:55.9427750Z [3842/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o 2025-11-03T15:53:55.9582370Z [3843/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Bfloat16.cpp.o 2025-11-03T15:53:55.9644000Z [3844/5269] Building CXX object c10/CMakeFiles/c10.dir/util/DynamicCounter.cpp.o 2025-11-03T15:53:56.0000840Z [3845/5269] Building CXX object c10/CMakeFiles/c10.dir/util/DeadlockDetection.cpp.o 2025-11-03T15:53:56.0443750Z [3846/5269] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o 2025-11-03T15:53:56.1137820Z [3847/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fn.cpp.o 2025-11-03T15:53:56.1324440Z [3848/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fnuz.cpp.o 2025-11-03T15:53:56.1494940Z [3849/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o 2025-11-03T15:53:56.1795950Z [3850/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2fnuz.cpp.o 2025-11-03T15:53:56.1891870Z [3851/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e8m0fnu.cpp.o 2025-11-03T15:53:56.1926280Z [3852/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Gauge.cpp.o 2025-11-03T15:53:56.2045510Z [3853/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Half.cpp.o 2025-11-03T15:53:56.3154940Z [3854/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2.cpp.o 2025-11-03T15:53:56.3300630Z [3855/5269] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o 2025-11-03T15:53:56.3394270Z [3856/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o 2025-11-03T15:53:56.3496190Z [3857/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o 2025-11-03T15:53:56.3537920Z [3858/5269] Building CXX object c10/CMakeFiles/c10.dir/util/ParallelGuard.cpp.o 2025-11-03T15:53:56.3789450Z [3859/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o 2025-11-03T15:53:56.4140640Z [3860/5269] Building CXX object c10/CMakeFiles/c10.dir/util/MathConstants.cpp.o 2025-11-03T15:53:56.4243870Z [3861/5269] Building CXX object c10/CMakeFiles/c10.dir/util/NetworkFlow.cpp.o 2025-11-03T15:53:56.4465510Z [3862/5269] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o 2025-11-03T15:53:56.4763360Z [3863/5269] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o 2025-11-03T15:53:56.5300240Z [3864/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Type_no_demangle.cpp.o 2025-11-03T15:53:56.5326690Z [3865/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Unicode.cpp.o 2025-11-03T15:53:56.5751160Z [3866/5269] Building CXX object c10/CMakeFiles/c10.dir/util/ThreadLocalDebugInfo.cpp.o 2025-11-03T15:53:56.5867850Z [3867/5269] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o 2025-11-03T15:53:56.5933270Z [3868/5269] Building CXX object c10/CMakeFiles/c10.dir/util/Type_demangle.cpp.o 2025-11-03T15:53:56.6093070Z [3869/5269] Building CXX object c10/CMakeFiles/c10.dir/util/UniqueVoidPtr.cpp.o 2025-11-03T15:53:56.6489970Z [3870/5269] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o 2025-11-03T15:53:56.6591980Z [3871/5269] Building CXX object c10/CMakeFiles/c10.dir/util/TypeCast.cpp.o 2025-11-03T15:53:56.6714500Z [3872/5269] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o 2025-11-03T15:53:56.7577860Z [3873/5269] Building CXX object c10/CMakeFiles/c10.dir/util/error.cpp.o 2025-11-03T15:53:56.7778310Z [3874/5269] Building CXX object c10/CMakeFiles/c10.dir/util/WaitCounter.cpp.o 2025-11-03T15:53:56.8269990Z [3875/5269] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o 2025-11-03T15:53:56.8387110Z [3876/5269] Building CXX object c10/CMakeFiles/c10.dir/util/complex_math.cpp.o 2025-11-03T15:53:56.8431250Z [3877/5269] Building CXX object c10/CMakeFiles/c10.dir/util/env.cpp.o 2025-11-03T15:53:56.8440550Z [3878/5269] Building CXX object c10/CMakeFiles/c10.dir/util/int128.cpp.o 2025-11-03T15:53:56.8707170Z [3879/5269] Building CXX object c10/CMakeFiles/c10.dir/util/intrusive_ptr.cpp.o 2025-11-03T15:53:56.8775950Z [3880/5269] Building CXX object c10/CMakeFiles/c10.dir/util/numa.cpp.o 2025-11-03T15:53:56.9345500Z [3881/5269] Building C object caffe2/CMakeFiles/torch_global_deps.dir/__/torch/csrc/empty.c.o 2025-11-03T15:53:56.9454280Z [3882/5269] Building CXX object c10/CMakeFiles/c10.dir/util/tempfile.cpp.o 2025-11-03T15:53:56.9650850Z [3883/5269] Building CXX object c10/CMakeFiles/c10.dir/util/signal_handler.cpp.o 2025-11-03T15:53:56.9801270Z [3884/5269] Building CXX object c10/CMakeFiles/c10.dir/util/thread_name.cpp.o 2025-11-03T15:53:56.9831250Z [3885/5269] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o 2025-11-03T15:53:56.9982630Z [3886/5269] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o 2025-11-03T15:53:57.0195680Z [3887/5269] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o 2025-11-03T15:53:57.0199400Z [3888/5269] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o 2025-11-03T15:53:57.0199810Z [3889/5269] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o 2025-11-03T15:53:57.0774030Z [3890/5269] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o 2025-11-03T15:53:57.0879060Z [3891/5269] Linking C executable sleef/bin/mkrename_gnuabi 2025-11-03T15:53:57.0999990Z [3892/5269] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o 2025-11-03T15:53:57.1010890Z [3893/5269] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o 2025-11-03T15:53:57.1193100Z [3894/5269] Linking C executable sleef/bin/mkalias 2025-11-03T15:53:57.1234370Z [3895/5269] Linking C executable sleef/bin/mkrename 2025-11-03T15:53:57.1329630Z [3896/5269] Linking C shared library lib/libtorch_global_deps.dylib 2025-11-03T15:53:57.1336380Z [3897/5269] Linking C executable sleef/bin/mkmasked_gnuabi 2025-11-03T15:53:57.1802340Z [3898/5269] Linking C executable sleef/bin/mkdisp 2025-11-03T15:53:57.2026120Z [3899/5269] Linking CXX shared library lib/libc10.dylib 2025-11-03T15:53:57.2404530Z [3900/5269] Generating /Users/ec2-user/runner/_work/pytorch/pytorch/torch/utils/data/datapipes/datapipe.pyi 2025-11-03T15:53:57.2436320Z [3901/5269] Building C object sleef/src/common/CMakeFiles/addSuffix.dir/addSuffix.c.o 2025-11-03T15:53:57.2800160Z [3902/5269] Generating alias_ADVSIMD_dp.h.tmp 2025-11-03T15:53:57.4086040Z [3903/5269] Generating sleeflibm_ADVSIMD_.h.tmp 2025-11-03T15:53:57.4086800Z [3904/5269] Generating include/renameadvsimdnofma.h 2025-11-03T15:53:57.4087660Z Generating renameadvsimdnofma.h: mkrename cinz_ 2 4 advsimdnofma 2025-11-03T15:53:57.4088120Z [3905/5269] Generating include/renamepurecfma_scalar.h 2025-11-03T15:53:57.4088430Z Generating renamepurecfma_scalar.h: mkrename finz_ 1 1 purecfma 2025-11-03T15:53:57.4088690Z [3906/5269] Generating include/renamecuda.h 2025-11-03T15:53:57.4089120Z Generating renamecuda.h: mkrename finz_ 1 1 cuda 2025-11-03T15:53:57.4089530Z [3907/5269] Generating sleeflibm_ADVSIMD.h.tmp 2025-11-03T15:53:57.4089850Z [3908/5269] Generating include/renameadvsimd.h 2025-11-03T15:53:57.4090260Z Generating renameadvsimd.h: mkrename finz_ 2 4 advsimd 2025-11-03T15:53:57.4091690Z [3909/5269] Generating include/renamepurec_scalar.h 2025-11-03T15:53:57.4093610Z Generating renamepurec_scalar.h: mkrename cinz_ 1 1 purec 2025-11-03T15:53:57.4095460Z [3910/5269] Generating sleeflibm_ADVSIMDNOFMA.h.tmp 2025-11-03T15:53:57.4154560Z [3911/5269] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-11-03T15:53:57.5507270Z [3912/5269] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimdsp.c.o 2025-11-03T15:53:57.5529910Z [3913/5269] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimddp.c.o 2025-11-03T15:53:57.5639920Z [3914/5269] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimdsp.c.o 2025-11-03T15:53:57.5642000Z [3915/5269] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimdsp.c.o 2025-11-03T15:53:57.5645290Z [3916/5269] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimddp.c.o 2025-11-03T15:53:57.5671560Z [3917/5269] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimddp.c.o 2025-11-03T15:53:57.5731690Z [3918/5269] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-11-03T15:53:57.5751620Z [3919/5269] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimddp.c.o 2025-11-03T15:53:57.5773970Z [3920/5269] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-11-03T15:53:57.5796700Z [3921/5269] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimdsp.c.o 2025-11-03T15:53:57.5818720Z [3922/5269] Generating sleeflibm_SVENOFMA.h.tmp 2025-11-03T15:53:57.5826070Z [3923/5269] Generating alias_ADVSIMD_sp.h.tmp 2025-11-03T15:53:57.5829000Z [3924/5269] Generating sleeflibm_SVE.h.tmp 2025-11-03T15:53:57.5887690Z [3925/5269] Generating include/renamedspscalar.h 2025-11-03T15:53:57.5924840Z [3926/5269] Generating include/alias_advsimd.h 2025-11-03T15:53:57.5984310Z [3927/5269] Generating ../../../include/sleef.h 2025-11-03T15:53:57.6570610Z [3928/5269] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimdsp.c.o 2025-11-03T15:53:57.6761230Z [3929/5269] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimddp.c.o 2025-11-03T15:53:57.6890850Z [3930/5269] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimdsp.c.o 2025-11-03T15:53:57.6911070Z [3931/5269] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimddp.c.o 2025-11-03T15:53:57.7013080Z [3932/5269] Linking C executable sleef/bin/addSuffix 2025-11-03T15:53:57.7283710Z [3933/5269] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimdsp.c.o 2025-11-03T15:53:57.7316760Z [3934/5269] Generating dispscalar.c.body 2025-11-03T15:53:57.7356390Z [3935/5269] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimddp.c.o 2025-11-03T15:53:57.7547360Z [3936/5269] Generating dispscalar.c 2025-11-03T15:53:57.7761080Z [3937/5269] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimdsp.c.o 2025-11-03T15:53:57.7995000Z [3938/5269] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimddp.c.o 2025-11-03T15:53:57.8421130Z [3939/5269] Building C object sleef/src/libm/CMakeFiles/sleef.dir/rempitab.c.o 2025-11-03T15:53:57.8549980Z [3940/5269] Building C object sleef/src/libm/CMakeFiles/dispscalar_obj.dir/dispscalar.c.o 2025-11-03T15:53:57.9592600Z [3941/5269] Linking C static library sleef/lib/libsleef.a 2025-11-03T15:53:58.7200190Z [3942/5269] Regenerating version file... 2025-11-03T15:54:00.0717640Z [3943/5269] 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-11-03T15:54:01.3923410Z [3944/5269] 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/functionalization/generated/ViewMetaClassesPythonBinding.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-11-03T15:54:01.5512810Z [3945/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DTensorState.cpp.o 2025-11-03T15:54:01.7101490Z [3946/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/AccumulateType.cpp.o 2025-11-03T15:54:01.7298170Z [3947/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Dispatch.cpp.o 2025-11-03T15:54:01.7824980Z [3948/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DeviceAccelerator.cpp.o 2025-11-03T15:54:01.7878450Z [3949/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Context.cpp.o 2025-11-03T15:54:01.8126810Z [3950/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CPUGeneratorImpl.cpp.o 2025-11-03T15:54:01.8779480Z [3951/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DynamicLibrary.cpp.o 2025-11-03T15:54:01.8916400Z [3952/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FuncTorchTLS.cpp.o 2025-11-03T15:54:01.9129560Z [3953/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ConjugateFallback.cpp.o 2025-11-03T15:54:02.0043630Z [3954/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/EmptyTensor.cpp.o 2025-11-03T15:54:02.1661670Z [3955/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DLConvertor.cpp.o 2025-11-03T15:54:02.1823050Z [3956/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ExpandUtils.cpp.o 2025-11-03T15:54:02.2454150Z [3957/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalStorageImpl.cpp.o 2025-11-03T15:54:02.2764750Z [3958/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalTensorWrapper.cpp.o 2025-11-03T15:54:02.3767600Z [3959/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalizeFallbackKernel.cpp.o 2025-11-03T15:54:02.4371140Z [3960/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CachedTensorUtils.cpp.o 2025-11-03T15:54:02.4705860Z [3961/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapMode.cpp.o 2025-11-03T15:54:02.4954400Z [3962/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedTensorImpl.cpp.o 2025-11-03T15:54:02.5310990Z [3963/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalInverses.cpp.o 2025-11-03T15:54:02.6330620Z [3964/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MapAllocator.cpp.o 2025-11-03T15:54:02.6491730Z [3965/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelNative.cpp.o 2025-11-03T15:54:02.6831350Z [3966/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MemoryOverlap.cpp.o 2025-11-03T15:54:02.7137400Z [3967/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedFallback.cpp.o 2025-11-03T15:54:02.8411530Z [3968/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NamedTensorUtils.cpp.o 2025-11-03T15:54:02.8611960Z [3969/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelCommon.cpp.o 2025-11-03T15:54:02.9552170Z [3970/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelOpenMP.cpp.o 2025-11-03T15:54:02.9818730Z [3971/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapTransforms.cpp.o 2025-11-03T15:54:02.9830170Z [3972/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/PythonTorchFunctionTLS.cpp.o 2025-11-03T15:54:02.9840700Z [3973/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SequenceNumber.cpp.o 2025-11-03T15:54:02.9971560Z [3974/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchingRegistrations.cpp.o 2025-11-03T15:54:03.0145510Z [3975/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SavedTensorHooks.cpp.o 2025-11-03T15:54:03.0884230Z [3976/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelThreadPoolNative.cpp.o 2025-11-03T15:54:03.1311070Z [3977/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ScalarOps.cpp.o 2025-11-03T15:54:03.1739770Z [3978/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NestedTensorImpl.cpp.o 2025-11-03T15:54:03.3601570Z [3979/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorGeometry.cpp.o 2025-11-03T15:54:03.3855170Z [3980/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorMeta.cpp.o 2025-11-03T15:54:03.4187810Z [3981/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIndexing.cpp.o 2025-11-03T15:54:03.5039250Z [3982/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorNames.cpp.o 2025-11-03T15:54:03.5287380Z [3983/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIterator.cpp.o 2025-11-03T15:54:03.5878640Z [3984/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseCsrTensorImpl.cpp.o 2025-11-03T15:54:03.6190480Z [3985/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/StorageUtils.cpp.o 2025-11-03T15:54:03.6292140Z [3986/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalPythonObjects.cpp.o 2025-11-03T15:54:03.7483560Z [3987/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseTensorImpl.cpp.o 2025-11-03T15:54:03.7583970Z [3988/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Version.cpp.o 2025-11-03T15:54:03.7653030Z [3989/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/Utils.cpp.o 2025-11-03T15:54:03.8128800Z [3990/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/FlushDenormal.cpp.o 2025-11-03T15:54:04.0002200Z [3991/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Utils.cpp.o 2025-11-03T15:54:04.0045530Z [3992/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CPUGuardImpl.cpp.o 2025-11-03T15:54:04.0298110Z [3993/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/VmapModeRegistrations.cpp.o 2025-11-03T15:54:04.0715690Z [3994/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorUtils.cpp.o 2025-11-03T15:54:04.0820090Z [3995/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CUDAHooksInterface.cpp.o 2025-11-03T15:54:04.1432400Z [3996/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalState.cpp.o 2025-11-03T15:54:04.2186780Z [3997/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HIPHooksInterface.cpp.o 2025-11-03T15:54:04.2641260Z [3998/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HPUHooksInterface.cpp.o 2025-11-03T15:54:04.3130840Z [3999/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/IPUHooksInterface.cpp.o 2025-11-03T15:54:04.3427180Z [4000/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MAIAHooksInterface.cpp.o 2025-11-03T15:54:04.3501420Z [4001/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MetaGuardImpl.cpp.o 2025-11-03T15:54:04.3824450Z [4002/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ZeroTensorFallback.cpp.o 2025-11-03T15:54:04.4009050Z [4003/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MPSHooksInterface.cpp.o 2025-11-03T15:54:04.4173770Z [4004/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MTIAHooksInterface.cpp.o 2025-11-03T15:54:04.4532810Z [4005/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/autocast_mode.cpp.o 2025-11-03T15:54:04.5047380Z [4006/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/PrivateUse1HooksInterface.cpp.o 2025-11-03T15:54:04.5988240Z [4007/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/XLAHooksInterface.cpp.o 2025-11-03T15:54:04.6209370Z [4008/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/XPUHooksInterface.cpp.o 2025-11-03T15:54:04.8738040Z [4009/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/ADInterpreters.cpp.o 2025-11-03T15:54:05.1257130Z [4010/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesConvolution.cpp.o 2025-11-03T15:54:05.1410410Z [4011/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesActivation.cpp.o 2025-11-03T15:54:05.1529960Z [4012/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesBinaryOps.cpp.o 2025-11-03T15:54:05.1766920Z [4013/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDynamic.cpp.o 2025-11-03T15:54:05.2055000Z [4014/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDecompositions.cpp.o 2025-11-03T15:54:05.2930400Z [4015/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesFactory.cpp.o 2025-11-03T15:54:05.3702380Z [4016/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesHelper.cpp.o 2025-11-03T15:54:05.6747470Z [4017/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesIndexing.cpp.o 2025-11-03T15:54:05.8724470Z [4018/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLinearAlgebra.cpp.o 2025-11-03T15:54:05.8879400Z [4019/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLoss.cpp.o 2025-11-03T15:54:05.9029410Z [4020/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesRandomness.cpp.o 2025-11-03T15:54:05.9177150Z [4021/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesNorm.cpp.o 2025-11-03T15:54:05.9384090Z [4022/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesPooling.cpp.o 2025-11-03T15:54:05.9583710Z [4023/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesModules.cpp.o 2025-11-03T15:54:05.9740630Z [4024/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesReduceOps.cpp.o 2025-11-03T15:54:06.2799530Z [4025/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesScatterOps.cpp.o 2025-11-03T15:54:06.3763460Z [4026/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/FunctionalizeInterpreter.cpp.o 2025-11-03T15:54:06.3794510Z [4027/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedTensorImpl.cpp.o 2025-11-03T15:54:06.4296260Z [4028/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/Interpreter.cpp.o 2025-11-03T15:54:06.4697480Z [4029/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesUnaryOps.cpp.o 2025-11-03T15:54:06.5352990Z [4030/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesViews.cpp.o 2025-11-03T15:54:06.7193330Z [4031/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedFallback.cpp.o 2025-11-03T15:54:06.7739780Z [4032/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PlumbingHelper.cpp.o 2025-11-03T15:54:06.8007970Z [4033/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/TensorWrapper.cpp.o 2025-11-03T15:54:06.8294020Z [4034/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenGeneral.cpp.o 2025-11-03T15:54:06.8495790Z [4035/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapInterpreter.cpp.o 2025-11-03T15:54:06.8934030Z [4036/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/DynamicLayer.cpp.o 2025-11-03T15:54:06.9694500Z [4037/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyVmapTransforms.cpp.o 2025-11-03T15:54:07.0732360Z [4038/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/CachingHostAllocator.cpp.o 2025-11-03T15:54:07.1242000Z [4039/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyBatchingRegistrations.cpp.o 2025-11-03T15:54:07.1342340Z [4040/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/record_function.cpp.o 2025-11-03T15:54:07.1511660Z [4041/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypePropertiesRegistry.cpp.o 2025-11-03T15:54:07.1892820Z [4042/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypeProperties.cpp.o 2025-11-03T15:54:07.1951210Z [4043/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/BackendSelectFallbackKernel.cpp.o 2025-11-03T15:54:07.2952500Z [4044/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dimname.cpp.o 2025-11-03T15:54:07.3369880Z [4045/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PyTorchOperatorHacks.cpp.o 2025-11-03T15:54:07.4306270Z [4046/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapModeRegistrations.cpp.o 2025-11-03T15:54:07.4524600Z [4047/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/GeneratorForPrivateuseone.cpp.o 2025-11-03T15:54:07.4540800Z [4048/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dict.cpp.o 2025-11-03T15:54:07.5218940Z [4049/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Formatting.cpp.o 2025-11-03T15:54:07.5478690Z [4050/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Generator.cpp.o 2025-11-03T15:54:07.5756980Z [4051/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/List.cpp.o 2025-11-03T15:54:07.6670850Z [4052/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/MetaFallbackKernel.cpp.o 2025-11-03T15:54:07.6770820Z [4053/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NestedIntSymNodeImpl.cpp.o 2025-11-03T15:54:07.6805960Z [4054/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedRegistrations.cpp.o 2025-11-03T15:54:07.6857180Z [4055/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedTensor.cpp.o 2025-11-03T15:54:07.6886380Z [4056/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Range.cpp.o 2025-11-03T15:54:07.9218420Z [4057/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonOpRegistrationTrampoline.cpp.o 2025-11-03T15:54:07.9426630Z [4058/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonFallbackKernel.cpp.o 2025-11-03T15:54:07.9792420Z [4059/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableHooksInterface.cpp.o 2025-11-03T15:54:08.0111970Z [4060/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableFallbackKernel.cpp.o 2025-11-03T15:54:08.0128390Z [4061/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Tensor.cpp.o 2025-11-03T15:54:08.0379720Z [4062/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TorchDispatchUtils.cpp.o 2025-11-03T15:54:08.0582630Z [4063/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Vitals.cpp.o 2025-11-03T15:54:08.0664290Z [4064/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/adaption.cpp.o 2025-11-03T15:54:08.0882960Z [4065/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/boxing/KernelFunction.cpp.o 2025-11-03T15:54:08.0916300Z [4066/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/blob.cpp.o 2025-11-03T15:54:08.2828910Z [4067/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/ObservedOperators.cpp.o 2025-11-03T15:54:08.3778650Z [4068/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/class_type.cpp.o 2025-11-03T15:54:08.3968710Z [4069/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/DispatchKeyExtractor.cpp.o 2025-11-03T15:54:08.4426820Z [4070/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/custom_class.cpp.o 2025-11-03T15:54:08.4446680Z [4071/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/function_schema.cpp.o 2025-11-03T15:54:08.4689270Z [4072/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/Dispatcher.cpp.o 2025-11-03T15:54:08.4955920Z [4073/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/interned_strings.cpp.o 2025-11-03T15:54:08.5029300Z [4074/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dynamic_type.cpp.o 2025-11-03T15:54:08.5397310Z [4075/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/OperatorEntry.cpp.o 2025-11-03T15:54:08.7045100Z [4076/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ivalue.cpp.o 2025-11-03T15:54:08.7307420Z [4077/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/register_symbols.cpp.o 2025-11-03T15:54:08.7371570Z [4078/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/operator_name.cpp.o 2025-11-03T15:54:08.7546530Z [4079/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/library.cpp.o 2025-11-03T15:54:08.8192500Z [4080/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/tensor_type.cpp.o 2025-11-03T15:54:08.8508860Z [4081/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/infer_schema.cpp.o 2025-11-03T15:54:08.8698240Z [4082/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/op_registration.cpp.o 2025-11-03T15:54:08.9216740Z [4083/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type.cpp.o 2025-11-03T15:54:09.0366920Z [4084/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/strtod.cpp.o 2025-11-03T15:54:09.0455030Z [4085/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/lexer.cpp.o 2025-11-03T15:54:09.0662630Z [4086/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/error_report.cpp.o 2025-11-03T15:54:09.0773990Z [4087/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type_factory.cpp.o 2025-11-03T15:54:09.1503770Z [4088/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/union_type.cpp.o 2025-11-03T15:54:09.1654990Z [4089/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/function_schema_parser.cpp.o 2025-11-03T15:54:09.2770930Z [4090/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_type_parser.cpp.o 2025-11-03T15:54:09.3071810Z [4091/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/source_range.cpp.o 2025-11-03T15:54:09.3912360Z [4092/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling.cpp.o 2025-11-03T15:54:09.4085840Z [4093/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Activation.cpp.o 2025-11-03T15:54:09.4558820Z [4094/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling3d.cpp.o 2025-11-03T15:54:09.4625080Z [4095/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AffineGridGenerator.cpp.o 2025-11-03T15:54:09.4652190Z [4096/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling2d.cpp.o 2025-11-03T15:54:09.4795050Z [4097/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling3d.cpp.o 2025-11-03T15:54:09.5915180Z [4098/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AmpKernels.cpp.o 2025-11-03T15:54:09.5952210Z [4099/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AutogradComposite.cpp.o 2025-11-03T15:54:09.7962130Z [4100/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool2d.cpp.o 2025-11-03T15:54:09.8159130Z [4101/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool3d.cpp.o 2025-11-03T15:54:09.8339550Z [4102/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BlasKernel.cpp.o 2025-11-03T15:54:09.8382360Z [4103/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BinaryOps.cpp.o 2025-11-03T15:54:09.8465400Z [4104/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebraKernel.cpp.o 2025-11-03T15:54:09.8542810Z [4105/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebra.cpp.o 2025-11-03T15:54:09.8758670Z [4106/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Blas.cpp.o 2025-11-03T15:54:09.8845420Z [4107/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Bucketization.cpp.o 2025-11-03T15:54:10.1256620Z [4108/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUBlas.cpp.o 2025-11-03T15:54:10.1960770Z [4109/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ComparisonUtils.cpp.o 2025-11-03T15:54:10.2225440Z [4110/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM2d.cpp.o 2025-11-03T15:54:10.2242130Z [4111/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUFallback.cpp.o 2025-11-03T15:54:10.2260280Z [4112/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Convolution.cpp.o 2025-11-03T15:54:10.2431930Z [4113/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Constraints.cpp.o 2025-11-03T15:54:10.2634010Z [4114/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ChanelShuffle.cpp.o 2025-11-03T15:54:10.3647890Z [4115/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Col2Im.cpp.o 2025-11-03T15:54:10.5539470Z [4116/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM3d.cpp.o 2025-11-03T15:54:10.5611830Z [4117/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DispatchStub.cpp.o 2025-11-03T15:54:10.5720130Z [4118/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionTBC.cpp.o 2025-11-03T15:54:10.5738090Z [4119/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool2d.cpp.o 2025-11-03T15:54:10.5903630Z [4120/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool3d.cpp.o 2025-11-03T15:54:10.6101820Z [4121/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Correlation.cpp.o 2025-11-03T15:54:10.6119110Z [4122/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Copy.cpp.o 2025-11-03T15:54:10.6429730Z [4123/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Cross.cpp.o 2025-11-03T15:54:10.8564510Z [4124/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distance.cpp.o 2025-11-03T15:54:10.9513520Z [4125/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Fill.cpp.o 2025-11-03T15:54:10.9638160Z [4126/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Dropout.cpp.o 2025-11-03T15:54:10.9867900Z [4127/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Embedding.cpp.o 2025-11-03T15:54:10.9920770Z [4128/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ForeachOpsKernels.cpp.o 2025-11-03T15:54:11.0081930Z [4129/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distributions.cpp.o 2025-11-03T15:54:11.0232480Z [4130/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool2d.cpp.o 2025-11-03T15:54:11.0339480Z [4131/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/EmbeddingBag.cpp.o 2025-11-03T15:54:11.3057190Z [4132/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdagrad.cpp.o 2025-11-03T15:54:11.3106890Z [4133/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FunctionOfAMatrixUtils.cpp.o 2025-11-03T15:54:11.3286790Z [4134/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdam.cpp.o 2025-11-03T15:54:11.3312700Z [4135/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedSGD.cpp.o 2025-11-03T15:54:11.3345580Z [4136/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool3d.cpp.o 2025-11-03T15:54:11.3467090Z [4137/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GatedLinearUnit.cpp.o 2025-11-03T15:54:11.3801880Z [4138/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GridSampler.cpp.o 2025-11-03T15:54:11.4224570Z [4139/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Im2Col.cpp.o 2025-11-03T15:54:11.6727680Z [4140/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Lerp.cpp.o 2025-11-03T15:54:11.6894990Z [4141/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/IndexingUtils.cpp.o 2025-11-03T15:54:11.6984480Z [4142/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Histogram.cpp.o 2025-11-03T15:54:11.7145440Z [4143/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Itertools.cpp.o 2025-11-03T15:54:11.7350090Z [4144/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Integration.cpp.o 2025-11-03T15:54:11.7476080Z [4145/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Linear.cpp.o 2025-11-03T15:54:11.7557740Z [4146/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LinearAlgebra.cpp.o 2025-11-03T15:54:11.7708430Z [4147/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBatching.cpp.o 2025-11-03T15:54:12.0420270Z [4148/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Loss.cpp.o 2025-11-03T15:54:12.0673390Z [4149/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossCTC.cpp.o 2025-11-03T15:54:12.0985480Z [4150/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiMargin.cpp.o 2025-11-03T15:54:12.1046950Z [4151/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiLabelMargin.cpp.o 2025-11-03T15:54:12.1118590Z [4152/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL.cpp.o 2025-11-03T15:54:12.2157930Z [4153/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL2d.cpp.o 2025-11-03T15:54:12.2260110Z [4154/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Memory.cpp.o 2025-11-03T15:54:12.2362630Z [4155/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxPooling.cpp.o 2025-11-03T15:54:12.3297630Z [4156/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxUnpooling.cpp.o 2025-11-03T15:54:12.3790110Z [4157/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MetaTensor.cpp.o 2025-11-03T15:54:12.5458720Z [4158/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NNPACK.cpp.o 2025-11-03T15:54:12.5543580Z [4159/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp.o 2025-11-03T15:54:12.6002680Z [4160/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NegateFallback.cpp.o 2025-11-03T15:54:12.6034310Z [4161/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NamedTensor.cpp.o 2025-11-03T15:54:12.6068400Z [4162/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveDilatedConvolution.cpp.o 2025-11-03T15:54:12.6456130Z [4163/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Onehot.cpp.o 2025-11-03T15:54:12.6583050Z [4164/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Normalization.cpp.o 2025-11-03T15:54:12.6769580Z [4165/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp.o 2025-11-03T15:54:12.9202210Z [4166/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PadNd.cpp.o 2025-11-03T15:54:12.9388760Z [4167/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PointwiseOps.cpp.o 2025-11-03T15:54:12.9495630Z [4168/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PackedSequence.cpp.o 2025-11-03T15:54:12.9725800Z [4169/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PixelShuffle.cpp.o 2025-11-03T15:54:13.0099040Z [4170/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/QuantizedLinear.cpp.o 2025-11-03T15:54:13.0256740Z [4171/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pooling.cpp.o 2025-11-03T15:54:13.0361220Z [4172/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pow.cpp.o 2025-11-03T15:54:13.1148060Z [4173/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RNN.cpp.o 2025-11-03T15:54:13.2350280Z [4174/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RangeFactories.cpp.o 2025-11-03T15:54:13.2582590Z [4175/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceAllOps.cpp.o 2025-11-03T15:54:13.3486700Z [4176/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Repeat.cpp.o 2025-11-03T15:54:13.3768420Z [4177/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReflectionPad.cpp.o 2025-11-03T15:54:13.4581890Z [4178/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceOps.cpp.o 2025-11-03T15:54:13.4660960Z [4179/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Resize.cpp.o 2025-11-03T15:54:13.4917090Z [4180/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReplicationPadding.cpp.o 2025-11-03T15:54:13.5007000Z [4181/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RowwisePrune.cpp.o 2025-11-03T15:54:13.5536050Z [4182/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Scalar.cpp.o 2025-11-03T15:54:13.6499850Z [4183/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SegmentReduce.cpp.o 2025-11-03T15:54:13.7195000Z [4184/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOps.cpp.o 2025-11-03T15:54:13.7796880Z [4185/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SoftMax.cpp.o 2025-11-03T15:54:13.8125010Z [4186/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Sorting.cpp.o 2025-11-03T15:54:13.8800580Z [4187/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SummaryOps.cpp.o 2025-11-03T15:54:13.9448890Z [4188/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SpectralOps.cpp.o 2025-11-03T15:54:13.9548860Z [4189/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOpsUtils.cpp.o 2025-11-03T15:54:14.1283980Z [4190/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorCompare.cpp.o 2025-11-03T15:54:14.1328040Z [4191/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorFactories.cpp.o 2025-11-03T15:54:14.1806170Z [4192/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SparseTensorUtils.cpp.o 2025-11-03T15:54:14.1921630Z [4193/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorProperties.cpp.o 2025-11-03T15:54:14.2116630Z [4194/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorIteratorReduce.cpp.o 2025-11-03T15:54:14.3787830Z [4195/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorShape.cpp.o 2025-11-03T15:54:14.4470000Z [4196/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorTransformations.cpp.o 2025-11-03T15:54:14.4746640Z [4197/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorConversions.cpp.o 2025-11-03T15:54:14.4948360Z [4198/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorAdvancedIndexing.cpp.o 2025-11-03T15:54:14.5060940Z [4199/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TestOps.cpp.o 2025-11-03T15:54:14.5209320Z [4200/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TypeProperties.cpp.o 2025-11-03T15:54:14.5810390Z [4201/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold2d.cpp.o 2025-11-03T15:54:14.6161700Z [4202/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnaryOps.cpp.o 2025-11-03T15:54:14.6382130Z [4203/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TriangularOps.cpp.o 2025-11-03T15:54:14.7253710Z [4204/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold3d.cpp.o 2025-11-03T15:54:14.8893410Z [4205/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnfoldBackward.cpp.o 2025-11-03T15:54:14.9212570Z [4206/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBilinear2d.cpp.o 2025-11-03T15:54:14.9323220Z [4207/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleLinear1d.cpp.o 2025-11-03T15:54:14.9498820Z [4208/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unique.cpp.o 2025-11-03T15:54:14.9537080Z [4209/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSample.cpp.o 2025-11-03T15:54:15.0011080Z [4210/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBicubic2d.cpp.o 2025-11-03T15:54:15.0230380Z [4211/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest2d.cpp.o 2025-11-03T15:54:15.0379210Z [4212/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest1d.cpp.o 2025-11-03T15:54:15.1663920Z [4213/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/verbose_wrapper.cpp.o 2025-11-03T15:54:15.2470980Z [4214/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest3d.cpp.o 2025-11-03T15:54:15.2784730Z [4215/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleTrilinear3d.cpp.o 2025-11-03T15:54:15.3149250Z [4216/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/VariableMethodStubs.cpp.o 2025-11-03T15:54:15.3551130Z [4217/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/WeightNorm.cpp.o 2025-11-03T15:54:15.3654680Z [4218/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/group_norm.cpp.o 2025-11-03T15:54:15.3691520Z [4219/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/prim_native_functions.cpp.o 2025-11-03T15:54:15.3781000Z [4220/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/layer_norm.cpp.o 2025-11-03T15:54:15.5096730Z [4221/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/library.cpp.o 2025-11-03T15:54:15.6584660Z [4222/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear.cpp.o 2025-11-03T15:54:15.6753180Z [4223/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.cpp.o 2025-11-03T15:54:15.7491510Z [4224/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_dynamic.cpp.o 2025-11-03T15:54:15.8011150Z [4225/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_prepack.cpp.o 2025-11-03T15:54:15.8142360Z [4226/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/FlattenIndicesKernel.cpp.o 2025-11-03T15:54:15.8734700Z [4227/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_unpack.cpp.o 2025-11-03T15:54:15.9862470Z [4228/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ParamUtils.cpp.o 2025-11-03T15:54:15.9942560Z [4229/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SoftMax.cpp.o 2025-11-03T15:54:16.0414630Z [4230/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_serialize.cpp.o 2025-11-03T15:54:16.0961200Z [4231/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_deserialize.cpp.o 2025-11-03T15:54:16.1351390Z [4232/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBinaryOpIntersectionKernel.cpp.o 2025-11-03T15:54:16.1580640Z [4233/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlas.cpp.o 2025-11-03T15:54:16.2317910Z [4234/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensor.cpp.o 2025-11-03T15:54:16.2645130Z [4235/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlasImpl.cpp.o 2025-11-03T15:54:16.4158940Z [4236/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseFactories.cpp.o 2025-11-03T15:54:16.4315500Z [4237/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp.o 2025-11-03T15:54:16.4474570Z [4238/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseMatMul.cpp.o 2025-11-03T15:54:16.4507580Z [4239/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensor.cpp.o 2025-11-03T15:54:16.5039460Z [4240/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseUnaryOps.cpp.o 2025-11-03T15:54:16.5205620Z [4241/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o 2025-11-03T15:54:16.5492830Z [4242/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ValidateCompressedIndicesKernel.cpp.o 2025-11-03T15:54:16.9464850Z [4243/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorAliases.cpp.o 2025-11-03T15:54:16.9827760Z [4244/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBackward.cpp.o 2025-11-03T15:54:17.0720760Z [4245/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBinaryOps.cpp.o 2025-11-03T15:54:17.1279090Z [4246/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorTransformerFunctions.cpp.o 2025-11-03T15:54:17.1713050Z [4247/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUtils.cpp.o 2025-11-03T15:54:17.1874770Z [4248/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMath.cpp.o 2025-11-03T15:54:17.2038100Z [4249/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMatmul.cpp.o 2025-11-03T15:54:17.2253050Z [4250/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUnaryOps.cpp.o 2025-11-03T15:54:17.2494470Z [4251/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorFactories.cpp.o 2025-11-03T15:54:17.2602300Z [4252/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizer.cpp.o 2025-11-03T15:54:17.2605990Z [4253/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o 2025-11-03T15:54:17.3707300Z [4254/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ACLUtils.cpp.o 2025-11-03T15:54:17.6704520Z [4255/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool2d.cpp.o 2025-11-03T15:54:17.8088260Z [4256/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorFactories.cpp.o 2025-11-03T15:54:17.8473490Z [4257/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/QTensor.cpp.o 2025-11-03T15:54:17.8617980Z [4258/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerChannelAffine.cpp.o 2025-11-03T15:54:17.8738580Z [4259/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerTensorAffine.cpp.o 2025-11-03T15:54:17.9007330Z [4260/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/Copy.cpp.o 2025-11-03T15:54:17.9079740Z [4261/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorCompare.cpp.o 2025-11-03T15:54:17.9247290Z [4262/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorAdvancedIndexing.cpp.o 2025-11-03T15:54:17.9882270Z [4263/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AdaptiveAveragePooling.cpp.o 2025-11-03T15:54:18.1817540Z [4264/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/BinaryOps.cpp.o 2025-11-03T15:54:18.2001230Z [4265/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool3d.cpp.o 2025-11-03T15:54:18.2018940Z [4266/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/RuyUtils.cpp.o 2025-11-03T15:54:18.2549080Z [4267/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ChannelShuffle.cpp.o 2025-11-03T15:54:18.2996470Z [4268/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/LinearUnpackImpl.cpp.o 2025-11-03T15:54:18.3127720Z [4269/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/IntReprQuant.cpp.o 2025-11-03T15:54:18.3319320Z [4270/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/MakePerTensorQuantizedTensor.cpp.o 2025-11-03T15:54:18.4040260Z [4271/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Normalization.cpp.o 2025-11-03T15:54:18.4395860Z [4272/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Pooling.cpp.o 2025-11-03T15:54:18.4811830Z [4273/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ReduceOps.cpp.o 2025-11-03T15:54:18.6294140Z [4274/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorOperators.cpp.o 2025-11-03T15:54:18.6494590Z [4275/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Sorting.cpp.o 2025-11-03T15:54:18.6711040Z [4276/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorShape.cpp.o 2025-11-03T15:54:18.7671520Z [4277/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleBilinear2d.cpp.o 2025-11-03T15:54:18.7705390Z [4278/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/init_qnnpack.cpp.o 2025-11-03T15:54:18.7973300Z [4279/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest3d.cpp.o 2025-11-03T15:54:18.7990350Z [4280/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest2d.cpp.o 2025-11-03T15:54:18.8878850Z [4281/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fbgemm_utils.cpp.o 2025-11-03T15:54:18.9237760Z [4282/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fused_obs_fake_quant.cpp.o 2025-11-03T15:54:19.0383760Z [4283/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/XnnpackUtils.cpp.o 2025-11-03T15:54:19.1673860Z [4284/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qclamp.cpp.o 2025-11-03T15:54:19.1712170Z [4285/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_dynamic.cpp.o 2025-11-03T15:54:19.1901900Z [4286/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv.cpp.o 2025-11-03T15:54:19.2036790Z [4287/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qelu.cpp.o 2025-11-03T15:54:19.2352780Z [4288/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_prepack.cpp.o 2025-11-03T15:54:19.4550260Z [4289/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag.cpp.o 2025-11-03T15:54:19.4854520Z [4290/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qdropout.cpp.o 2025-11-03T15:54:19.4999440Z [4291/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_unpack_impl.cpp.o 2025-11-03T15:54:19.5298920Z [4292/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_unpack.cpp.o 2025-11-03T15:54:19.5354560Z [4293/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_prepack.cpp.o 2025-11-03T15:54:19.5565220Z [4294/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qgelu.cpp.o 2025-11-03T15:54:19.6477960Z [4295/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardsigmoid.cpp.o 2025-11-03T15:54:19.6997860Z [4296/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardswish.cpp.o 2025-11-03T15:54:19.8113640Z [4297/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear.cpp.o 2025-11-03T15:54:19.8583640Z [4298/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_dynamic.cpp.o 2025-11-03T15:54:20.0468840Z [4299/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmul.cpp.o 2025-11-03T15:54:20.0483790Z [4300/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qrelu.cpp.o 2025-11-03T15:54:20.0514080Z [4301/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_prepack.cpp.o 2025-11-03T15:54:20.0542000Z [4302/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qnormalization.cpp.o 2025-11-03T15:54:20.0813140Z [4303/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsigmoid.cpp.o 2025-11-03T15:54:20.1781760Z [4304/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qtanh.cpp.o 2025-11-03T15:54:20.1975970Z [4305/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmatmul.cpp.o 2025-11-03T15:54:20.2000200Z [4306/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/MklAllocationHelper.cpp.o 2025-11-03T15:54:20.3290340Z [4307/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qthreshold.cpp.o 2025-11-03T15:54:20.3658550Z [4308/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/library.cpp.o 2025-11-03T15:54:20.4037870Z [4309/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o 2025-11-03T15:54:20.4786280Z [4310/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsoftmax.cpp.o 2025-11-03T15:54:20.5583660Z [4311/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseBlasImpl.cpp.o 2025-11-03T15:54:20.5786690Z [4312/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qconv_unpack.cpp.o 2025-11-03T15:54:20.6436110Z [4313/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseCsrLinearAlgebra.cpp.o 2025-11-03T15:54:20.6616420Z [4314/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/BinaryOps.cpp.o 2025-11-03T15:54:20.6719230Z [4315/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/IDeepRegistration.cpp.o 2025-11-03T15:54:20.7428230Z [4316/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SpectralOps.cpp.o 2025-11-03T15:54:20.8022450Z [4317/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Copy.cpp.o 2025-11-03T15:54:20.8286510Z [4318/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Conv.cpp.o 2025-11-03T15:54:20.8753750Z [4319/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qlinear_unpack.cpp.o 2025-11-03T15:54:20.8956460Z [4320/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Gelu.cpp.o 2025-11-03T15:54:21.0701740Z [4321/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNConversions.cpp.o 2025-11-03T15:54:21.0878110Z [4322/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNCommon.cpp.o 2025-11-03T15:54:21.0938880Z [4323/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Linear.cpp.o 2025-11-03T15:54:21.1293560Z [4324/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MkldnnTensorMath.cpp.o 2025-11-03T15:54:21.1531800Z [4325/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/ConvPrepack.cpp.o 2025-11-03T15:54:21.1860940Z [4326/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RegisterMkldnnOpContextClass.cpp.o 2025-11-03T15:54:21.2259800Z [4327/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Matmul.cpp.o 2025-11-03T15:54:21.2477280Z [4328/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Normalization.cpp.o 2025-11-03T15:54:21.4380470Z [4329/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Pooling.cpp.o 2025-11-03T15:54:21.4946920Z [4330/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Relu.cpp.o 2025-11-03T15:54:21.5226860Z [4331/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorShape.cpp.o 2025-11-03T15:54:21.5638600Z [4332/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorFactories.cpp.o 2025-11-03T15:54:21.5803480Z [4333/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/SoftMax.cpp.o 2025-11-03T15:54:21.6003420Z [4334/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/OpContext.cpp.o 2025-11-03T15:54:21.6315350Z [4335/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Prelu.cpp.o 2025-11-03T15:54:21.8254430Z [4336/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/UnaryOps.cpp.o 2025-11-03T15:54:21.8710650Z [4337/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RNN.cpp.o 2025-11-03T15:54:21.8725340Z [4338/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Utils.cpp.o 2025-11-03T15:54:21.8759270Z [4339/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/sdp_utils_cpp.cpp.o 2025-11-03T15:54:21.9005570Z [4340/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Activation.cpp.o 2025-11-03T15:54:21.9045290Z [4341/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/transformer.cpp.o 2025-11-03T15:54:21.9453520Z [4342/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/attention.cpp.o 2025-11-03T15:54:21.9854970Z [4343/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/utils/Factory.cpp.o 2025-11-03T15:54:22.0767000Z [4344/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/AveragePooling.cpp.o 2025-11-03T15:54:22.1111350Z [4345/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Shim.cpp.o 2025-11-03T15:54:22.1908940Z [4346/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/ChannelShuffle.cpp.o 2025-11-03T15:54:22.1963340Z [4347/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Init.cpp.o 2025-11-03T15:54:22.2673950Z [4348/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Convolution.cpp.o 2025-11-03T15:54:22.3011920Z [4349/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/MaxPooling.cpp.o 2025-11-03T15:54:22.3662920Z [4350/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/OpContext.cpp.o 2025-11-03T15:54:22.3798460Z [4351/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Linear.cpp.o 2025-11-03T15:54:22.3980530Z [4352/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/RegisterOpContextClass.cpp.o 2025-11-03T15:54:22.6809680Z [4353/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CompositeViewCopyKernels.cpp.o 2025-11-03T15:54:22.6903190Z [4354/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Functions.cpp.o 2025-11-03T15:54:22.6959100Z [4355/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_2.cpp.o 2025-11-03T15:54:22.7068380Z [4356/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_0.cpp.o 2025-11-03T15:54:22.7132750Z [4357/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_1.cpp.o 2025-11-03T15:54:22.7624180Z [4358/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterBackendSelect.cpp.o 2025-11-03T15:54:22.8139370Z [4359/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_3.cpp.o 2025-11-03T15:54:22.8190760Z [4360/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_4.cpp.o 2025-11-03T15:54:23.0774600Z [4361/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_0.cpp.o 2025-11-03T15:54:23.1278470Z [4362/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_1.cpp.o 2025-11-03T15:54:23.1786860Z [4363/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutogradNestedTensor_0.cpp.o 2025-11-03T15:54:23.3188050Z [4364/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_2.cpp.o 2025-11-03T15:54:23.3627460Z [4365/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutogradNonFunctional_0.cpp.o 2025-11-03T15:54:23.3690700Z [4366/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_3.cpp.o 2025-11-03T15:54:23.3729260Z [4367/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutograd_0.cpp.o 2025-11-03T15:54:23.3809990Z [4368/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutograd_0.cpp.o 2025-11-03T15:54:23.4481080Z [4369/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_1.cpp.o 2025-11-03T15:54:23.5008990Z [4370/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_0.cpp.o 2025-11-03T15:54:23.6121780Z [4371/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_2.cpp.o 2025-11-03T15:54:23.6907630Z [4372/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_3.cpp.o 2025-11-03T15:54:23.8456690Z [4373/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorHPU_0.cpp.o 2025-11-03T15:54:23.8488790Z [4374/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorMeta_0.cpp.o 2025-11-03T15:54:23.8564000Z [4375/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorCPU_0.cpp.o 2025-11-03T15:54:23.8640220Z [4376/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMkldnnCPU_0.cpp.o 2025-11-03T15:54:23.8924400Z [4377/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMPS_0.cpp.o 2025-11-03T15:54:23.8966580Z [4378/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorXPU_0.cpp.o 2025-11-03T15:54:23.9317740Z [4379/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedCPU_0.cpp.o 2025-11-03T15:54:23.9539390Z [4380/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMeta_0.cpp.o 2025-11-03T15:54:24.2173620Z [4381/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedMeta_0.cpp.o 2025-11-03T15:54:24.2240490Z [4382/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSchema.cpp.o 2025-11-03T15:54:24.2602160Z [4383/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCPU_0.cpp.o 2025-11-03T15:54:24.2792790Z [4384/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrXPU_0.cpp.o 2025-11-03T15:54:24.2984190Z [4385/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrMeta_0.cpp.o 2025-11-03T15:54:24.3219590Z [4386/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrCPU_0.cpp.o 2025-11-03T15:54:24.3382400Z [4387/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrMPS_0.cpp.o 2025-11-03T15:54:24.3385710Z [4388/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMPS_0.cpp.o 2025-11-03T15:54:24.5296650Z [4389/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMeta_0.cpp.o 2025-11-03T15:54:24.5389820Z [4390/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPU_add.cpp.o 2025-11-03T15:54:24.5645150Z [4391/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseXPU_0.cpp.o 2025-11-03T15:54:24.6231680Z [4392/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenOpList.cpp.o 2025-11-03T15:54:24.6898460Z [4393/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterZeroTensor_0.cpp.o 2025-11-03T15:54:24.7058000Z [4394/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ViewMetaClasses.cpp.o 2025-11-03T15:54:24.7320180Z [4395/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TensorMethods.cpp.o 2025-11-03T15:54:24.7450230Z [4396/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/QTensorImpl.cpp.o 2025-11-03T15:54:24.8435960Z [4397/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_model_loader.cpp.o 2025-11-03T15:54:24.8925100Z [4398/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_wrapper.cpp.o 2025-11-03T15:54:25.0355450Z [4399/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPUKernel_add.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.0702990Z [4400/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/spherical_bessel_j0.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.1145880Z [4401/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k0.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.1404080Z [4402/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k1.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.1864140Z [4403/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/Quantizer.cpp.o 2025-11-03T15:54:25.2255820Z [4404/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_bind.cpp.o 2025-11-03T15:54:25.2358530Z [4405/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.3268990Z [4406/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_register.cpp.o 2025-11-03T15:54:25.3577120Z [4407/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int8mm_kernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.4367950Z [4408/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/layer_norm_kernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.4616260Z [4409/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/airy_ai.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.5719000Z [4410/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/group_norm_kernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.5741180Z [4411/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/WeightNormKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.5779030Z [4412/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/batch_norm_kernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.5938400Z [4413/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int4mm_kernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.6994990Z [4414/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.7352650Z [4415/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.7427660Z [4416/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Unfold2d.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.7909500Z [4417/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.9471290Z [4418/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SumKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:25.9623400Z [4419/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SparseFactories.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.0317350Z [4420/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/StackKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.0356280Z [4421/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.0462700Z [4422/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.1242180Z [4423/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.1523260Z [4424/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SortingKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.2073420Z [4425/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.2330910Z [4426/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.2822780Z [4427/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RenormKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.3545220Z [4428/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SampledAddmmKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.3651150Z [4429/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.4856830Z [4430/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PowKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.5182890Z [4431/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.5504830Z [4432/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.6382630Z [4433/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PixelShuffleKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.6485760Z [4434/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.6640670Z [4435/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.6769870Z [4436/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.7318720Z [4437/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PaddingKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.7695110Z [4438/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxUnpoolKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.8477730Z [4439/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPooling.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.8956400Z [4440/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MultinomialKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:26.9620110Z [4441/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.0287290Z [4442/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LerpKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.0373450Z [4443/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPoolKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.1109110Z [4444/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/IndexKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.1228780Z [4445/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/HistogramKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.1537950Z [4446/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedSGDKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.2207740Z [4447/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.2556460Z [4448/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.2908540Z [4449/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdamKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.3120570Z [4450/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdagradKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.4376330Z [4451/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FillKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.4904930Z [4452/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CrossKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.5437020Z [4453/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FlashAttentionKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.5536910Z [4454/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.5540180Z [4455/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DepthwiseConvKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.5744940Z [4456/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistributionKernels.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.7057960Z [4457/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ChannelShuffleKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.7176000Z [4458/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ComplexKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.8046690Z [4459/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BlasKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.8474880Z [4460/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CatKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.9696720Z [4461/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:27.9937690Z [4462/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AvgPoolKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:28.0143400Z [4463/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AmpGradScalerKernels.cpp.DEFAULT.cpp.o 2025-11-03T15:54:28.0287060Z [4464/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:28.0389700Z [4465/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/kleidiai/kai_ukernel_interface.cpp.o 2025-11-03T15:54:28.0515260Z [4466/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:28.1010210Z [4467/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o 2025-11-03T15:54:28.1307000Z [4468/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/kleidiai/kai_kernels.cpp.o 2025-11-03T15:54:28.1658360Z [4469/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CopyKernel.cpp.DEFAULT.cpp.o 2025-11-03T15:54:28.2669110Z [4470/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/vulkan/Context.cpp.o 2025-11-03T15:54:28.3357740Z [4471/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalConvParams.mm.o 2025-11-03T15:54:28.3514290Z [4472/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalGuardImpl.cpp.o 2025-11-03T15:54:28.3546640Z [4473/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/metal/Context.cpp.o 2025-11-03T15:54:28.7411850Z [4474/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalPrepackOpRegister.cpp.o 2025-11-03T15:54:28.8837570Z [4475/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorImplStorage.mm.o 2025-11-03T15:54:28.9106490Z [4476/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalContext.mm.o 2025-11-03T15:54:28.9200330Z [4477/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorUtils.mm.o 2025-11-03T15:54:28.9376350Z [4478/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalCommandBuffer.mm.o 2025-11-03T15:54:29.1551750Z [4479/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNClampOp.mm.o 2025-11-03T15:54:29.2768810Z [4480/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNUtils.mm.o 2025-11-03T15:54:29.3121520Z [4481/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNNeuronOp.mm.o 2025-11-03T15:54:29.3406110Z [4482/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalAten.mm.o 2025-11-03T15:54:29.4633500Z [4483/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNConvOp.mm.o 2025-11-03T15:54:29.4943370Z [4484/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImage+Tensor.mm.o 2025-11-03T15:54:29.7864080Z [4485/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.mm.o 2025-11-03T15:54:29.7917980Z [4486/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageWrapper.mm.o 2025-11-03T15:54:29.8819110Z [4487/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageUtils.mm.o 2025-11-03T15:54:30.0276600Z [4488/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalBinaryElementwise.mm.o 2025-11-03T15:54:30.0678430Z [4489/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalClamp.mm.o 2025-11-03T15:54:30.1201800Z [4490/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalChunk.mm.o 2025-11-03T15:54:30.1886480Z [4491/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConcat.mm.o 2025-11-03T15:54:30.3151580Z [4492/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalAddmm.mm.o 2025-11-03T15:54:30.3974070Z [4493/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalCopy.mm.o 2025-11-03T15:54:30.6052490Z [4494/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardshrink.mm.o 2025-11-03T15:54:30.6152840Z [4495/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardswish.mm.o 2025-11-03T15:54:30.6615950Z [4496/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConvolution.mm.o 2025-11-03T15:54:30.7991430Z [4497/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPadding.mm.o 2025-11-03T15:54:30.8587450Z [4498/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalLeakyReLU.mm.o 2025-11-03T15:54:30.8890140Z [4499/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalNeurons.mm.o 2025-11-03T15:54:30.8993630Z [4500/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPooling.mm.o 2025-11-03T15:54:30.9683880Z [4501/5269] Building C object caffe2/CMakeFiles/torch_cpu.dir/__/third_party/miniz-3.0.2/miniz.c.o 2025-11-03T15:54:31.1633610Z [4502/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/istream_adapter.cc.o 2025-11-03T15:54:31.1752910Z [4503/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/inline_container.cc.o 2025-11-03T15:54:31.1792160Z [4504/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/file_adapter.cc.o 2025-11-03T15:54:31.2008630Z [4505/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/crc.cc.o 2025-11-03T15:54:31.3136080Z [4506/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReshape.mm.o 2025-11-03T15:54:31.3357760Z [4507/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/read_adapter_interface.cc.o 2025-11-03T15:54:31.4587480Z [4508/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalUpsamplingNearest.mm.o 2025-11-03T15:54:31.4598810Z [4509/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/ThreadPool.cc.o 2025-11-03T15:54:31.4755360Z [4510/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/thread_pool_guard.cpp.o 2025-11-03T15:54:31.4962470Z [4511/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReduce.mm.o 2025-11-03T15:54:31.4981230Z [4512/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/string_utils.cc.o 2025-11-03T15:54:31.5577310Z [4513/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/pthreadpool-cpp.cc.o 2025-11-03T15:54:31.5780660Z [4514/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/perfkernels/batch_box_cox_sve128.cc.o 2025-11-03T15:54:31.6092410Z [4515/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalSoftmax.mm.o 2025-11-03T15:54:31.6295440Z [4516/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalTranspose.mm.o 2025-11-03T15:54:31.7326620Z [4517/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/proto_wrap.cc.o 2025-11-03T15:54:31.8172710Z [4518/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/perfkernels/embedding_lookup_idx.cc.o 2025-11-03T15:54:31.9711350Z [4519/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ViewFuncs.cpp.o 2025-11-03T15:54:32.0564290Z [4520/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/core/common.cc.o 2025-11-03T15:54:32.3527680Z [4521/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_2.cpp.o 2025-11-03T15:54:32.3966660Z [4522/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_1.cpp.o 2025-11-03T15:54:32.4112450Z [4523/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/Functions.cpp.o 2025-11-03T15:54:32.4268120Z [4524/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_0.cpp.o 2025-11-03T15:54:32.4304980Z [4525/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_0.cpp.o 2025-11-03T15:54:32.4884820Z [4526/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_4.cpp.o 2025-11-03T15:54:32.5149450Z [4527/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_3.cpp.o 2025-11-03T15:54:32.5323680Z [4528/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_1.cpp.o 2025-11-03T15:54:32.7521180Z [4529/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_2.cpp.o 2025-11-03T15:54:32.7751110Z [4530/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_3.cpp.o 2025-11-03T15:54:32.8483150Z [4531/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_4.cpp.o 2025-11-03T15:54:32.8814560Z [4532/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.cpp.o 2025-11-03T15:54:32.8951990Z [4533/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp.o 2025-11-03T15:54:32.8998040Z [4534/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp.o 2025-11-03T15:54:32.9313500Z [4535/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp.o 2025-11-03T15:54:33.0019950Z [4536/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp.o 2025-11-03T15:54:33.1005190Z [4537/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterLazy.cpp.o 2025-11-03T15:54:33.1786840Z [4538/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/anomaly_mode.cpp.o 2025-11-03T15:54:33.2048550Z [4539/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.cpp.o 2025-11-03T15:54:33.3151580Z [4540/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd.cpp.o 2025-11-03T15:54:33.3484050Z [4541/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_not_implemented_fallback.cpp.o 2025-11-03T15:54:33.3538950Z [4542/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/cpp_hook.cpp.o 2025-11-03T15:54:33.3883240Z [4543/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_meta.cpp.o 2025-11-03T15:54:33.4159860Z [4544/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/LazyNativeFunctions.cpp.o 2025-11-03T15:54:33.4843810Z [4545/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/engine.cpp.o 2025-11-03T15:54:33.4984230Z [4546/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/forward_grad.cpp.o 2025-11-03T15:54:33.7531430Z [4547/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/custom_function.cpp.o 2025-11-03T15:54:33.7835020Z [4548/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/utils.cpp.o 2025-11-03T15:54:33.8437360Z [4549/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_metadata.cpp.o 2025-11-03T15:54:33.9115190Z [4550/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/function.cpp.o 2025-11-03T15:54:34.0185260Z [4551/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_buffer.cpp.o 2025-11-03T15:54:34.0470070Z [4552/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/accumulate_grad.cpp.o 2025-11-03T15:54:34.0503790Z [4553/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/jit_decomp_interface.cpp.o 2025-11-03T15:54:34.0756040Z [4554/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/basic_ops.cpp.o 2025-11-03T15:54:34.1777580Z [4555/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/tensor.cpp.o 2025-11-03T15:54:34.1994060Z [4556/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_kineto.cpp.o 2025-11-03T15:54:34.2211530Z [4557/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/utils/warnings.cpp.o 2025-11-03T15:54:34.2368190Z [4558/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/record_function_ops.cpp.o 2025-11-03T15:54:34.2591740Z [4559/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_legacy.cpp.o 2025-11-03T15:54:34.3273210Z [4560/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/saved_variable.cpp.o 2025-11-03T15:54:34.4894070Z [4561/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/dynamo/compiled_autograd.cpp.o 2025-11-03T15:54:34.5332570Z [4562/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable_info.cpp.o 2025-11-03T15:54:34.5376580Z [4563/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_package/model_package_loader.cpp.o 2025-11-03T15:54:34.6163410Z [4564/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/mkldnn_tensor.cpp.o 2025-11-03T15:54:34.7022980Z [4565/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.cpp.o 2025-11-03T15:54:34.7396570Z [4566/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner.cpp.o 2025-11-03T15:54:34.8076570Z [4567/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/oss_proxy_executor.cpp.o 2025-11-03T15:54:34.8352790Z [4568/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable.cpp.o 2025-11-03T15:54:34.9289450Z [4569/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_cpu.cpp.o 2025-11-03T15:54:34.9612680Z [4570/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/tensor_converter.cpp.o 2025-11-03T15:54:34.9805650Z [4571/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_common.cpp.o 2025-11-03T15:54:35.1617570Z [4572/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module.cpp.o 2025-11-03T15:54:35.1741270Z [4573/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_handler.cpp.o 2025-11-03T15:54:35.1896530Z [4574/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/object.cpp.o 2025-11-03T15:54:35.2480460Z [4575/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/inductor_ops.cpp.o 2025-11-03T15:54:35.2690200Z [4576/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/function_impl.cpp.o 2025-11-03T15:54:35.2743250Z [4577/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_detail.cpp.o 2025-11-03T15:54:35.2766460Z [4578/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_info.cpp.o 2025-11-03T15:54:35.4246490Z [4579/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_interface.cpp.o 2025-11-03T15:54:35.5429950Z [4580/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_resolver.cpp.o 2025-11-03T15:54:35.7534590Z [4581/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/builtin_functions.cpp.o 2025-11-03T15:54:35.8756760Z [4582/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp.o 2025-11-03T15:54:35.8903820Z [4583/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/codegen.cpp.o 2025-11-03T15:54:35.9055240Z [4584/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/compiler.cpp.o 2025-11-03T15:54:35.9370130Z [4585/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/interface.cpp.o 2025-11-03T15:54:35.9528180Z [4586/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/executor.cpp.o 2025-11-03T15:54:35.9581200Z [4587/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/edit_distance.cpp.o 2025-11-03T15:54:35.9845910Z [4588/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/kernel_cache.cpp.o 2025-11-03T15:54:36.0116070Z [4589/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/fallback.cpp.o 2025-11-03T15:54:36.1301220Z [4590/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/convert_to_ssa.cpp.o 2025-11-03T15:54:36.2072710Z [4591/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/name_mangler.cpp.o 2025-11-03T15:54:36.2883270Z [4592/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/parser.cpp.o 2025-11-03T15:54:36.3169410Z [4593/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/exit_transforms.cpp.o 2025-11-03T15:54:36.3436510Z [4594/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/inline_loop_condition.cpp.o 2025-11-03T15:54:36.3889580Z [4595/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/ir_emitter.cpp.o 2025-11-03T15:54:36.3989820Z [4596/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_matching.cpp.o 2025-11-03T15:54:36.4251190Z [4597/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/script_type_parser.cpp.o 2025-11-03T15:54:36.5132220Z [4598/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/sugared_value.cpp.o 2025-11-03T15:54:36.6290290Z [4599/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/tracer.cpp.o 2025-11-03T15:54:36.6393790Z [4600/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/versioned_symbols.cpp.o 2025-11-03T15:54:36.6638270Z [4601/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/alias_analysis.cpp.o 2025-11-03T15:54:36.7486610Z [4602/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/attributes.cpp.o 2025-11-03T15:54:36.8827010Z [4603/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/graph_utils.cpp.o 2025-11-03T15:54:36.9110270Z [4604/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/scope.cpp.o 2025-11-03T15:54:36.9264910Z [4605/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/ir.cpp.o 2025-11-03T15:54:36.9526100Z [4606/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/irparser.cpp.o 2025-11-03T15:54:36.9958140Z [4607/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/node_hashing.cpp.o 2025-11-03T15:54:37.1010760Z [4608/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/type_hashing.cpp.o 2025-11-03T15:54:37.1178470Z [4609/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/subgraph_matcher.cpp.o 2025-11-03T15:54:37.1711840Z [4610/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/constants.cpp.o 2025-11-03T15:54:37.2439650Z [4611/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_log.cpp.o 2025-11-03T15:54:37.3050620Z [4612/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_opt_limit.cpp.o 2025-11-03T15:54:37.3271680Z [4613/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp.o 2025-11-03T15:54:37.3865110Z [4614/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp.o 2025-11-03T15:54:37.4424480Z [4615/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/function.cpp.o 2025-11-03T15:54:37.5612940Z [4616/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import.cpp.o 2025-11-03T15:54:37.6081890Z [4617/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/registry.cpp.o 2025-11-03T15:54:37.6364170Z [4618/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/backend.cpp.o 2025-11-03T15:54:37.6561800Z [4619/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/interpreter.cpp.o 2025-11-03T15:54:37.6815020Z [4620/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/observer.cpp.o 2025-11-03T15:54:37.7765110Z [4621/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/module.cpp.o 2025-11-03T15:54:37.8175920Z [4622/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/flatbuffer_loader.cpp.o 2025-11-03T15:54:37.9100200Z [4623/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/context.cpp.o 2025-11-03T15:54:37.9726050Z [4624/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/aot_compiler.cpp.o 2025-11-03T15:54:37.9829530Z [4625/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_bytecode.cpp.o 2025-11-03T15:54:38.0830240Z [4626/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_operators.cpp.o 2025-11-03T15:54:38.1125340Z [4627/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/prim_ops_registery.cpp.o 2025-11-03T15:54:38.1385610Z [4628/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/promoted_prim_ops.cpp.o 2025-11-03T15:54:38.1664420Z [4629/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/quantization.cpp.o 2025-11-03T15:54:38.1940740Z [4630/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/register_ops_common_utils.cpp.o 2025-11-03T15:54:38.2586960Z [4631/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/utils.cpp.o 2025-11-03T15:54:38.3104160Z [4632/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/type_parser.cpp.o 2025-11-03T15:54:38.3178320Z [4633/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/upgrader_mobile.cpp.o 2025-11-03T15:54:38.3254200Z [4634/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders.cpp.o 2025-11-03T15:54:38.3407510Z [4635/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/version_map.cpp.o 2025-11-03T15:54:38.5148140Z [4636/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp.o 2025-11-03T15:54:38.5932270Z [4637/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/add_if_then_else.cpp.o 2025-11-03T15:54:38.7065920Z [4638/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize.cpp.o 2025-11-03T15:54:38.7149660Z [4639/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/annotate_warns.cpp.o 2025-11-03T15:54:38.7270580Z [4640/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp.o 2025-11-03T15:54:38.7854160Z [4641/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/check_strict_fusion.cpp.o 2025-11-03T15:54:39.0194210Z [4642/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/bailout_graph.cpp.o 2025-11-03T15:54:39.0329320Z [4643/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/batch_mm.cpp.o 2025-11-03T15:54:39.0396820Z [4644/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/common_subexpression_elimination.cpp.o 2025-11-03T15:54:39.0628680Z [4645/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/concat_opt.cpp.o 2025-11-03T15:54:39.1666140Z [4646/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_undefinedness.cpp.o 2025-11-03T15:54:39.1696040Z [4647/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_pooling.cpp.o 2025-11-03T15:54:39.1798240Z [4648/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_propagation.cpp.o 2025-11-03T15:54:39.1990890Z [4649/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_profiling.cpp.o 2025-11-03T15:54:39.3324040Z [4650/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp.o 2025-11-03T15:54:39.3424240Z [4651/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_functional_graphs.cpp.o 2025-11-03T15:54:39.5320200Z [4652/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp.o 2025-11-03T15:54:39.5601710Z [4653/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/device_type_analysis.cpp.o 2025-11-03T15:54:39.5784750Z [4654/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dead_code_elimination.cpp.o 2025-11-03T15:54:39.6000890Z [4655/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dtype_analysis.cpp.o 2025-11-03T15:54:39.6124150Z [4656/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/eliminate_no_ops.cpp.o 2025-11-03T15:54:39.6331940Z [4657/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/erase_number_types.cpp.o 2025-11-03T15:54:39.6643500Z [4658/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/decompose_ops.cpp.o 2025-11-03T15:54:39.6685010Z [4659/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp.o 2025-11-03T15:54:39.8976800Z [4660/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_conv_bn.cpp.o 2025-11-03T15:54:39.9441950Z [4661/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_linear_bn.cpp.o 2025-11-03T15:54:39.9985810Z [4662/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_concat_linear.cpp.o 2025-11-03T15:54:40.0331000Z [4663/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp.o 2025-11-03T15:54:40.0424710Z [4664/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_folding.cpp.o 2025-11-03T15:54:40.1453850Z [4665/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_graph_optimizations.cpp.o 2025-11-03T15:54:40.1768530Z [4666/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_folding.cpp.o 2025-11-03T15:54:40.2342810Z [4667/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_transpose.cpp.o 2025-11-03T15:54:40.3359590Z [4668/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/freeze_module.cpp.o 2025-11-03T15:54:40.4216720Z [4669/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_relu.cpp.o 2025-11-03T15:54:40.5039480Z [4670/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_rewrite_helper.cpp.o 2025-11-03T15:54:40.5836160Z [4671/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp.o 2025-11-03T15:54:40.5873350Z [4672/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_linear.cpp.o 2025-11-03T15:54:40.6122110Z [4673/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/hoist_conv_packed_params.cpp.o 2025-11-03T15:54:40.7241490Z [4674/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp.o 2025-11-03T15:54:40.8136910Z [4675/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_fork_wait.cpp.o 2025-11-03T15:54:40.8396790Z [4676/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_fuser.cpp.o 2025-11-03T15:54:40.8615150Z [4677/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/guard_elimination.cpp.o 2025-11-03T15:54:40.9349600Z [4678/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_forked_closures.cpp.o 2025-11-03T15:54:40.9783060Z [4679/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inplace_check.cpp.o 2025-11-03T15:54:41.0206520Z [4680/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inliner.cpp.o 2025-11-03T15:54:41.1572890Z [4681/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/integer_value_refinement.cpp.o 2025-11-03T15:54:41.2461610Z [4682/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_grad_of.cpp.o 2025-11-03T15:54:41.2793610Z [4683/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lift_closures.cpp.o 2025-11-03T15:54:41.2896280Z [4684/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/loop_unrolling.cpp.o 2025-11-03T15:54:41.2996650Z [4685/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_tuples.cpp.o 2025-11-03T15:54:41.4031830Z [4686/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/insert_guards.cpp.o 2025-11-03T15:54:41.5291130Z [4687/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/liveness.cpp.o 2025-11-03T15:54:41.5976060Z [4688/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/normalize_ops.cpp.o 2025-11-03T15:54:41.6187010Z [4689/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/pass_manager.cpp.o 2025-11-03T15:54:41.7082910Z [4690/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_dict_idioms.cpp.o 2025-11-03T15:54:41.7237790Z [4691/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_alias_sensitive.cpp.o 2025-11-03T15:54:41.7439300Z [4692/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/metal_rewrite.cpp.o 2025-11-03T15:54:41.7458700Z [4693/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole.cpp.o 2025-11-03T15:54:41.7959100Z [4694/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/mkldnn_rewrite.cpp.o 2025-11-03T15:54:41.8334780Z [4695/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_list_idioms.cpp.o 2025-11-03T15:54:42.0113510Z [4696/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_non_tensor.cpp.o 2025-11-03T15:54:42.0614640Z [4697/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/prepack_folding.cpp.o 2025-11-03T15:54:42.1002850Z [4698/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp.o 2025-11-03T15:54:42.1279260Z [4699/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/quantization_type.cpp.o 2025-11-03T15:54:42.1588960Z [4700/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/fusion_passes.cpp.o 2025-11-03T15:54:42.1907920Z [4701/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_observers.cpp.o 2025-11-03T15:54:42.1965180Z [4702/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/helper.cpp.o 2025-11-03T15:54:42.2300930Z [4703/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp.o 2025-11-03T15:54:42.4243580Z [4704/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/finalize.cpp.o 2025-11-03T15:54:42.4859040Z [4705/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/refine_tuple_types.cpp.o 2025-11-03T15:54:42.5334060Z [4706/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_dropout.cpp.o 2025-11-03T15:54:42.5365990Z [4707/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_expands.cpp.o 2025-11-03T15:54:42.6092090Z [4708/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_exceptions.cpp.o 2025-11-03T15:54:42.6518980Z [4709/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_redundant_profiles.cpp.o 2025-11-03T15:54:42.6615160Z [4710/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_mutation.cpp.o 2025-11-03T15:54:42.7605450Z [4711/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/replacement_of_old_operators.cpp.o 2025-11-03T15:54:42.7987120Z [4712/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/register_packed_params.cpp.o 2025-11-03T15:54:42.9409650Z [4713/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/restore_mutation.cpp.o 2025-11-03T15:54:42.9647200Z [4714/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/requires_grad_analysis.cpp.o 2025-11-03T15:54:42.9706910Z [4715/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/shape_analysis.cpp.o 2025-11-03T15:54:42.9772270Z [4716/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/subgraph_rewrite.cpp.o 2025-11-03T15:54:43.0961700Z [4717/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_analysis.cpp.o 2025-11-03T15:54:43.1359770Z [4718/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_cache.cpp.o 2025-11-03T15:54:43.2903710Z [4719/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/specialize_autogradzero.cpp.o 2025-11-03T15:54:43.3206260Z [4720/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp.o 2025-11-03T15:54:43.3947400Z [4721/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp.o 2025-11-03T15:54:43.4050320Z [4722/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/memory_dag.cpp.o 2025-11-03T15:54:43.4270720Z [4723/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/op_registry.cpp.o 2025-11-03T15:54:43.4364830Z [4724/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/subgraph_utils.cpp.o 2025-11-03T15:54:43.5243450Z [4725/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/optimization_utils.cpp.o 2025-11-03T15:54:43.5343980Z [4726/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/utf8_decoding_ignore.cpp.o 2025-11-03T15:54:43.5906590Z [4727/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/tensorexpr_fuser.cpp.o 2025-11-03T15:54:43.6790050Z [4728/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/update_graph_executor_opt.cpp.o 2025-11-03T15:54:43.7008900Z [4729/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/value_refinement_utils.cpp.o 2025-11-03T15:54:43.7031130Z [4730/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/variadic_ops.cpp.o 2025-11-03T15:54:43.8602350Z [4731/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/argument_spec.cpp.o 2025-11-03T15:54:43.9461910Z [4732/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/instruction.cpp.o 2025-11-03T15:54:43.9687900Z [4733/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry.cpp.o 2025-11-03T15:54:43.9750880Z [4734/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/autodiff.cpp.o 2025-11-03T15:54:43.9903260Z [4735/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry_util.cpp.o 2025-11-03T15:54:44.1679470Z [4736/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/vulkan_rewrite.cpp.o 2025-11-03T15:54:44.1776230Z [4737/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_exception.cpp.o 2025-11-03T15:54:44.2613680Z [4738/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/xnnpack_rewrite.cpp.o 2025-11-03T15:54:44.2713940Z [4739/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/logging.cpp.o 2025-11-03T15:54:44.3001250Z [4740/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp.o 2025-11-03T15:54:44.4183060Z [4741/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/graph_executor.cpp.o 2025-11-03T15:54:44.4944140Z [4742/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/print_handler.cpp.o 2025-11-03T15:54:44.5718380Z [4743/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/frame.cpp.o 2025-11-03T15:54:44.6247810Z [4744/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter.cpp.o 2025-11-03T15:54:44.8356810Z [4745/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/operator.cpp.o 2025-11-03T15:54:44.8562600Z [4746/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_trace.cpp.o 2025-11-03T15:54:44.8587470Z [4747/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/script_profile.cpp.o 2025-11-03T15:54:44.9669260Z [4748/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp.o 2025-11-03T15:54:44.9864730Z [4749/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp.o 2025-11-03T15:54:45.0046390Z [4750/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_record.cpp.o 2025-11-03T15:54:45.0058780Z [4751/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/slice_indices_adjust.cpp.o 2025-11-03T15:54:45.1499890Z [4752/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_ops_utils.cpp.o 2025-11-03T15:54:45.2845000Z [4753/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp.o 2025-11-03T15:54:45.2923540Z [4754/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/fusion.cpp.o 2025-11-03T15:54:45.3047830Z [4755/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/memory_planner.cpp.o 2025-11-03T15:54:45.3279930Z [4756/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/impl.cpp.o 2025-11-03T15:54:45.6241190Z [4757/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/passes.cpp.o 2025-11-03T15:54:45.6296510Z [4758/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_script.cpp.o 2025-11-03T15:54:45.7318760Z [4759/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/generated_ops.cpp.o 2025-11-03T15:54:45.7483160Z [4760/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp.o 2025-11-03T15:54:45.7741040Z [4761/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/te_wrapper.cpp.o 2025-11-03T15:54:45.8979700Z [4762/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/native_ops.cpp.o 2025-11-03T15:54:45.9513770Z [4763/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/ops.cpp.o 2025-11-03T15:54:45.9687350Z [4764/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/vararg_functions.cpp.o 2025-11-03T15:54:46.0274690Z [4765/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry.cpp.o 2025-11-03T15:54:46.0491490Z [4766/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_export_helpers.cpp.o 2025-11-03T15:54:46.1044110Z [4767/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp.o 2025-11-03T15:54:46.2365970Z [4768/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_read.cpp.o 2025-11-03T15:54:46.2545800Z [4769/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_source.cpp.o 2025-11-03T15:54:46.2645740Z [4770/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickle.cpp.o 2025-11-03T15:54:46.4267020Z [4771/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/python_print.cpp.o 2025-11-03T15:54:46.4571520Z [4772/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/source_range_serialization.cpp.o 2025-11-03T15:54:46.4798080Z [4773/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import.cpp.o 2025-11-03T15:54:46.5625640Z [4774/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/type_name_uniquer.cpp.o 2025-11-03T15:54:46.7244050Z [4775/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler.cpp.o 2025-11-03T15:54:46.7459090Z [4776/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler_helper.cpp.o 2025-11-03T15:54:46.8286440Z [4777/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/unpickler.cpp.o 2025-11-03T15:54:47.0190650Z [4778/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/block_codegen.cpp.o 2025-11-03T15:54:47.0806000Z [4779/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_inference.cpp.o 2025-11-03T15:54:47.1193510Z [4780/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_overlap.cpp.o 2025-11-03T15:54:47.2622960Z [4781/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/codegen.cpp.o 2025-11-03T15:54:47.2736780Z [4782/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/cpp_codegen.cpp.o 2025-11-03T15:54:47.2849070Z [4783/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_registry.cpp.o 2025-11-03T15:54:47.3178340Z [4784/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/eval.cpp.o 2025-11-03T15:54:47.4025170Z [4785/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/expr.cpp.o 2025-11-03T15:54:47.4165650Z [4786/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp.o 2025-11-03T15:54:47.5035220Z [4787/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions.cpp.o 2025-11-03T15:54:47.6109810Z [4788/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_core.cpp.o 2025-11-03T15:54:47.6489650Z [4789/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp.o 2025-11-03T15:54:47.8183510Z [4790/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir.cpp.o 2025-11-03T15:54:47.8958320Z [4791/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/hash_provider.cpp.o 2025-11-03T15:54:47.9424940Z [4792/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/graph_opt.cpp.o 2025-11-03T15:54:47.9641080Z [4793/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o 2025-11-03T15:54:48.0158210Z [4794/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_jit.cpp.o 2025-11-03T15:54:48.0330460Z [4795/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_cloner.cpp.o 2025-11-03T15:54:48.0991960Z [4796/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_mutator.cpp.o 2025-11-03T15:54:48.1604520Z [4797/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_printer.cpp.o 2025-11-03T15:54:48.2954680Z [4798/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_simplifier.cpp.o 2025-11-03T15:54:48.3156210Z [4799/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_verifier.cpp.o 2025-11-03T15:54:48.5592840Z [4800/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_visitor.cpp.o 2025-11-03T15:54:48.6991590Z [4801/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest.cpp.o 2025-11-03T15:54:48.7198860Z [4802/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp.o 2025-11-03T15:54:48.7299090Z [4803/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/kernel.cpp.o 2025-11-03T15:54:48.8102850Z [4804/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp.o 2025-11-03T15:54:48.8780520Z [4805/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/lowerings.cpp.o 2025-11-03T15:54:48.9205080Z [4806/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/conv2d.cpp.o 2025-11-03T15:54:48.9615230Z [4807/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/matmul.cpp.o 2025-11-03T15:54:49.2400990Z [4808/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/reduction.cpp.o 2025-11-03T15:54:49.2705790Z [4809/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/misc.cpp.o 2025-11-03T15:54:49.3375010Z [4810/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/norm.cpp.o 2025-11-03T15:54:49.3841590Z [4811/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/softmax.cpp.o 2025-11-03T15:54:49.4076520Z [4812/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/pointwise.cpp.o 2025-11-03T15:54:49.4515860Z [4813/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/reduction.cpp.o 2025-11-03T15:54:49.4966690Z [4814/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/quantization.cpp.o 2025-11-03T15:54:49.5286070Z [4815/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/types.cpp.o 2025-11-03T15:54:49.5928680Z [4816/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/tensor.cpp.o 2025-11-03T15:54:49.7275620Z [4817/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/unique_name_manager.cpp.o 2025-11-03T15:54:49.7378410Z [4818/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/registerizer.cpp.o 2025-11-03T15:54:49.7480920Z [4819/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/config.cpp.o 2025-11-03T15:54:49.7704360Z [4820/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/file_check.cpp.o 2025-11-03T15:54:49.8376520Z [4821/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_device.cpp.o 2025-11-03T15:54:49.8478410Z [4822/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_interface.cpp.o 2025-11-03T15:54:49.8560410Z [4823/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/hooks_for_testing.cpp.o 2025-11-03T15:54:49.8930010Z [4824/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/lowering_context.cpp.o 2025-11-03T15:54:50.0435590Z [4825/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/hash.cpp.o 2025-11-03T15:54:50.1761900Z [4826/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/helpers.cpp.o 2025-11-03T15:54:50.1908780Z [4827/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/debug_util.cpp.o 2025-11-03T15:54:50.1944860Z [4828/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir.cpp.o 2025-11-03T15:54:50.2165770Z [4829/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_dump_util.cpp.o 2025-11-03T15:54:50.2313890Z [4830/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_metadata.cpp.o 2025-11-03T15:54:50.2933500Z [4831/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/multi_wait.cpp.o 2025-11-03T15:54:50.3379640Z [4832/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/lazy_graph_executor.cpp.o 2025-11-03T15:54:50.3447650Z [4833/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/metrics.cpp.o 2025-11-03T15:54:50.3612040Z [4834/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_util.cpp.o 2025-11-03T15:54:50.5524340Z [4835/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp.o 2025-11-03T15:54:50.5624770Z [4836/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/permutation_util.cpp.o 2025-11-03T15:54:50.7102060Z [4837/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/utils.cpp.o 2025-11-03T15:54:50.7126530Z [4838/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor.cpp.o 2025-11-03T15:54:50.7276180Z [4839/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/thread_pool.cpp.o 2025-11-03T15:54:50.7350610Z [4840/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_impl.cpp.o 2025-11-03T15:54:50.7357560Z [4841/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_util.cpp.o 2025-11-03T15:54:50.7374560Z [4842/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape.cpp.o 2025-11-03T15:54:50.9023100Z [4843/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/events.cpp.o 2025-11-03T15:54:50.9227350Z [4844/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/counters.cpp.o 2025-11-03T15:54:50.9261380Z [4845/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/trie.cpp.o 2025-11-03T15:54:51.0472150Z [4846/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape_inference.cpp.o 2025-11-03T15:54:51.1605750Z [4847/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/combined_traceback.cpp.o 2025-11-03T15:54:51.1938370Z [4848/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/collection.cpp.o 2025-11-03T15:54:51.2045000Z [4849/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/mtia/profiler/MTIAMemoryProfiler.cpp.o 2025-11-03T15:54:51.2407590Z [4850/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_client_interface.cpp.o 2025-11-03T15:54:51.3086600Z [4851/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/data_flow.cpp.o 2025-11-03T15:54:51.3215560Z [4852/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_shim.cpp.o 2025-11-03T15:54:51.3246710Z [4853/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/observer.cpp.o 2025-11-03T15:54:51.3445670Z [4854/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/python_tracer.cpp.o 2025-11-03T15:54:51.3637340Z [4855/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/perf.cpp.o 2025-11-03T15:54:51.4834330Z [4856/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/vulkan.cpp.o 2025-11-03T15:54:51.5135430Z [4857/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind_fb.cpp.o 2025-11-03T15:54:51.6167010Z [4858/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/execution_trace_observer.cpp.o 2025-11-03T15:54:51.6267730Z [4859/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/itt_observer.cpp.o 2025-11-03T15:54:51.6336290Z [4860/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/privateuse1_observer.cpp.o 2025-11-03T15:54:51.6345400Z [4861/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind.cpp.o 2025-11-03T15:54:51.6363120Z [4862/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/stubs/base.cpp.o 2025-11-03T15:54:51.6392750Z [4863/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/nvtx_observer.cpp.o 2025-11-03T15:54:51.8493640Z [4864/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/util.cpp.o 2025-11-03T15:54:51.8595760Z [4865/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/cpp_stacktraces.cpp.o 2025-11-03T15:54:51.9399840Z [4866/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/shim_common.cpp.o 2025-11-03T15:54:52.0362790Z [4867/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/variadic.cpp.o 2025-11-03T15:54:52.0568090Z [4868/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/schema_info.cpp.o 2025-11-03T15:54:52.1022120Z [4869/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_graph.cpp.o 2025-11-03T15:54:52.1897260Z [4870/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_inplace_ops.cpp.o 2025-11-03T15:54:52.2747990Z [4871/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/check_alias_annotation.cpp.o 2025-11-03T15:54:52.3181310Z [4872/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_c10_ops.cpp.o 2025-11-03T15:54:52.3828480Z [4873/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/tensor_flatten.cpp.o 2025-11-03T15:54:52.4821500Z [4874/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/cuda/interface.cpp.o 2025-11-03T15:54:52.5628810Z [4875/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/autocast.cpp.o 2025-11-03T15:54:52.7201530Z [4876/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphSignature.cpp.o 2025-11-03T15:54:52.7494450Z [4877/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/Graph.cpp.o 2025-11-03T15:54:52.7517840Z [4878/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/ModelRunner.cpp.o 2025-11-03T15:54:52.7791440Z [4879/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphPasses.cpp.o 2025-11-03T15:54:52.8028780Z [4880/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp.o 2025-11-03T15:54:52.8183730Z [4881/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops.cpp.o 2025-11-03T15:54:52.9070770Z [4882/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_special_ops.cpp.o 2025-11-03T15:54:52.9343270Z [4883/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/Serialization.cpp.o 2025-11-03T15:54:52.9835680Z [4884/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/TensorMeta.cpp.o 2025-11-03T15:54:53.0892540Z [4885/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphUtils.cpp.o 2025-11-03T15:54:53.1222450Z [4886/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Placement.cpp.o 2025-11-03T15:54:53.1978050Z [4887/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/DelegateExecutor.cpp.o 2025-11-03T15:54:53.2518580Z [4888/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ExecutionPlanner.cpp.o 2025-11-03T15:54:53.3017910Z [4889/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/PlacementUtils.cpp.o 2025-11-03T15:54:53.3535840Z [4890/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ExecutionFrame.cpp.o 2025-11-03T15:54:53.3819930Z [4891/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ConstantFolder.cpp.o 2025-11-03T15:54:53.3988950Z [4892/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/GraphExecutorBase.cpp.o 2025-11-03T15:54:53.4108700Z [4893/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Executor.cpp.o 2025-11-03T15:54:53.4402630Z [4894/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/OpKernel.cpp.o 2025-11-03T15:54:53.5588850Z [4895/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/SerialGraphExecutor.cpp.o 2025-11-03T15:54:53.5928530Z [4896/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/common/FileUtil.cpp.o 2025-11-03T15:54:53.6705740Z [4897/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Weights.cpp.o 2025-11-03T15:54:53.6970930Z [4898/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/FunctionSchema.cpp.o 2025-11-03T15:54:53.7086370Z [4899/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/Bump.cpp.o 2025-11-03T15:54:53.7473550Z [4900/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/detail/ITree.cpp.o 2025-11-03T15:54:53.7694910Z [4901/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/GreedyBySize.cpp.o 2025-11-03T15:54:53.8617570Z [4902/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/AutoFunctionalizeKernel.cpp.o 2025-11-03T15:54:53.8880020Z [4903/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/HigherOrderKernel.cpp.o 2025-11-03T15:54:53.8978210Z [4904/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/C10Kernel.cpp.o 2025-11-03T15:54:54.0915350Z [4905/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/DisjointStorageGroups.cpp.o 2025-11-03T15:54:54.1177720Z [4906/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ParallelGraphExecutor.cpp.o 2025-11-03T15:54:54.1239340Z [4907/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/CallTorchBindKernel.cpp.o 2025-11-03T15:54:54.1963980Z [4908/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/AliasAnalyzer.cpp.o 2025-11-03T15:54:54.1994350Z [4909/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/LayoutPlanner.cpp.o 2025-11-03T15:54:54.3046060Z [4910/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/LayoutManager.cpp.o 2025-11-03T15:54:54.5738700Z [4911/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelFactory.cpp.o 2025-11-03T15:54:54.6016230Z [4912/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/PrimKernelRegistry.cpp.o 2025-11-03T15:54:54.6124990Z [4913/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/passes/SubgraphRewriter.cpp.o 2025-11-03T15:54:54.7066900Z [4914/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/passes/pass_manager/GraphPasses.cpp.o 2025-11-03T15:54:54.7754630Z [4915/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/NativeKernels.cpp.o 2025-11-03T15:54:54.9123810Z [4916/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/triton/CpuTritonKernelManager.cpp.o 2025-11-03T15:54:54.9224800Z [4917/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/passes/pass_manager/PassManager.cpp.o 2025-11-03T15:54:55.0236000Z [4918/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/TritonKernel.cpp.o 2025-11-03T15:54:55.0514190Z [4919/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp.o 2025-11-03T15:54:55.0762910Z [4920/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp.o 2025-11-03T15:54:55.0781690Z [4921/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/AOTInductorDelegateExecutor.cpp.o 2025-11-03T15:54:55.1740400Z [4922/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/ETCallDelegateKernel.cpp.o 2025-11-03T15:54:55.2065850Z [4923/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/config.cpp.o 2025-11-03T15:54:55.2999540Z [4924/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelRegistry.cpp.o 2025-11-03T15:54:55.3102380Z [4925/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/debug_info.cpp.o 2025-11-03T15:54:55.3612890Z [4926/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelHandlerRegistry.cpp.o 2025-11-03T15:54:55.4003260Z [4927/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/dynamic_ir.cpp.o 2025-11-03T15:54:55.5157870Z [4928/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/device_data.cpp.o 2025-11-03T15:54:55.5576850Z [4929/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp.o 2025-11-03T15:54:55.5750130Z [4930/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/generic.cpp.o 2025-11-03T15:54:55.6261810Z [4931/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp.o 2025-11-03T15:54:55.7819580Z [4932/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp.o 2025-11-03T15:54:55.8530950Z [4933/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp.o 2025-11-03T15:54:55.9037130Z [4934/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp.o 2025-11-03T15:54:55.9303530Z [4935/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node.cpp.o 2025-11-03T15:54:56.0443590Z [4936/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/export_data.cpp.o 2025-11-03T15:54:56.0945570Z [4937/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_native_functions.cpp.o 2025-11-03T15:54:56.1144020Z [4938/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp.o 2025-11-03T15:54:56.3316490Z [4939/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/out_types.cpp.o 2025-11-03T15:54:56.3504000Z [4940/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import_data.cpp.o 2025-11-03T15:54:56.3870780Z [4941/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/optim/sgd.cpp.o 2025-11-03T15:54:56.5232300Z [4942/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/random.cpp.o 2025-11-03T15:54:56.5548120Z [4943/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/sequential.cpp.o 2025-11-03T15:54:56.5599270Z [4944/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/TraceTypeManual.cpp.o 2025-11-03T15:54:56.6653660Z [4945/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/flatbuffer_serializer.cpp.o 2025-11-03T15:54:56.6954170Z [4946/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/FunctionsManual.cpp.o 2025-11-03T15:54:56.7096170Z [4947/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/jit.cpp.o 2025-11-03T15:54:56.7724680Z [4948/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport.cpp.o 2025-11-03T15:54:56.9671360Z [4949/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/onnx.cpp.o 2025-11-03T15:54:56.9800250Z [4950/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport_manager.cpp.o 2025-11-03T15:54:57.0164180Z [4951/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_bytecode.cpp.o 2025-11-03T15:54:57.0781060Z [4952/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/VariableTypeManual.cpp.o 2025-11-03T15:54:57.1946170Z [4953/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/byte_order.cpp.o 2025-11-03T15:54:57.1994120Z [4954/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module_save.cpp.o 2025-11-03T15:54:57.2328950Z [4955/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/cuda.cpp.o 2025-11-03T15:54:57.3049360Z [4956/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_module.cpp.o 2025-11-03T15:54:57.3452810Z [4957/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export.cpp.o 2025-11-03T15:54:57.3641060Z [4958/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp.o 2025-11-03T15:54:57.5324340Z [4959/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/enum.cpp.o 2025-11-03T15:54:57.6448100Z [4960/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/imethod.cpp.o 2025-11-03T15:54:57.7485810Z [4961/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/datasets/mnist.cpp.o 2025-11-03T15:54:57.7629270Z [4962/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/distributed.cpp.o 2025-11-03T15:54:57.7997970Z [4963/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/mps.cpp.o 2025-11-03T15:54:57.8402810Z [4964/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/random.cpp.o 2025-11-03T15:54:57.8849730Z [4965/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/sequential.cpp.o 2025-11-03T15:54:57.9812660Z [4966/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/stream.cpp.o 2025-11-03T15:54:58.2185190Z [4967/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize.cpp.o 2025-11-03T15:54:58.3646460Z [4968/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/init.cpp.o 2025-11-03T15:54:58.4192850Z [4969/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/module.cpp.o 2025-11-03T15:54:58.4421090Z [4970/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/_functions.cpp.o 2025-11-03T15:54:58.4714050Z [4971/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/adaptive.cpp.o 2025-11-03T15:54:58.5138230Z [4972/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/activation.cpp.o 2025-11-03T15:54:58.5586110Z [4973/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/batchnorm.cpp.o 2025-11-03T15:54:58.7405440Z [4974/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/normalization.cpp.o 2025-11-03T15:54:58.9675120Z [4975/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/instancenorm.cpp.o 2025-11-03T15:54:59.0994960Z [4976/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/dropout.cpp.o 2025-11-03T15:54:59.1143510Z [4977/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/distance.cpp.o 2025-11-03T15:54:59.1356360Z [4978/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/conv.cpp.o 2025-11-03T15:54:59.1390380Z [4979/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/embedding.cpp.o 2025-11-03T15:54:59.1921310Z [4980/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/fold.cpp.o 2025-11-03T15:54:59.2058910Z [4981/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/linear.cpp.o 2025-11-03T15:54:59.4073550Z [4982/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/loss.cpp.o 2025-11-03T15:54:59.6540950Z [4983/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/padding.cpp.o 2025-11-03T15:54:59.7331380Z [4984/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pooling.cpp.o 2025-11-03T15:54:59.7460730Z [4985/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pixelshuffle.cpp.o 2025-11-03T15:54:59.8598000Z [4986/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/rnn.cpp.o 2025-11-03T15:54:59.8897060Z [4987/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/container/functional.cpp.o 2025-11-03T15:54:59.9111280Z [4988/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/transformer.cpp.o 2025-11-03T15:54:59.9375500Z [4989/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/upsampling.cpp.o 2025-11-03T15:55:00.0256470Z [4990/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/activation.cpp.o 2025-11-03T15:55:00.3290380Z [4991/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/embedding.cpp.o 2025-11-03T15:55:00.3499130Z [4992/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/adaptive.cpp.o 2025-11-03T15:55:00.3692420Z [4993/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/batchnorm.cpp.o 2025-11-03T15:55:00.4977370Z [4994/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/instancenorm.cpp.o 2025-11-03T15:55:00.6278520Z [4995/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/normalization.cpp.o 2025-11-03T15:55:00.6425850Z [4996/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/conv.cpp.o 2025-11-03T15:55:00.7608340Z [4997/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/linear.cpp.o 2025-11-03T15:55:00.7789220Z [4998/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/dropout.cpp.o 2025-11-03T15:55:01.0018610Z [4999/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/pooling.cpp.o 2025-11-03T15:55:01.0229450Z [5000/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/padding.cpp.o 2025-11-03T15:55:01.0760830Z [5001/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/vision.cpp.o 2025-11-03T15:55:01.1393490Z [5002/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/rnn.cpp.o 2025-11-03T15:55:01.2882800Z [5003/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adagrad.cpp.o 2025-11-03T15:55:01.3113360Z [5004/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/transformer.cpp.o 2025-11-03T15:55:01.4994470Z [5005/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adam.cpp.o 2025-11-03T15:55:01.5286090Z [5006/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adamw.cpp.o 2025-11-03T15:55:01.5742720Z [5007/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp.o 2025-11-03T15:55:01.6508170Z [5008/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/optimizer.cpp.o 2025-11-03T15:55:01.6980440Z [5009/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/rmsprop.cpp.o 2025-11-03T15:55:01.7162090Z [5010/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/lbfgs.cpp.o 2025-11-03T15:55:01.7249780Z [5011/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/reduce_on_plateau_scheduler.cpp.o 2025-11-03T15:55:01.7476700Z [5012/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/step_lr.cpp.o 2025-11-03T15:55:01.9045620Z [5013/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/serialize.cpp.o 2025-11-03T15:55:01.9122560Z [5014/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/sgd.cpp.o 2025-11-03T15:55:01.9166260Z [5015/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/xpu.cpp.o 2025-11-03T15:55:02.2935470Z [5016/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/output-archive.cpp.o 2025-11-03T15:55:02.3046170Z [5017/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/input-archive.cpp.o 2025-11-03T15:55:02.3147520Z [5018/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGeneratorImpl.mm.o 2025-11-03T15:55:02.4138700Z [5019/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSEvent.mm.o 2025-11-03T15:55:02.4339670Z [5020/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSDevice.mm.o 2025-11-03T15:55:02.4378480Z [5021/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/EmptyTensor.cpp.o 2025-11-03T15:55:02.5283110Z [5022/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSAllocator.mm.o 2025-11-03T15:55:02.6728290Z [5023/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSFallback.mm.o 2025-11-03T15:55:02.7874840Z [5024/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Equal.cpp.o 2025-11-03T15:55:02.9333420Z [5025/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGuardImpl.mm.o 2025-11-03T15:55:02.9975190Z [5026/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/TensorFactory.cpp.o 2025-11-03T15:55:03.0081460Z [5027/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSHooks.mm.o 2025-11-03T15:55:03.0541340Z [5028/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSStream.mm.o 2025-11-03T15:55:03.0941700Z [5029/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSProfiler.mm.o 2025-11-03T15:55:03.2813340Z [5030/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/OperationUtils.mm.o 2025-11-03T15:55:03.4218650Z [5031/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Activation.mm.o 2025-11-03T15:55:03.5379370Z [5032/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/AdaptivePooling.mm.o 2025-11-03T15:55:03.5598810Z [5033/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ActivationKernel.mm.o 2025-11-03T15:55:03.6282050Z [5034/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Amp.mm.o 2025-11-03T15:55:03.6794770Z [5035/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Attention.mm.o 2025-11-03T15:55:03.7351370Z [5036/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryKernel.mm.o 2025-11-03T15:55:03.7971480Z [5037/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryOps.mm.o 2025-11-03T15:55:03.9702240Z [5038/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BitwiseOps.mm.o 2025-11-03T15:55:04.0918270Z [5039/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Blas.mm.o 2025-11-03T15:55:04.2382450Z [5040/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Bucketization.mm.o 2025-11-03T15:55:04.3111130Z [5041/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Col2Im.mm.o 2025-11-03T15:55:04.3384470Z [5042/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ConstantOps.mm.o 2025-11-03T15:55:04.3723080Z [5043/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Convolution.mm.o 2025-11-03T15:55:04.4285430Z [5044/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/CrossKernel.mm.o 2025-11-03T15:55:04.4812250Z [5045/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Copy.mm.o 2025-11-03T15:55:04.6999090Z [5046/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernel.mm.o 2025-11-03T15:55:04.7182400Z [5047/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Distributions.mm.o 2025-11-03T15:55:04.7964130Z [5048/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Dropout.mm.o 2025-11-03T15:55:04.9340900Z [5049/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/EmbeddingBag.mm.o 2025-11-03T15:55:04.9562260Z [5050/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernel.mm.o 2025-11-03T15:55:04.9999740Z [5051/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Eye.mm.o 2025-11-03T15:55:05.0179950Z [5052/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FastFourierTransform.mm.o 2025-11-03T15:55:05.0636710Z [5053/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernelImpl.mm.o 2025-11-03T15:55:05.1525740Z [5054/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.mm.o 2025-11-03T15:55:05.3834710Z [5055/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.mm.o 2025-11-03T15:55:05.4642710Z [5056/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernelImpl.mm.o 2025-11-03T15:55:05.6463640Z [5057/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedSgdKernel.mm.o 2025-11-03T15:55:05.6760710Z [5058/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Gamma.mm.o 2025-11-03T15:55:05.7710210Z [5059/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Im2Col.mm.o 2025-11-03T15:55:05.8190460Z [5060/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Indexing.mm.o 2025-11-03T15:55:05.8293410Z [5061/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/HistogramKernel.mm.o 2025-11-03T15:55:05.8437050Z [5062/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/GridSampler.mm.o 2025-11-03T15:55:06.0854290Z [5063/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Lerp.mm.o 2025-11-03T15:55:06.1305720Z [5064/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Linear.mm.o 2025-11-03T15:55:06.3817840Z [5065/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LinearAlgebra.mm.o 2025-11-03T15:55:06.3913750Z [5066/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LossOps.mm.o 2025-11-03T15:55:06.4427430Z [5067/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Normalization.mm.o 2025-11-03T15:55:06.4878450Z [5068/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PixelShuffle.mm.o 2025-11-03T15:55:06.5441710Z [5069/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pad.mm.o 2025-11-03T15:55:06.6053230Z [5070/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PointwiseOps.mm.o 2025-11-03T15:55:06.7442560Z [5071/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Quantized.mm.o 2025-11-03T15:55:06.8654000Z [5072/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pooling.mm.o 2025-11-03T15:55:07.0159220Z [5073/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RMSNorm.mm.o 2025-11-03T15:55:07.1044400Z [5074/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RangeFactories.mm.o 2025-11-03T15:55:07.1368650Z [5075/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RenormKernel.mm.o 2025-11-03T15:55:07.1745990Z [5076/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ReduceOps.mm.o 2025-11-03T15:55:07.2274240Z [5077/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Repeat.mm.o 2025-11-03T15:55:07.2923980Z [5078/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RnnOps.mm.o 2025-11-03T15:55:07.3946270Z [5079/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Scalar.mm.o 2025-11-03T15:55:07.5186240Z [5080/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ScanKernel.mm.o 2025-11-03T15:55:07.7347680Z [5081/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ScatterGather.mm.o 2025-11-03T15:55:07.7866730Z [5082/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Shape.mm.o 2025-11-03T15:55:07.8249090Z [5083/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SoftMax.mm.o 2025-11-03T15:55:07.8797520Z [5084/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Sort.mm.o 2025-11-03T15:55:07.9453260Z [5085/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SummaryOps.mm.o 2025-11-03T15:55:08.0026570Z [5086/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SpecialOps.mm.o 2025-11-03T15:55:08.1653550Z [5087/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TensorCompare.mm.o 2025-11-03T15:55:08.2672000Z [5088/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TriangularOps.mm.o 2025-11-03T15:55:08.4482170Z [5089/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryKernel.mm.o 2025-11-03T15:55:08.4825250Z [5090/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryOps.mm.o 2025-11-03T15:55:08.5161830Z [5091/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnfoldBackward.mm.o 2025-11-03T15:55:08.5431830Z [5092/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Unique.mm.o 2025-11-03T15:55:08.5498560Z [5093/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UpSample.mm.o 2025-11-03T15:55:08.6737830Z [5094/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/View.mm.o 2025-11-03T15:55:08.6892710Z [5095/5269] Building CXX object caffe2/CMakeFiles/torch.dir/__/empty.cpp.o 2025-11-03T15:55:08.8299930Z [5096/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/WeightNorm.mm.o 2025-11-03T15:55:08.8628340Z [5097/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_mps.cpp.o 2025-11-03T15:55:08.8944640Z [5098/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/mps/FlattenIndices.mm.o 2025-11-03T15:55:08.9693900Z [5099/5269] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner_mps.cpp.o 2025-11-03T15:55:09.1582230Z [5100/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/mps/SparseMPSTensor.mm.o 2025-11-03T15:55:09.1741110Z [5101/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/mps/SparseMPSTensorMath.mm.o 2025-11-03T15:55:09.2187140Z [5102/5269] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_mps.mm.o 2025-11-03T15:55:09.5434630Z [5103/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_1.cpp.o 2025-11-03T15:55:09.6175390Z [5104/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_0.cpp.o 2025-11-03T15:55:09.7497040Z [5105/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_2.cpp.o 2025-11-03T15:55:09.7755580Z [5106/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_variable_methods.cpp.o 2025-11-03T15:55:09.8286420Z [5107/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_3.cpp.o 2025-11-03T15:55:09.8468970Z [5108/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_4.cpp.o 2025-11-03T15:55:09.8839950Z [5109/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_0.cpp.o 2025-11-03T15:55:09.9472020Z [5110/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_1.cpp.o 2025-11-03T15:55:10.1180820Z [5111/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_2.cpp.o 2025-11-03T15:55:10.2807590Z [5112/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_fft_functions.cpp.o 2025-11-03T15:55:10.3316350Z [5113/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nn_functions.cpp.o 2025-11-03T15:55:10.3447680Z [5114/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_return_types.cpp.o 2025-11-03T15:55:10.3547130Z [5115/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_enum_tag.cpp.o 2025-11-03T15:55:10.3978940Z [5116/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_linalg_functions.cpp.o 2025-11-03T15:55:10.4011030Z [5117/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nested_functions.cpp.o 2025-11-03T15:55:10.4036460Z [5118/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_special_functions.cpp.o 2025-11-03T15:55:10.4314470Z [5119/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_sparse_functions.cpp.o 2025-11-03T15:55:10.5345980Z [5120/5269] Linking CXX shared library lib/libtorch_cpu.dylib 2025-11-03T15:55:10.5446540Z ld: warning: ignoring duplicate libraries: 'lib/libcpuinfo.a', 'lib/libnnpack.a', 'lib/libpthreadpool.a' 2025-11-03T15:55:10.7054720Z [5121/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/functionalization/generated/ViewMetaClassesPythonBinding.cpp.o 2025-11-03T15:55:10.7322580Z [5122/5269] Linking CXX shared library lib/libtorch.dylib 2025-11-03T15:55:10.8130920Z [5123/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DeviceAccelerator.cpp.o 2025-11-03T15:55:10.8418990Z [5124/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DataLoader.cpp.o 2025-11-03T15:55:10.8618230Z [5125/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Device.cpp.o 2025-11-03T15:55:10.8863410Z [5126/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Dtype.cpp.o 2025-11-03T15:55:10.9342860Z [5127/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Layout.cpp.o 2025-11-03T15:55:11.1601770Z [5128/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/MemoryFormat.cpp.o 2025-11-03T15:55:11.1882360Z [5129/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DynamicTypes.cpp.o 2025-11-03T15:55:11.1897630Z [5130/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/QScheme.cpp.o 2025-11-03T15:55:11.2092340Z [5131/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Generator.cpp.o 2025-11-03T15:55:11.3040570Z [5132/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Exceptions.cpp.o 2025-11-03T15:55:11.3230170Z [5133/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/PyInterpreterHooks.cpp.o 2025-11-03T15:55:11.4817230Z [5134/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/python_dimname.cpp.o 2025-11-03T15:55:11.5664500Z [5135/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Size.cpp.o 2025-11-03T15:55:11.7214980Z [5136/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/PyInterpreter.cpp.o 2025-11-03T15:55:11.7954970Z [5137/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Module.cpp.o 2025-11-03T15:55:11.9284520Z [5138/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageMethods.cpp.o 2025-11-03T15:55:12.0165830Z [5139/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Storage.cpp.o 2025-11-03T15:55:12.0366320Z [5140/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageSharing.cpp.o 2025-11-03T15:55:12.0837750Z [5141/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Stream.cpp.o 2025-11-03T15:55:12.2715230Z [5142/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Event.cpp.o 2025-11-03T15:55:12.3205280Z [5143/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/TypeInfo.cpp.o 2025-11-03T15:55:12.3538120Z [5144/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/api/src/python/init.cpp.o 2025-11-03T15:55:12.4045190Z [5145/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/profiler_python.cpp.o 2025-11-03T15:55:12.5073750Z [5146/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/acc/Module.cpp.o 2025-11-03T15:55:12.5098750Z [5147/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_anomaly_mode.cpp.o 2025-11-03T15:55:12.5553950Z [5148/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/functions/init.cpp.o 2025-11-03T15:55:12.7106550Z [5149/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/init.cpp.o 2025-11-03T15:55:12.7209310Z [5150/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_cpp_function.cpp.o 2025-11-03T15:55:12.9971250Z [5151/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_saved_variable_hooks.cpp.o 2025-11-03T15:55:13.0770970Z [5152/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_engine.cpp.o 2025-11-03T15:55:13.2114800Z [5153/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_hook.cpp.o 2025-11-03T15:55:13.2329230Z [5154/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_function.cpp.o 2025-11-03T15:55:13.2703670Z [5155/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_legacy_variable.cpp.o 2025-11-03T15:55:13.2954790Z [5156/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/distributed/python_placement.cpp.o 2025-11-03T15:55:13.3278210Z [5157/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_torch_functions_manual.cpp.o 2025-11-03T15:55:13.4540410Z [5158/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_nested_functions_manual.cpp.o 2025-11-03T15:55:13.4548110Z [5159/5269] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpython_defs.c.o 2025-11-03T15:55:13.4552410Z [5160/5269] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame.c.o 2025-11-03T15:55:13.4934220Z [5161/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cache_entry.cpp.o 2025-11-03T15:55:13.5352400Z [5162/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable.cpp.o 2025-11-03T15:55:13.5782640Z [5163/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpp_shim.cpp.o 2025-11-03T15:55:13.7079170Z [5164/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable_indexing.cpp.o 2025-11-03T15:55:13.7886340Z [5165/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame_cpp.cpp.o 2025-11-03T15:55:13.8376490Z [5166/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/extra_state.cpp.o 2025-11-03T15:55:13.9143310Z [5167/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/python_compiled_autograd.cpp.o 2025-11-03T15:55:13.9260280Z [5168/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/framelocals_mapping.cpp.o 2025-11-03T15:55:14.0051770Z [5169/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/fx/node.cpp.o 2025-11-03T15:55:14.0242800Z [5170/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/utils.cpp.o 2025-11-03T15:55:14.0427220Z [5171/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/init.cpp.o 2025-11-03T15:55:14.2156230Z [5172/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/upgrader.cpp.o 2025-11-03T15:55:14.2302320Z [5173/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/example_upgraders.cpp.o 2025-11-03T15:55:14.3615020Z [5174/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/pybind.cpp.o 2025-11-03T15:55:14.4747030Z [5175/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_package/pybind.cpp.o 2025-11-03T15:55:14.5112370Z [5176/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/guards.cpp.o 2025-11-03T15:55:14.5117300Z [5177/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/static_cuda_launcher.cpp.o 2025-11-03T15:55:14.5520700Z [5178/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mps/Module.cpp.o 2025-11-03T15:55:14.5634510Z [5179/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_runner/pybind.cpp.o 2025-11-03T15:55:14.5960460Z [5180/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/functorch/init.cpp.o 2025-11-03T15:55:14.6299200Z [5181/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mtia/Module.cpp.o 2025-11-03T15:55:14.7876750Z [5182/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/resize_storage_bytes.cpp.o 2025-11-03T15:55:14.8951960Z [5183/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_holder.cpp.o 2025-11-03T15:55:15.0097190Z [5184/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp.o 2025-11-03T15:55:15.0747480Z [5185/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_meta_info.cpp.o 2025-11-03T15:55:15.0906590Z [5186/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/deduplicate_initializers.cpp.o 2025-11-03T15:55:15.2480970Z [5187/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx.cpp.o 2025-11-03T15:55:15.2911970Z [5188/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/backends/backend_init.cpp.o 2025-11-03T15:55:15.3638700Z [5189/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_map.cpp.o 2025-11-03T15:55:15.3875650Z [5190/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eliminate_unused_items.cpp.o 2025-11-03T15:55:15.5009910Z [5191/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eval_peephole.cpp.o 2025-11-03T15:55:15.5176630Z [5192/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_fold.cpp.o 2025-11-03T15:55:15.6069950Z [5193/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/list_model_parameters.cpp.o 2025-11-03T15:55:15.6673050Z [5194/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/init.cpp.o 2025-11-03T15:55:15.6773460Z [5195/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_substitution.cpp.o 2025-11-03T15:55:15.7394730Z [5196/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/helper.cpp.o 2025-11-03T15:55:15.7507750Z [5197/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/peephole.cpp.o 2025-11-03T15:55:15.8459540Z [5198/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/preprocess_for_onnx.cpp.o 2025-11-03T15:55:15.8663810Z [5199/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp.o 2025-11-03T15:55:15.8716240Z [5200/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp.o 2025-11-03T15:55:16.0058150Z [5201/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/onnx_log.cpp.o 2025-11-03T15:55:16.0160730Z [5202/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/scalar_type_analysis.cpp.o 2025-11-03T15:55:16.1560910Z [5203/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_extraction.cpp.o 2025-11-03T15:55:16.1795680Z [5204/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp.o 2025-11-03T15:55:16.2136180Z [5205/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/naming.cpp.o 2025-11-03T15:55:16.2836880Z [5206/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/unpack_quantized_weights.cpp.o 2025-11-03T15:55:16.3303880Z [5207/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/common.cpp.o 2025-11-03T15:55:16.4037500Z [5208/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp.o 2025-11-03T15:55:16.4509290Z [5209/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/pybind_utils.cpp.o 2025-11-03T15:55:16.5938170Z [5210/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp.o 2025-11-03T15:55:16.6041080Z [5211/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp.o 2025-11-03T15:55:16.6915100Z [5212/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/shape_type_inference.cpp.o 2025-11-03T15:55:16.7209430Z [5213/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_custom_class.cpp.o 2025-11-03T15:55:16.7673440Z [5214/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_dict.cpp.o 2025-11-03T15:55:16.9766800Z [5215/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/tree_views.cpp.o 2025-11-03T15:55:17.0117110Z [5216/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_list.cpp.o 2025-11-03T15:55:17.0865520Z [5217/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_arg_flatten.cpp.o 2025-11-03T15:55:17.1258160Z [5218/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/concrete_module_type.cpp.o 2025-11-03T15:55:17.1545690Z [5219/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_interpreter.cpp.o 2025-11-03T15:55:17.1776450Z [5220/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_ir.cpp.o 2025-11-03T15:55:17.2918410Z [5221/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tracer.cpp.o 2025-11-03T15:55:17.3928590Z [5222/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tree_views.cpp.o 2025-11-03T15:55:17.4786970Z [5223/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_sugared_value.cpp.o 2025-11-03T15:55:17.5000040Z [5224/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/runtime/static/init.cpp.o 2025-11-03T15:55:17.5214920Z [5225/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/script_init.cpp.o 2025-11-03T15:55:17.5414260Z [5226/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/multiprocessing/init.cpp.o 2025-11-03T15:55:17.5450000Z [5227/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/monitor/python_init.cpp.o 2025-11-03T15:55:17.8480850Z [5228/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/combined_traceback.cpp.o 2025-11-03T15:55:17.9342860Z [5229/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/init.cpp.o 2025-11-03T15:55:17.9545150Z [5230/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/tensorexpr/tensorexpr_init.cpp.o 2025-11-03T15:55:18.0116360Z [5231/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/onnx/init.cpp.o 2025-11-03T15:55:18.1820370Z [5232/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/device_lazy_init.cpp.o 2025-11-03T15:55:18.2362310Z [5233/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/serialization.cpp.o 2025-11-03T15:55:18.2551600Z [5234/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/tensor/python_tensor.cpp.o 2025-11-03T15:55:18.2868150Z [5235/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/init.cpp.o 2025-11-03T15:55:18.3321810Z [5236/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/throughput_benchmark.cpp.o 2025-11-03T15:55:18.3567370Z [5237/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/invalid_arguments.cpp.o 2025-11-03T15:55:18.3669430Z [5238/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/object_ptr.cpp.o 2025-11-03T15:55:18.5551000Z [5239/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils.cpp.o 2025-11-03T15:55:18.5755770Z [5240/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pyobject_preservation.cpp.o 2025-11-03T15:55:18.7403000Z [5241/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pybind.cpp.o 2025-11-03T15:55:18.7777820Z [5242/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_symnode.cpp.o 2025-11-03T15:55:18.8085170Z [5243/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/structseq.cpp.o 2025-11-03T15:55:18.8437390Z [5244/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/nested.cpp.o 2025-11-03T15:55:18.9502570Z [5245/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_dtypes.cpp.o 2025-11-03T15:55:19.0097450Z [5246/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_arg_parser.cpp.o 2025-11-03T15:55:19.0819720Z [5247/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_layouts.cpp.o 2025-11-03T15:55:19.1271680Z [5248/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_dispatch.cpp.o 2025-11-03T15:55:19.1401550Z [5249/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_memoryformats.cpp.o 2025-11-03T15:55:19.1746060Z [5250/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_apply.cpp.o 2025-11-03T15:55:19.2034890Z [5251/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_qschemes.cpp.o 2025-11-03T15:55:19.4455010Z [5252/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_types.cpp.o 2025-11-03T15:55:19.4766850Z [5253/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/disable_torch_function.cpp.o 2025-11-03T15:55:19.5097250Z [5254/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/verbose.cpp.o 2025-11-03T15:55:19.5772350Z [5255/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_list.cpp.o 2025-11-03T15:55:19.5825150Z [5256/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/functionalization/Module.cpp.o 2025-11-03T15:55:19.5845310Z [5257/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/cpu/Module.cpp.o 2025-11-03T15:55:19.6476160Z [5258/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_new.cpp.o 2025-11-03T15:55:19.7021890Z [5259/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_numpy.cpp.o 2025-11-03T15:55:19.7861210Z [5260/5269] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/shm.dir/core.cpp.o 2025-11-03T15:55:19.8091170Z [5261/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/instruction_counter/Module.cpp.o 2025-11-03T15:55:19.8097030Z [5262/5269] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/torch_shm_manager.dir/manager.cpp.o 2025-11-03T15:55:19.8920800Z [5263/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/python_util.cpp.o 2025-11-03T15:55:19.9021750Z [5264/5269] Linking CXX shared library lib/libshm.dylib 2025-11-03T15:55:19.9095220Z [5265/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/nativert/python/Bindings.cpp.o 2025-11-03T15:55:19.9487920Z [5266/5269] Linking CXX executable bin/torch_shm_manager 2025-11-03T15:55:20.0560750Z [5267/5269] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/init.cpp.o 2025-11-03T15:55:20.2655720Z [5268/5269] Linking CXX shared library lib/libtorch_python.dylib 2025-11-03T15:55:20.2656040Z [5268/5269] Install the project... 2025-11-03T15:55:20.2718230Z -- Install configuration: "Release" 2025-11-03T15:55:25.6848020Z Could not find an up-to-date installation of `packaging`. License expressions might not be validated. To enforce validation, please install `packaging>=24.2`. 2025-11-03T15:55:25.6875680Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated 2025-11-03T15:55:25.6876310Z !! 2025-11-03T15:55:25.6876380Z 2025-11-03T15:55:25.6876460Z ******************************************************************************** 2025-11-03T15:55:25.6877750Z Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). 2025-11-03T15:55:25.6878210Z 2025-11-03T15:55:25.6878360Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-11-03T15:55:25.6878670Z or your builds will no longer be supported. 2025-11-03T15:55:25.6878820Z 2025-11-03T15:55:25.6879050Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-11-03T15:55:25.6879410Z ******************************************************************************** 2025-11-03T15:55:25.6879560Z 2025-11-03T15:55:25.6879600Z !! 2025-11-03T15:55:25.6879720Z corresp(dist, value, root_dir) 2025-11-03T15:55:25.7850720Z running bdist_wheel 2025-11-03T15:55:30.3659480Z running build 2025-11-03T15:55:30.3659700Z running build_py 2025-11-03T15:55:30.3700990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3702240Z copying torch/_storage_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3710950Z copying torch/_meta_registrations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3713840Z copying torch/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3714910Z copying torch/library.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3738540Z copying torch/_jit_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3789140Z copying torch/_thread_safe_fork.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3789930Z copying torch/_custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3797420Z copying torch/return_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3803700Z copying torch/_size_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3809670Z copying torch/_torch_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3813200Z copying torch/_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3833670Z copying torch/_utils_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3834790Z copying torch/quasirandom.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3841580Z copying torch/torch_version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3847900Z copying torch/_VF.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3860290Z copying torch/_streambase.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3867140Z copying torch/_tensor_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3869460Z copying torch/_weights_only_unpickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3883000Z copying torch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3915310Z copying torch/overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3916880Z copying torch/_namedtensor_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3924890Z copying torch/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3937200Z copying torch/_linalg_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3944650Z copying torch/__config__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3952340Z copying torch/_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3981680Z copying torch/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.3994270Z copying torch/hub.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4014020Z copying torch/_tensor_str.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4030820Z copying torch/_sources.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4037350Z copying torch/_vmap_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4044220Z copying torch/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4069080Z copying torch/_lowrank.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4076390Z copying torch/_appdirs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4077520Z copying torch/_environment.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4084540Z copying torch/storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4104300Z copying torch/_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4111520Z copying torch/_lobpcg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4125290Z copying torch/__future__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4132360Z copying torch/_guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4133600Z copying torch/_python_dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4141290Z copying torch/_classes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4148040Z copying torch/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4181280Z copying torch/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:30.4197260Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4198670Z copying torchgen/native_function_generation.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4200970Z copying torchgen/gen_vmap_plumbing.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4202100Z copying torchgen/gen.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4204560Z copying torchgen/local.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4205540Z copying torchgen/gen_functionalization_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4207180Z copying torchgen/code_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4208460Z copying torchgen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4209710Z copying torchgen/yaml_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4211080Z copying torchgen/gen_aoti_c_shim.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4212620Z copying torchgen/model.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4215140Z copying torchgen/gen_schema_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4222450Z copying torchgen/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4223660Z copying torchgen/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4225110Z copying torchgen/gen_backend_stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4226570Z copying torchgen/gen_lazy_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-11-03T15:55:30.4248400Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch 2025-11-03T15:55:30.4248870Z copying functorch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch 2025-11-03T15:55:30.4264450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4265160Z copying torch/_higher_order_ops/flat_apply.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4272940Z copying torch/_higher_order_ops/foreach_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4280110Z copying torch/_higher_order_ops/effects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4287880Z copying torch/_higher_order_ops/_invoke_quant.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4295180Z copying torch/_higher_order_ops/invoke_subgraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4316950Z copying torch/_higher_order_ops/aoti_call_delegate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4324480Z copying torch/_higher_order_ops/partitioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4332700Z copying torch/_higher_order_ops/while_loop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4353570Z copying torch/_higher_order_ops/base_hop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4361270Z copying torch/_higher_order_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4368100Z copying torch/_higher_order_ops/strict_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4374880Z copying torch/_higher_order_ops/torchbind.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4388260Z copying torch/_higher_order_ops/cond.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4389510Z copying torch/_higher_order_ops/map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4397980Z copying torch/_higher_order_ops/local_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4413000Z copying torch/_higher_order_ops/hints_wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4421160Z copying torch/_higher_order_ops/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4436410Z copying torch/_higher_order_ops/out_dtype.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4449840Z copying torch/_higher_order_ops/executorch_call_delegate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4456690Z copying torch/_higher_order_ops/scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4471440Z copying torch/_higher_order_ops/run_const_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4479270Z copying torch/_higher_order_ops/associative_scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4500150Z copying torch/_higher_order_ops/auto_functionalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4515330Z copying torch/_higher_order_ops/triton_kernel_wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4545910Z copying torch/_higher_order_ops/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4560580Z copying torch/_higher_order_ops/wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4568990Z copying torch/_higher_order_ops/schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-11-03T15:55:30.4577490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-11-03T15:55:30.4577980Z copying torch/_prims/debug_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-11-03T15:55:30.4585500Z copying torch/_prims/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-11-03T15:55:30.4613980Z copying torch/_prims/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-11-03T15:55:30.4621410Z copying torch/_prims/rng_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-11-03T15:55:30.4629760Z copying torch/_prims/executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-11-03T15:55:30.4638040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-11-03T15:55:30.4638540Z copying torch/_logging/_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-11-03T15:55:30.4659700Z copying torch/_logging/scribe.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-11-03T15:55:30.4668380Z copying torch/_logging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-11-03T15:55:30.4677000Z copying torch/_logging/_registrations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-11-03T15:55:30.4684500Z copying torch/_logging/structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-11-03T15:55:30.4694110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4694530Z copying torch/_functorch/partitioners.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4726740Z copying torch/_functorch/compile_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4734420Z copying torch/_functorch/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4742840Z copying torch/_functorch/autograd_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4762450Z copying torch/_functorch/python_key.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4774900Z copying torch/_functorch/pytree_hacks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4782240Z copying torch/_functorch/pyfunctorch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4790630Z copying torch/_functorch/deprecated.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4798730Z copying torch/_functorch/top_operators_github_usage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4812240Z copying torch/_functorch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4819740Z copying torch/_functorch/batch_norm_replacement.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4826240Z copying torch/_functorch/fx_minifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4840030Z copying torch/_functorch/predispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4849850Z copying torch/_functorch/apis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4865220Z copying torch/_functorch/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4871960Z copying torch/_functorch/aot_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4873550Z copying torch/_functorch/compilers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4881410Z copying torch/_functorch/eager_transforms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4902470Z copying torch/_functorch/vmap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4916500Z copying torch/_functorch/benchmark_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4923750Z copying torch/_functorch/make_functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4937600Z copying torch/_functorch/functional_call.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-11-03T15:55:30.4947350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.4947870Z copying torch/_numpy/_reductions_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.4955790Z copying torch/_numpy/_getlimits.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.4962830Z copying torch/_numpy/_unary_ufuncs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.4969670Z copying torch/_numpy/_casting_dicts.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.4984220Z copying torch/_numpy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.4992010Z copying torch/_numpy/_binary_ufuncs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.4999450Z copying torch/_numpy/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.5006940Z copying torch/_numpy/_dtypes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.5014640Z copying torch/_numpy/linalg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.5021810Z copying torch/_numpy/_ndarray.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.5036120Z copying torch/_numpy/_ufuncs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.5043740Z copying torch/_numpy/_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.5051210Z copying torch/_numpy/_normalizations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.5058480Z copying torch/_numpy/_dtypes_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.5065620Z copying torch/_numpy/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.5072980Z copying torch/_numpy/_funcs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.5095440Z copying torch/_numpy/_funcs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-11-03T15:55:30.5104120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-11-03T15:55:30.5104550Z copying torch/_export/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-11-03T15:55:30.5118240Z copying torch/_export/error.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-11-03T15:55:30.5125800Z copying torch/_export/tools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-11-03T15:55:30.5133740Z copying torch/_export/converter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-11-03T15:55:30.5155560Z copying torch/_export/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-11-03T15:55:30.5169510Z copying torch/_export/pass_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-11-03T15:55:30.5190570Z copying torch/_export/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-11-03T15:55:30.5217740Z copying torch/_export/wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-11-03T15:55:30.5227760Z copying torch/_export/non_strict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-11-03T15:55:30.5241480Z copying torch/_export/verifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-11-03T15:55:30.5254550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/monitor 2025-11-03T15:55:30.5255030Z copying torch/monitor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/monitor 2025-11-03T15:55:30.5262560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-11-03T15:55:30.5263050Z copying torch/_dispatch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-11-03T15:55:30.5264150Z copying torch/_dispatch/python.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-11-03T15:55:30.5272490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-11-03T15:55:30.5272990Z copying torch/_subclasses/functional_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-11-03T15:55:30.5274550Z copying torch/_subclasses/meta_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-11-03T15:55:30.5308920Z copying torch/_subclasses/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-11-03T15:55:30.5317550Z copying torch/_subclasses/_fake_tensor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-11-03T15:55:30.5325190Z copying torch/_subclasses/fake_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-11-03T15:55:30.5326390Z copying torch/_subclasses/fake_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-11-03T15:55:30.5328730Z copying torch/_subclasses/schema_check_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-11-03T15:55:30.5335980Z copying torch/_subclasses/fake_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-11-03T15:55:30.5343860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/futures 2025-11-03T15:55:30.5344270Z copying torch/futures/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/futures 2025-11-03T15:55:30.5352990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/linalg 2025-11-03T15:55:30.5353530Z copying torch/linalg/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/linalg 2025-11-03T15:55:30.5384120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-11-03T15:55:30.5384560Z copying torch/_custom_op/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-11-03T15:55:30.5385650Z copying torch/_custom_op/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-11-03T15:55:30.5394150Z copying torch/_custom_op/impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-11-03T15:55:30.5408980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-11-03T15:55:30.5409400Z copying torch/nn/common_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-11-03T15:55:30.5416550Z copying torch/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-11-03T15:55:30.5423330Z copying torch/nn/_reduction.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-11-03T15:55:30.5430300Z copying torch/nn/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-11-03T15:55:30.5437020Z copying torch/nn/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-11-03T15:55:30.5440050Z copying torch/nn/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-11-03T15:55:30.5460720Z copying torch/nn/grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-11-03T15:55:30.5468210Z copying torch/nn/parameter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-11-03T15:55:30.5482370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-11-03T15:55:30.5482860Z copying torch/mps/event.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-11-03T15:55:30.5490280Z copying torch/mps/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-11-03T15:55:30.5497750Z copying torch/mps/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-11-03T15:55:30.5507230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5507590Z copying torch/onnx/_constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5514580Z copying torch/onnx/symbolic_opset15.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5522230Z copying torch/onnx/symbolic_opset7.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5528640Z copying torch/onnx/symbolic_opset11.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5535430Z copying torch/onnx/verification.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5542030Z copying torch/onnx/_flags.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5555560Z copying torch/onnx/symbolic_opset10.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5562080Z copying torch/onnx/symbolic_opset20.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5569040Z copying torch/onnx/symbolic_opset14.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5576040Z copying torch/onnx/symbolic_helper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5582850Z copying torch/onnx/symbolic_opset9.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5590140Z copying torch/onnx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5591130Z copying torch/onnx/symbolic_opset8.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5598510Z copying torch/onnx/symbolic_opset19.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5605370Z copying torch/onnx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5618750Z copying torch/onnx/symbolic_opset18.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5626360Z copying torch/onnx/errors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5633710Z copying torch/onnx/symbolic_opset13.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5640930Z copying torch/onnx/operators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5647750Z copying torch/onnx/testing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5654950Z copying torch/onnx/symbolic_opset17.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5662140Z copying torch/onnx/symbolic_opset16.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5669470Z copying torch/onnx/symbolic_opset12.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-11-03T15:55:30.5677640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor 2025-11-03T15:55:30.5678050Z copying torch/_vendor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor 2025-11-03T15:55:30.5679580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cpu 2025-11-03T15:55:30.5680240Z copying torch/cpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu 2025-11-03T15:55:30.5697190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5697680Z copying torch/distributed/_composable_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5705580Z copying torch/distributed/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5712480Z copying torch/distributed/rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5727100Z copying torch/distributed/run.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5744090Z copying torch/distributed/_state_dict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5767960Z copying torch/distributed/_serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5775320Z copying torch/distributed/distributed_c10d.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5777890Z copying torch/distributed/argparse_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5787910Z copying torch/distributed/_checkpointable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5797170Z copying torch/distributed/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5803970Z copying torch/distributed/_mesh_layout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5810880Z copying torch/distributed/c10d_logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5824290Z copying torch/distributed/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5825340Z copying torch/distributed/_dist2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5833250Z copying torch/distributed/collective_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5845340Z copying torch/distributed/_functional_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5846540Z copying torch/distributed/launch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5855070Z copying torch/distributed/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5870200Z copying torch/distributed/remote_device.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5878590Z copying torch/distributed/device_mesh.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5904910Z copying torch/distributed/_functional_collectives_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-11-03T15:55:30.5914080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-11-03T15:55:30.5914610Z copying torch/autograd/anomaly_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-11-03T15:55:30.5921840Z copying torch/autograd/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-11-03T15:55:30.5923050Z copying torch/autograd/forward_ad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-11-03T15:55:30.5930550Z copying torch/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-11-03T15:55:30.5957310Z copying torch/autograd/variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-11-03T15:55:30.5964680Z copying torch/autograd/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-11-03T15:55:30.5986520Z copying torch/autograd/grad_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-11-03T15:55:30.5994400Z copying torch/autograd/profiler_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-11-03T15:55:30.6009040Z copying torch/autograd/profiler_legacy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-11-03T15:55:30.6017080Z copying torch/autograd/gradcheck.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-11-03T15:55:30.6046290Z copying torch/autograd/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-11-03T15:55:30.6066690Z copying torch/autograd/function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-11-03T15:55:30.6082820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6083240Z copying torch/fx/_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6097180Z copying torch/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6111160Z copying torch/fx/operator_schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6131710Z copying torch/fx/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6139100Z copying torch/fx/proxy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6153880Z copying torch/fx/_lazy_graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6162590Z copying torch/fx/traceback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6171030Z copying torch/fx/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6202780Z copying torch/fx/tensor_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6210160Z copying torch/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6217730Z copying torch/fx/immutable_collections.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6224480Z copying torch/fx/annotate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6231250Z copying torch/fx/subgraph_rewriter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6239020Z copying torch/fx/interpreter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6252180Z copying torch/fx/_symbolic_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6272570Z copying torch/fx/node.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6273820Z copying torch/fx/_compatibility.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6281330Z copying torch/fx/_graph_pickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6301290Z copying torch/fx/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-11-03T15:55:30.6309490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-11-03T15:55:30.6310000Z copying torch/_prims_common/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-11-03T15:55:30.6332750Z copying torch/_prims_common/wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-11-03T15:55:30.6348400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-11-03T15:55:30.6348850Z copying torch/multiprocessing/queue.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-11-03T15:55:30.6358330Z copying torch/multiprocessing/_atfork.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-11-03T15:55:30.6365600Z copying torch/multiprocessing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-11-03T15:55:30.6373030Z copying torch/multiprocessing/spawn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-11-03T15:55:30.6379810Z copying torch/multiprocessing/reductions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-11-03T15:55:30.6396160Z copying torch/multiprocessing/pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-11-03T15:55:30.6405570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6406030Z copying torch/cuda/_pin_memory_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6413410Z copying torch/cuda/gds.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6420230Z copying torch/cuda/streams.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6428400Z copying torch/cuda/comm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6435270Z copying torch/cuda/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6449160Z copying torch/cuda/jiterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6456930Z copying torch/cuda/nccl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6463740Z copying torch/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6485560Z copying torch/cuda/_gpu_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6493650Z copying torch/cuda/green_contexts.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6500630Z copying torch/cuda/_sanitizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6514640Z copying torch/cuda/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6521920Z copying torch/cuda/_memory_viz.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6536030Z copying torch/cuda/tunable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6551060Z copying torch/cuda/_device_limits.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6558100Z copying torch/cuda/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6565070Z copying torch/cuda/nvtx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6572400Z copying torch/cuda/graphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6586580Z copying torch/cuda/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6593720Z copying torch/cuda/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-11-03T15:55:30.6608030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends 2025-11-03T15:55:30.6608460Z copying torch/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends 2025-11-03T15:55:30.6616700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-11-03T15:55:30.6617210Z copying torch/_decomp/decompositions_for_jvp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-11-03T15:55:30.6631390Z copying torch/_decomp/decompositions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-11-03T15:55:30.6633890Z copying torch/_decomp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-11-03T15:55:30.6635050Z copying torch/_decomp/decompositions_for_rng.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-11-03T15:55:30.6662390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-11-03T15:55:30.6662780Z copying torch/xpu/streams.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-11-03T15:55:30.6679920Z copying torch/xpu/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-11-03T15:55:30.6685990Z copying torch/xpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-11-03T15:55:30.6687160Z copying torch/xpu/_gpu_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-11-03T15:55:30.6693950Z copying torch/xpu/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-11-03T15:55:30.6700510Z copying torch/xpu/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-11-03T15:55:30.6707550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-11-03T15:55:30.6708030Z copying torch/masked/_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-11-03T15:55:30.6734140Z copying torch/masked/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-11-03T15:55:30.6741000Z copying torch/masked/_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-11-03T15:55:30.6770470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6770950Z copying torch/optim/lr_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6773130Z copying torch/optim/rmsprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6774300Z copying torch/optim/_adafactor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6775730Z copying torch/optim/_muon.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6781930Z copying torch/optim/sparse_adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6788160Z copying torch/optim/rprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6789530Z copying torch/optim/sgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6790800Z copying torch/optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6797180Z copying torch/optim/adamax.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6798200Z copying torch/optim/adagrad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6799540Z copying torch/optim/adamw.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6805240Z copying torch/optim/swa_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6806180Z copying torch/optim/lbfgs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6807580Z copying torch/optim/radam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6808930Z copying torch/optim/adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6810440Z copying torch/optim/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6811900Z copying torch/optim/nadam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6813310Z copying torch/optim/asgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6814670Z copying torch/optim/_functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6820800Z copying torch/optim/adadelta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-11-03T15:55:30.6829550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.6829960Z copying torch/_inductor/dtype_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.6843010Z copying torch/_inductor/cudagraph_trees.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.6844580Z copying torch/_inductor/select_algorithm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.6880440Z copying torch/_inductor/ops_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.6898490Z copying torch/_inductor/metrics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.6913520Z copying torch/_inductor/codecache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.6954930Z copying torch/_inductor/mock_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.6962700Z copying torch/_inductor/optimize_indexing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.6969300Z copying torch/_inductor/freezing_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.6976170Z copying torch/_inductor/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.6987740Z copying torch/_inductor/cpp_builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7030800Z copying torch/_inductor/cpu_vec_isa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7048380Z copying torch/_inductor/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7078640Z copying torch/_inductor/compile_fx_ext.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7090450Z copying torch/_inductor/comms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7109420Z copying torch/_inductor/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7122780Z copying torch/_inductor/mkldnn_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7142300Z copying torch/_inductor/async_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7155510Z copying torch/_inductor/config_comms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7162800Z copying torch/_inductor/pattern_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7164150Z copying torch/_inductor/quantized_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7176950Z copying torch/_inductor/triton_bundler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7189380Z copying torch/_inductor/aoti_eager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7197020Z copying torch/_inductor/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7238870Z copying torch/_inductor/lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7241440Z copying torch/_inductor/jagged_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7250020Z copying torch/_inductor/test_operators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7257780Z copying torch/_inductor/cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7269610Z copying torch/_inductor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7276340Z copying torch/_inductor/compile_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7304700Z copying torch/_inductor/cudagraph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7318250Z copying torch/_inductor/sizevars.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7337440Z copying torch/_inductor/ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7384920Z copying torch/_inductor/analyze_preserves_zero_mask.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7393090Z copying torch/_inductor/compile_fx_async.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7400070Z copying torch/_inductor/index_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7407590Z copying torch/_inductor/constant_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7414430Z copying torch/_inductor/inductor_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7421270Z copying torch/_inductor/virtualized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7422180Z copying torch/_inductor/test_case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7429270Z copying torch/_inductor/autotune_process.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7442630Z copying torch/_inductor/standalone_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7456240Z copying torch/_inductor/await_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7463320Z copying torch/_inductor/exc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7470160Z copying torch/_inductor/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7498610Z copying torch/_inductor/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7513250Z copying torch/_inductor/kernel_inputs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7527120Z copying torch/_inductor/__autotune_main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7534240Z copying torch/_inductor/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7555300Z copying torch/_inductor/comm_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7563000Z copying torch/_inductor/decomposition.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7577010Z copying torch/_inductor/fx_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7584340Z copying torch/_inductor/shape_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7591690Z copying torch/_inductor/compile_fx_subproc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7599140Z copying torch/_inductor/scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7601690Z copying torch/_inductor/comms_debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7608370Z copying torch/_inductor/remote_gemm_autotune_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7614990Z copying torch/_inductor/mkldnn_ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7628730Z copying torch/_inductor/wrapper_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7636060Z copying torch/_inductor/choices.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7650490Z copying torch/_inductor/remote_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7658140Z copying torch/_inductor/augmented_graph_helper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7665230Z copying torch/_inductor/comm_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7666220Z copying torch/_inductor/compiler_bisector.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7681220Z copying torch/_inductor/extern_node_serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7688060Z copying torch/_inductor/bounds.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7695530Z copying torch/_inductor/kernel_template_choice.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7702620Z copying torch/_inductor/output_code.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7703770Z copying torch/_inductor/custom_graph_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7711540Z copying torch/_inductor/freezing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7719740Z copying torch/_inductor/dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7735250Z copying torch/_inductor/tiling_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7750720Z copying torch/_inductor/loop_body.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7763490Z copying torch/_inductor/subgraph_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:30.7775750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7776210Z copying torch/utils/_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7778010Z copying torch/utils/_appending_byte_serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7785500Z copying torch/utils/_foreach_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7799690Z copying torch/utils/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7800760Z copying torch/utils/_traceback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7814180Z copying torch/utils/_cpp_extension_versioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7821420Z copying torch/utils/_mode_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7828210Z copying torch/utils/checkpoint.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7829570Z copying torch/utils/show_pickle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7836870Z copying torch/utils/deterministic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7844720Z copying torch/utils/file_baton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7858350Z copying torch/utils/backend_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7873060Z copying torch/utils/module_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7880410Z copying torch/utils/model_zoo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7888040Z copying torch/utils/_zip.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7895480Z copying torch/utils/collect_env.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7909890Z copying torch/utils/throughput_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7917470Z copying torch/utils/dlpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7924550Z copying torch/utils/_debug_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7925700Z copying torch/utils/_cxx_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7939660Z copying torch/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7958660Z copying torch/utils/_functools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7965430Z copying torch/utils/_import_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7972740Z copying torch/utils/_cpp_embed_headers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7973730Z copying torch/utils/_dtype_abbrs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.7982370Z copying torch/utils/bundled_inputs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8002500Z copying torch/utils/_helion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8009760Z copying torch/utils/mkldnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8017330Z copying torch/utils/cpp_backtrace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8024920Z copying torch/utils/_contextlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8032230Z copying torch/utils/_python_dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8033470Z copying torch/utils/_exposed_in.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8041290Z copying torch/utils/_filelock.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8048600Z copying torch/utils/_thunk.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8055890Z copying torch/utils/_config_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8069910Z copying torch/utils/_device.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8078220Z copying torch/utils/flop_counter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8079390Z copying torch/utils/_typing_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8088450Z copying torch/utils/_stats.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8095630Z copying torch/utils/cpp_extension.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8097360Z copying torch/utils/_get_clean_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8104580Z copying torch/utils/_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8112010Z copying torch/utils/_content_store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8119410Z copying torch/utils/_ordered_set.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8126820Z copying torch/utils/weak.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8134290Z copying torch/utils/mobile_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:30.8142280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-11-03T15:55:30.8142740Z copying torch/contrib/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-11-03T15:55:30.8143800Z copying torch/contrib/_tensorboard_vis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-11-03T15:55:30.8151970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nativert 2025-11-03T15:55:30.8152400Z copying torch/nativert/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nativert 2025-11-03T15:55:30.8155640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8156080Z copying torch/quantization/observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8163240Z copying torch/quantization/fuse_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8170450Z copying torch/quantization/quantization_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8177500Z copying torch/quantization/quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8184460Z copying torch/quantization/_numeric_suite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8191300Z copying torch/quantization/fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8198470Z copying torch/quantization/qconfig.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8206110Z copying torch/quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8212960Z copying torch/quantization/_quantized_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8219920Z copying torch/quantization/stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8227500Z copying torch/quantization/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8234310Z copying torch/quantization/fuser_method_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8241860Z copying torch/quantization/quantize_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8249090Z copying torch/quantization/quant_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8256210Z copying torch/quantization/quantize_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8263090Z copying torch/quantization/_numeric_suite_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-11-03T15:55:30.8271050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/special 2025-11-03T15:55:30.8271470Z copying torch/special/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/special 2025-11-03T15:55:30.8287660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-11-03T15:55:30.8288120Z copying torch/testing/_creation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-11-03T15:55:30.8295960Z copying torch/testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-11-03T15:55:30.8309690Z copying torch/testing/_comparison.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-11-03T15:55:30.8332320Z copying torch/testing/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-11-03T15:55:30.8342930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-11-03T15:55:30.8343410Z copying torch/_library/triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-11-03T15:55:30.8351460Z copying torch/_library/fake_profile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-11-03T15:55:30.8359900Z copying torch/_library/infer_schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-11-03T15:55:30.8380320Z copying torch/_library/opaque_object.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-11-03T15:55:30.8387580Z copying torch/_library/simple_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-11-03T15:55:30.8394820Z copying torch/_library/custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-11-03T15:55:30.8425690Z copying torch/_library/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-11-03T15:55:30.8432660Z copying torch/_library/fake_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-11-03T15:55:30.8440300Z copying torch/_library/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-11-03T15:55:30.8441130Z copying torch/_library/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-11-03T15:55:30.8454810Z copying torch/_library/fake_class_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-11-03T15:55:30.8463080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-11-03T15:55:30.8463510Z copying torch/accelerator/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-11-03T15:55:30.8476360Z copying torch/accelerator/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-11-03T15:55:30.8485160Z copying torch/accelerator/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-11-03T15:55:30.8492570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-11-03T15:55:30.8493000Z copying torch/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-11-03T15:55:30.8507060Z copying torch/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-11-03T15:55:30.8521120Z copying torch/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-11-03T15:55:30.8531040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8531560Z copying torch/jit/_ir_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8538650Z copying torch/jit/_monkeytype_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8546320Z copying torch/jit/_decompositions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8554120Z copying torch/jit/_recursive.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8575100Z copying torch/jit/_logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8583220Z copying torch/jit/_serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8590910Z copying torch/jit/quantized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8597480Z copying torch/jit/_script.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8598860Z copying torch/jit/_shape_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8613780Z copying torch/jit/_decomposition_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8621530Z copying torch/jit/_freeze.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8629590Z copying torch/jit/_pickle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8636820Z copying torch/jit/_check.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8644590Z copying torch/jit/unsupported_tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8651770Z copying torch/jit/frontend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8667070Z copying torch/jit/supported_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8675690Z copying torch/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8683720Z copying torch/jit/_fuser.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8691460Z copying torch/jit/_builtins.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8699270Z copying torch/jit/_dataclass_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8706290Z copying torch/jit/_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8728500Z copying torch/jit/generate_bytecode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8735910Z copying torch/jit/_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8742800Z copying torch/jit/_async.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8749620Z copying torch/jit/annotations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8763400Z copying torch/jit/_await.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:30.8776430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8776880Z copying torch/_dynamo/package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8798690Z copying torch/_dynamo/cache_size.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8806840Z copying torch/_dynamo/callback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8814420Z copying torch/_dynamo/comptime.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8821620Z copying torch/_dynamo/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8828850Z copying torch/_dynamo/_trace_wrapped_higher_order_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8842650Z copying torch/_dynamo/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8850470Z copying torch/_dynamo/precompile_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8864350Z copying torch/_dynamo/graph_break_hints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8871650Z copying torch/_dynamo/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8885280Z copying torch/_dynamo/guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8887540Z copying torch/_dynamo/test_minifier_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8895810Z copying torch/_dynamo/create_parameter_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8902980Z copying torch/_dynamo/aot_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8910480Z copying torch/_dynamo/graph_region_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8925480Z copying torch/_dynamo/device_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8938890Z copying torch/_dynamo/graph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8946070Z copying torch/_dynamo/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8947060Z copying torch/_dynamo/mutation_guard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8954070Z copying torch/_dynamo/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8961450Z copying torch/_dynamo/metrics_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8968940Z copying torch/_dynamo/bytecode_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8976740Z copying torch/_dynamo/tensor_version_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8984370Z copying torch/_dynamo/external_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8991390Z copying torch/_dynamo/test_case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.8998750Z copying torch/_dynamo/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9010430Z copying torch/_dynamo/resume_execution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9028370Z copying torch/_dynamo/output_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9030600Z copying torch/_dynamo/compiled_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9053150Z copying torch/_dynamo/exc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9068180Z copying torch/_dynamo/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9070490Z copying torch/_dynamo/test_dont_skip_tracing_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9077880Z copying torch/_dynamo/replay_record.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9085800Z copying torch/_dynamo/side_effects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9108170Z copying torch/_dynamo/trace_rules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9157600Z copying torch/_dynamo/bytecode_transformation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9178130Z copying torch/_dynamo/convert_frame.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9200340Z copying torch/_dynamo/funcname_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9208980Z copying torch/_dynamo/graph_bytecode_inputs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9209840Z copying torch/_dynamo/testing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9225110Z copying torch/_dynamo/pgo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9238070Z copying torch/_dynamo/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9245260Z copying torch/_dynamo/symbolic_convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9247550Z copying torch/_dynamo/codegen.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9261810Z copying torch/_dynamo/source.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9263040Z copying torch/_dynamo/aot_compile_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9271170Z copying torch/_dynamo/eval_frame.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9272640Z copying torch/_dynamo/functional_export.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9274020Z copying torch/_dynamo/code_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9281090Z copying torch/_dynamo/graph_deduplication.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9282220Z copying torch/_dynamo/current_scope_id.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9289250Z copying torch/_dynamo/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9303170Z copying torch/_dynamo/decorators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:30.9319190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-11-03T15:55:30.9319620Z copying torch/_lazy/metrics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-11-03T15:55:30.9327020Z copying torch/_lazy/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-11-03T15:55:30.9333630Z copying torch/_lazy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-11-03T15:55:30.9340870Z copying torch/_lazy/tensor_factory_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-11-03T15:55:30.9348180Z copying torch/_lazy/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-11-03T15:55:30.9354950Z copying torch/_lazy/extract_compiled_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-11-03T15:55:30.9363110Z copying torch/_lazy/ir_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-11-03T15:55:30.9370720Z copying torch/_lazy/ts_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-11-03T15:55:30.9378020Z copying torch/_lazy/computation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-11-03T15:55:30.9384830Z copying torch/_lazy/closure.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-11-03T15:55:30.9391910Z copying torch/_lazy/device_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-11-03T15:55:30.9399310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao 2025-11-03T15:55:30.9399730Z copying torch/ao/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao 2025-11-03T15:55:30.9407980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-11-03T15:55:30.9408340Z copying torch/mtia/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-11-03T15:55:30.9415540Z copying torch/mtia/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-11-03T15:55:30.9422270Z copying torch/mtia/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-11-03T15:55:30.9430420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-11-03T15:55:30.9430840Z copying torch/_refs/_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-11-03T15:55:30.9438680Z copying torch/_refs/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-11-03T15:55:30.9477920Z copying torch/_refs/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-11-03T15:55:30.9493690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fft 2025-11-03T15:55:30.9494090Z copying torch/fft/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fft 2025-11-03T15:55:30.9515750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-11-03T15:55:30.9516200Z copying torch/profiler/_memory_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-11-03T15:55:30.9517770Z copying torch/profiler/itt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-11-03T15:55:30.9525230Z copying torch/profiler/_pattern_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-11-03T15:55:30.9526250Z copying torch/profiler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-11-03T15:55:30.9533860Z copying torch/profiler/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-11-03T15:55:30.9550030Z copying torch/profiler/python_tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-11-03T15:55:30.9559240Z copying torch/profiler/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-11-03T15:55:30.9561480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-11-03T15:55:30.9561900Z copying torch/sparse/_semi_structured_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-11-03T15:55:30.9569180Z copying torch/sparse/_semi_structured_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-11-03T15:55:30.9576610Z copying torch/sparse/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-11-03T15:55:30.9589660Z copying torch/sparse/semi_structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-11-03T15:55:30.9602800Z copying torch/sparse/_triton_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-11-03T15:55:30.9604350Z copying torch/sparse/_triton_ops_meta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-11-03T15:55:30.9608650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits 2025-11-03T15:55:30.9609060Z copying torch/_awaits/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits 2025-11-03T15:55:30.9618310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9618680Z copying torch/export/_safeguard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9626030Z copying torch/export/exported_program.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9627430Z copying torch/export/unflatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9651620Z copying torch/export/custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9659380Z copying torch/export/custom_obj.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9666490Z copying torch/export/_remove_effect_tokens_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9667290Z copying torch/export/_remove_auto_functionalized_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9674920Z copying torch/export/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9695080Z copying torch/export/_unlift.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9709270Z copying torch/export/_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9739140Z copying torch/export/graph_signature.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9752900Z copying torch/export/_wrapper_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9760080Z copying torch/export/decomp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9761070Z copying torch/export/_swap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9762520Z copying torch/export/_draft_export.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9775600Z copying torch/export/dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9800100Z copying torch/export/_tree_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9807990Z copying torch/export/_leakage_detection_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-11-03T15:55:30.9815280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nested 2025-11-03T15:55:30.9815640Z copying torch/nested/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested 2025-11-03T15:55:30.9830700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-11-03T15:55:30.9831190Z copying torch/_strobelight/cli_function_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-11-03T15:55:30.9839280Z copying torch/_strobelight/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-11-03T15:55:30.9840040Z copying torch/_strobelight/compile_time_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-11-03T15:55:30.9848230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/numa 2025-11-03T15:55:30.9848580Z copying torch/numa/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/numa 2025-11-03T15:55:30.9849730Z copying torch/numa/binding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/numa 2025-11-03T15:55:30.9871030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-11-03T15:55:30.9871450Z copying torch/compiler/_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-11-03T15:55:30.9878470Z copying torch/compiler/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-11-03T15:55:30.9886380Z copying torch/compiler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-11-03T15:55:30.9900760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/signal 2025-11-03T15:55:30.9901160Z copying torch/signal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal 2025-11-03T15:55:30.9913780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:30.9914280Z copying torch/distributions/inverse_gamma.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:30.9927850Z copying torch/distributions/laplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:30.9935120Z copying torch/distributions/relaxed_bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:30.9942470Z copying torch/distributions/categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:30.9949630Z copying torch/distributions/transforms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:30.9970510Z copying torch/distributions/dirichlet.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:30.9981690Z copying torch/distributions/log_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:30.9988080Z copying torch/distributions/transformed_distribution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:30.9994670Z copying torch/distributions/geometric.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0001460Z copying torch/distributions/generalized_pareto.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0009130Z copying torch/distributions/weibull.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0016970Z copying torch/distributions/studentT.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0023390Z copying torch/distributions/multivariate_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0031210Z copying torch/distributions/normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0038360Z copying torch/distributions/poisson.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0047020Z copying torch/distributions/beta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0054490Z copying torch/distributions/kumaraswamy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0061430Z copying torch/distributions/half_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0067530Z copying torch/distributions/relaxed_categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0074440Z copying torch/distributions/lowrank_multivariate_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0081060Z copying torch/distributions/half_cauchy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0088230Z copying torch/distributions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0094830Z copying torch/distributions/lkj_cholesky.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0101700Z copying torch/distributions/independent.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0108450Z copying torch/distributions/multinomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0115120Z copying torch/distributions/exponential.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0122120Z copying torch/distributions/pareto.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0129290Z copying torch/distributions/negative_binomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0136350Z copying torch/distributions/cauchy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0143090Z copying torch/distributions/von_mises.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0150710Z copying torch/distributions/distribution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0159210Z copying torch/distributions/gumbel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0165940Z copying torch/distributions/constraint_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0173480Z copying torch/distributions/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0180330Z copying torch/distributions/kl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0194100Z copying torch/distributions/mixture_same_family.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0201480Z copying torch/distributions/continuous_bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0208800Z copying torch/distributions/fishersnedecor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0216210Z copying torch/distributions/constraints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0229850Z copying torch/distributions/uniform.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0237010Z copying torch/distributions/bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0244550Z copying torch/distributions/exp_family.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0252130Z copying torch/distributions/logistic_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0259410Z copying torch/distributions/one_hot_categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0266820Z copying torch/distributions/wishart.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0274080Z copying torch/distributions/gamma.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0280910Z copying torch/distributions/chi2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0288150Z copying torch/distributions/binomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-11-03T15:55:31.0297290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0297750Z copying torch/package/package_exporter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0318810Z copying torch/package/file_structure_representation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0326040Z copying torch/package/_mock.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0333660Z copying torch/package/importer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0334450Z copying torch/package/_stdlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0341520Z copying torch/package/_mangling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0348950Z copying torch/package/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0355640Z copying torch/package/package_importer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0370410Z copying torch/package/_package_unpickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0377950Z copying torch/package/glob_group.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0385380Z copying torch/package/find_file_dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0393070Z copying torch/package/_package_pickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0400230Z copying torch/package/_importlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0408040Z copying torch/package/_directory_reader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0415060Z copying torch/package/_digraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-11-03T15:55:31.0423030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/func 2025-11-03T15:55:31.0423380Z copying torch/func/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/func 2025-11-03T15:55:31.0432240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-11-03T15:55:31.0432880Z copying torch/_functorch/_activation_checkpointing/graph_info_provider.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-11-03T15:55:31.0440440Z copying torch/_functorch/_activation_checkpointing/knapsack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-11-03T15:55:31.0449410Z copying torch/_functorch/_activation_checkpointing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-11-03T15:55:31.0459150Z copying torch/_functorch/_activation_checkpointing/ac_logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-11-03T15:55:31.0466710Z copying torch/_functorch/_activation_checkpointing/knapsack_evaluator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-11-03T15:55:31.0476220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0476770Z copying torch/_functorch/_aot_autograd/input_output_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0491690Z copying torch/_functorch/_aot_autograd/runtime_wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0522010Z copying torch/_functorch/_aot_autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0530080Z copying torch/_functorch/_aot_autograd/functional_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0531300Z copying torch/_functorch/_aot_autograd/autograd_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0549660Z copying torch/_functorch/_aot_autograd/descriptors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0563730Z copying torch/_functorch/_aot_autograd/graph_capture_wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0585160Z copying torch/_functorch/_aot_autograd/schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0606630Z copying torch/_functorch/_aot_autograd/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0619870Z copying torch/_functorch/_aot_autograd/fx_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0627430Z copying torch/_functorch/_aot_autograd/collect_metadata_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0642100Z copying torch/_functorch/_aot_autograd/aot_autograd_result.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0656590Z copying torch/_functorch/_aot_autograd/frontend_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0657640Z copying torch/_functorch/_aot_autograd/graph_capture.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0671380Z copying torch/_functorch/_aot_autograd/graph_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0672910Z copying torch/_functorch/_aot_autograd/subclass_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0687210Z copying torch/_functorch/_aot_autograd/logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0694080Z copying torch/_functorch/_aot_autograd/subclass_parametrization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-11-03T15:55:31.0702610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-11-03T15:55:31.0703060Z copying torch/_numpy/testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-11-03T15:55:31.0710270Z copying torch/_numpy/testing/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-11-03T15:55:31.0733000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-11-03T15:55:31.0733510Z copying torch/_export/pass_infra/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-11-03T15:55:31.0734640Z copying torch/_export/pass_infra/proxy_value.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-11-03T15:55:31.0742250Z copying torch/_export/pass_infra/node_metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-11-03T15:55:31.0751310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-11-03T15:55:31.0751790Z copying torch/_export/passes/insert_custom_op_guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-11-03T15:55:31.0759150Z copying torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-11-03T15:55:31.0773910Z 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-11-03T15:55:31.0780980Z copying torch/_export/passes/collect_tracepoints_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-11-03T15:55:31.0781970Z copying torch/_export/passes/replace_with_hop_pass_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-11-03T15:55:31.0783130Z copying torch/_export/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-11-03T15:55:31.0790560Z copying torch/_export/passes/_node_metadata_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-11-03T15:55:31.0798270Z copying torch/_export/passes/lift_constants_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-11-03T15:55:31.0812160Z copying torch/_export/passes/constant_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-11-03T15:55:31.0819790Z copying torch/_export/passes/add_runtime_assertions_for_constraints_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-11-03T15:55:31.0827990Z copying torch/_export/passes/replace_autocast_with_hop_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-11-03T15:55:31.0828970Z copying torch/_export/passes/functionalize_side_effectful_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-11-03T15:55:31.0837100Z copying torch/_export/passes/replace_set_grad_with_hop_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-11-03T15:55:31.0837970Z copying torch/_export/passes/remove_runtime_assertions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-11-03T15:55:31.0845900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-11-03T15:55:31.0846410Z copying torch/_export/db/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-11-03T15:55:31.0853590Z copying torch/_export/db/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-11-03T15:55:31.0861380Z copying torch/_export/db/gen_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-11-03T15:55:31.0868390Z copying torch/_export/db/case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-11-03T15:55:31.0876810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-11-03T15:55:31.0877420Z copying torch/_export/serde/serialize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-11-03T15:55:31.0879750Z copying torch/_export/serde/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-11-03T15:55:31.0880490Z copying torch/_export/serde/schema_check.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-11-03T15:55:31.0895810Z copying torch/_export/serde/dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-11-03T15:55:31.0903260Z copying torch/_export/serde/union.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-11-03T15:55:31.0910970Z copying torch/_export/serde/schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-11-03T15:55:31.0922600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.0923120Z copying torch/_export/db/examples/list_unpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.0937370Z copying torch/_export/db/examples/specialized_attribute.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.0945550Z copying torch/_export/db/examples/static_for_loop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.0952990Z copying torch/_export/db/examples/cond_closed_over_variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.0966190Z copying torch/_export/db/examples/fn_with_kwargs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.0973890Z copying torch/_export/db/examples/constrain_as_value_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.0982510Z copying torch/_export/db/examples/dynamic_shape_slicing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.0991970Z copying torch/_export/db/examples/cond_branch_nonlocal_variables.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.0999200Z copying torch/_export/db/examples/autograd_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1006160Z copying torch/_export/db/examples/type_reflection_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1013540Z copying torch/_export/db/examples/cond_operands.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1021340Z copying torch/_export/db/examples/decorator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1028630Z copying torch/_export/db/examples/dynamic_shape_view.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1035950Z copying torch/_export/db/examples/dynamic_shape_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1043030Z copying torch/_export/db/examples/nested_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1052970Z copying torch/_export/db/examples/dynamic_shape_constructor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1062200Z copying torch/_export/db/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1069420Z copying torch/_export/db/examples/dynamic_shape_if_guard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1076590Z copying torch/_export/db/examples/assume_constant_result.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1083500Z copying torch/_export/db/examples/cond_branch_class_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1089920Z copying torch/_export/db/examples/class_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1096560Z copying torch/_export/db/examples/pytree_flatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1105340Z copying torch/_export/db/examples/scalar_output.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1115020Z copying torch/_export/db/examples/cond_predicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1121900Z copying torch/_export/db/examples/dynamic_shape_assert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1128850Z copying torch/_export/db/examples/unsupported_operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1135920Z copying torch/_export/db/examples/tensor_setattr.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1142890Z copying torch/_export/db/examples/optional_input.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1154450Z copying torch/_export/db/examples/constrain_as_size_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1164600Z copying torch/_export/db/examples/static_if.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1171940Z copying torch/_export/db/examples/dictionary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1178300Z copying torch/_export/db/examples/list_contains.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1187370Z copying torch/_export/db/examples/dynamic_shape_round.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1196260Z copying torch/_export/db/examples/user_input_mutation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1204030Z copying torch/_export/db/examples/null_context_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1210890Z copying torch/_export/db/examples/cond_branch_nested_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1217560Z copying torch/_export/db/examples/model_attr_mutation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-11-03T15:55:31.1225300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-11-03T15:55:31.1225770Z copying torch/nn/attention/bias.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-11-03T15:55:31.1233620Z copying torch/nn/attention/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-11-03T15:55:31.1240150Z copying torch/nn/attention/varlen.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-11-03T15:55:31.1246990Z copying torch/nn/attention/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-11-03T15:55:31.1248330Z copying torch/nn/attention/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-11-03T15:55:31.1256820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-11-03T15:55:31.1257250Z copying torch/nn/parallel/parallel_apply.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-11-03T15:55:31.1258580Z copying torch/nn/parallel/comm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-11-03T15:55:31.1260100Z copying torch/nn/parallel/scatter_gather.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-11-03T15:55:31.1261250Z copying torch/nn/parallel/replicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-11-03T15:55:31.1268730Z copying torch/nn/parallel/_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-11-03T15:55:31.1280880Z copying torch/nn/parallel/data_parallel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-11-03T15:55:31.1287810Z copying torch/nn/parallel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-11-03T15:55:31.1294810Z copying torch/nn/parallel/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-11-03T15:55:31.1323710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat 2025-11-03T15:55:31.1324120Z copying torch/nn/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat 2025-11-03T15:55:31.1332310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-11-03T15:55:31.1332730Z copying torch/nn/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-11-03T15:55:31.1340670Z copying torch/nn/quantized/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-11-03T15:55:31.1347350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-11-03T15:55:31.1347750Z copying torch/nn/backends/thnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-11-03T15:55:31.1355220Z copying torch/nn/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-11-03T15:55:31.1357920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1358370Z copying torch/nn/utils/_named_member_accessor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1359690Z copying torch/nn/utils/spectral_norm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1367510Z copying torch/nn/utils/convert_parameters.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1374840Z copying torch/nn/utils/stateless.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1382350Z copying torch/nn/utils/parametrize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1397010Z copying torch/nn/utils/memory_format.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1405500Z copying torch/nn/utils/_per_sample_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1414020Z copying torch/nn/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1414930Z copying torch/nn/utils/weight_norm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1422470Z copying torch/nn/utils/fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1429910Z copying torch/nn/utils/prune.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1451740Z copying torch/nn/utils/parametrizations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1466520Z copying torch/nn/utils/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1473650Z copying torch/nn/utils/_deprecation_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1480680Z copying torch/nn/utils/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1481780Z copying torch/nn/utils/clip_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-11-03T15:55:31.1490550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable 2025-11-03T15:55:31.1491020Z copying torch/nn/quantizable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable 2025-11-03T15:55:31.1499960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic 2025-11-03T15:55:31.1500380Z copying torch/nn/intrinsic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic 2025-11-03T15:55:31.1510030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1510490Z copying torch/nn/modules/upsampling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1518160Z copying torch/nn/modules/channelshuffle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1525490Z copying torch/nn/modules/instancenorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1539260Z copying torch/nn/modules/flatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1546770Z copying torch/nn/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1562650Z copying torch/nn/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1572300Z copying torch/nn/modules/_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1579980Z copying torch/nn/modules/pooling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1602960Z copying torch/nn/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1610370Z copying torch/nn/modules/distance.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1617480Z copying torch/nn/modules/container.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1618660Z copying torch/nn/modules/pixelshuffle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1625470Z copying torch/nn/modules/adaptive.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1626400Z copying torch/nn/modules/loss.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1659330Z copying torch/nn/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1681620Z copying torch/nn/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1682630Z copying torch/nn/modules/transformer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1702790Z copying torch/nn/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1716860Z copying torch/nn/modules/module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1772380Z copying torch/nn/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1791440Z copying torch/nn/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1792870Z copying torch/nn/modules/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1798660Z copying torch/nn/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1804760Z copying torch/nn/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1806160Z copying torch/nn/modules/padding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1817170Z copying torch/nn/modules/fold.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-11-03T15:55:31.1823820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-11-03T15:55:31.1824350Z copying torch/nn/attention/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-11-03T15:55:31.1830180Z copying torch/nn/attention/experimental/_paged_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-11-03T15:55:31.1836800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic 2025-11-03T15:55:31.1837320Z copying torch/nn/qat/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic 2025-11-03T15:55:31.1844850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-11-03T15:55:31.1845340Z copying torch/nn/qat/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-11-03T15:55:31.1852160Z copying torch/nn/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-11-03T15:55:31.1858640Z copying torch/nn/qat/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-11-03T15:55:31.1867910Z copying torch/nn/qat/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-11-03T15:55:31.1876630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-11-03T15:55:31.1877130Z copying torch/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-11-03T15:55:31.1885710Z copying torch/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-11-03T15:55:31.1893460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference 2025-11-03T15:55:31.1893960Z copying torch/nn/quantized/_reference/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference 2025-11-03T15:55:31.1900790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic 2025-11-03T15:55:31.1901260Z copying torch/nn/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic 2025-11-03T15:55:31.1908310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-11-03T15:55:31.1908800Z copying torch/nn/quantized/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-11-03T15:55:31.1915490Z copying torch/nn/quantized/modules/functional_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-11-03T15:55:31.1921760Z copying torch/nn/quantized/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-11-03T15:55:31.1927900Z copying torch/nn/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-11-03T15:55:31.1933590Z copying torch/nn/quantized/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-11-03T15:55:31.1939700Z copying torch/nn/quantized/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-11-03T15:55:31.1945990Z copying torch/nn/quantized/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-11-03T15:55:31.1952180Z copying torch/nn/quantized/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-11-03T15:55:31.1958550Z copying torch/nn/quantized/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-11-03T15:55:31.1965450Z copying torch/nn/quantized/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-11-03T15:55:31.1971660Z copying torch/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-11-03T15:55:31.1978730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-11-03T15:55:31.1979280Z copying torch/nn/quantized/_reference/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-11-03T15:55:31.1986460Z copying torch/nn/quantized/_reference/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-11-03T15:55:31.1992410Z copying torch/nn/quantized/_reference/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-11-03T15:55:31.1998640Z copying torch/nn/quantized/_reference/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-11-03T15:55:31.2005400Z copying torch/nn/quantized/_reference/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-11-03T15:55:31.2011770Z copying torch/nn/quantized/_reference/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-11-03T15:55:31.2018980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-11-03T15:55:31.2019530Z copying torch/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-11-03T15:55:31.2026440Z copying torch/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-11-03T15:55:31.2032760Z copying torch/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-11-03T15:55:31.2039880Z copying torch/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-11-03T15:55:31.2047690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-11-03T15:55:31.2048260Z 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-11-03T15:55:31.2055790Z 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-11-03T15:55:31.2062300Z copying torch/nn/utils/_expanded_weights/conv_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-11-03T15:55:31.2069190Z copying torch/nn/utils/_expanded_weights/expanded_weights_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-11-03T15:55:31.2070140Z copying torch/nn/utils/_expanded_weights/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-11-03T15:55:31.2077130Z copying torch/nn/utils/_expanded_weights/embedding_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-11-03T15:55:31.2084340Z copying torch/nn/utils/_expanded_weights/conv_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-11-03T15:55:31.2085370Z 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-11-03T15:55:31.2093020Z copying torch/nn/utils/_expanded_weights/linear_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-11-03T15:55:31.2100350Z copying torch/nn/utils/_expanded_weights/expanded_weights_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-11-03T15:55:31.2108440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-11-03T15:55:31.2108940Z copying torch/nn/quantizable/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-11-03T15:55:31.2117680Z copying torch/nn/quantizable/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-11-03T15:55:31.2124730Z copying torch/nn/quantizable/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-11-03T15:55:31.2134120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat 2025-11-03T15:55:31.2134670Z copying torch/nn/intrinsic/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat 2025-11-03T15:55:31.2144500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized 2025-11-03T15:55:31.2144990Z copying torch/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized 2025-11-03T15:55:31.2153010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-11-03T15:55:31.2153670Z copying torch/nn/intrinsic/modules/fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-11-03T15:55:31.2161500Z copying torch/nn/intrinsic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-11-03T15:55:31.2169210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-11-03T15:55:31.2169720Z copying torch/nn/intrinsic/qat/modules/conv_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-11-03T15:55:31.2177360Z copying torch/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-11-03T15:55:31.2184370Z copying torch/nn/intrinsic/qat/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-11-03T15:55:31.2191350Z copying torch/nn/intrinsic/qat/modules/linear_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-11-03T15:55:31.2198420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic 2025-11-03T15:55:31.2198970Z copying torch/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic 2025-11-03T15:55:31.2207630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-11-03T15:55:31.2208180Z copying torch/nn/intrinsic/quantized/modules/bn_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-11-03T15:55:31.2215910Z copying torch/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-11-03T15:55:31.2224740Z copying torch/nn/intrinsic/quantized/modules/conv_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-11-03T15:55:31.2231950Z copying torch/nn/intrinsic/quantized/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-11-03T15:55:31.2239990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-11-03T15:55:31.2240610Z copying torch/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-11-03T15:55:31.2247990Z 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-11-03T15:55:31.2255750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-11-03T15:55:31.2256170Z copying torch/onnx/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-11-03T15:55:31.2257190Z copying torch/onnx/_internal/_lazy_import.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-11-03T15:55:31.2265570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-11-03T15:55:31.2266020Z copying torch/onnx/ops/_dtype_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-11-03T15:55:31.2273290Z copying torch/onnx/ops/_symbolic_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-11-03T15:55:31.2281460Z copying torch/onnx/ops/_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-11-03T15:55:31.2296790Z copying torch/onnx/ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-11-03T15:55:31.2312170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2312780Z copying torch/onnx/_internal/torchscript_exporter/registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2326600Z copying torch/onnx/_internal/torchscript_exporter/_type_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2333890Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2341040Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset7.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2348920Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2369240Z copying torch/onnx/_internal/torchscript_exporter/verification.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2383300Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2398220Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2406200Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2413550Z copying torch/onnx/_internal/torchscript_exporter/_globals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2420460Z copying torch/onnx/_internal/torchscript_exporter/symbolic_helper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2448000Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2498390Z copying torch/onnx/_internal/torchscript_exporter/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2499180Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2509840Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset19.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2518860Z copying torch/onnx/_internal/torchscript_exporter/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2540470Z copying torch/onnx/_internal/torchscript_exporter/_experimental.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2547870Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2554710Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2567670Z copying torch/onnx/_internal/torchscript_exporter/onnx_proto_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2574830Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2582370Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2590220Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2597610Z copying torch/onnx/_internal/torchscript_exporter/jit_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:31.2605750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-11-03T15:55:31.2606270Z copying torch/onnx/_internal/fx/type_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-11-03T15:55:31.2613790Z copying torch/onnx/_internal/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-11-03T15:55:31.2614530Z copying torch/onnx/_internal/fx/_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-11-03T15:55:31.2624680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2625190Z copying torch/onnx/_internal/exporter/_constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2632220Z copying torch/onnx/_internal/exporter/_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2639380Z copying torch/onnx/_internal/exporter/_flags.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2646380Z copying torch/onnx/_internal/exporter/_errors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2653120Z copying torch/onnx/_internal/exporter/_capture_strategies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2659850Z copying torch/onnx/_internal/exporter/_tensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2667050Z copying torch/onnx/_internal/exporter/_dispatching.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2674390Z copying torch/onnx/_internal/exporter/_isolated.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2681280Z copying torch/onnx/_internal/exporter/_decomp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2688850Z copying torch/onnx/_internal/exporter/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2689570Z copying torch/onnx/_internal/exporter/_onnx_program.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2703640Z copying torch/onnx/_internal/exporter/_building.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2704780Z copying torch/onnx/_internal/exporter/_dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2712620Z copying torch/onnx/_internal/exporter/_schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2726690Z copying torch/onnx/_internal/exporter/_core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2770560Z copying torch/onnx/_internal/exporter/_verification.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2787830Z copying torch/onnx/_internal/exporter/_reporting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2793660Z copying torch/onnx/_internal/exporter/_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2800440Z copying torch/onnx/_internal/exporter/_testing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2806210Z copying torch/onnx/_internal/exporter/_compat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2812480Z copying torch/onnx/_internal/exporter/_ir_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2813500Z copying torch/onnx/_internal/exporter/_type_casting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2819770Z copying torch/onnx/_internal/exporter/_fx_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-11-03T15:55:31.2826570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-11-03T15:55:31.2827060Z copying torch/onnx/_internal/fx/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-11-03T15:55:31.2833170Z copying torch/onnx/_internal/fx/passes/type_promotion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-11-03T15:55:31.2852140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-11-03T15:55:31.2852750Z copying torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-11-03T15:55:31.2860050Z copying torch/onnx/_internal/exporter/_torchlib/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-11-03T15:55:31.2860820Z copying torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-11-03T15:55:31.2869000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-11-03T15:55:31.2869580Z copying torch/onnx/_internal/exporter/_torchlib/ops/nn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-11-03T15:55:31.2870860Z copying torch/onnx/_internal/exporter/_torchlib/ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-11-03T15:55:31.2877360Z copying torch/onnx/_internal/exporter/_torchlib/ops/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-11-03T15:55:31.2884250Z copying torch/onnx/_internal/exporter/_torchlib/ops/symops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-11-03T15:55:31.2891290Z copying torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-11-03T15:55:31.2898120Z copying torch/onnx/_internal/exporter/_torchlib/ops/hop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-11-03T15:55:31.2905480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-11-03T15:55:31.2905970Z copying torch/_vendor/packaging/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-11-03T15:55:31.2913690Z copying torch/_vendor/packaging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-11-03T15:55:31.2919820Z copying torch/_vendor/packaging/_structures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-11-03T15:55:31.2927890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-11-03T15:55:31.2928300Z copying torch/cpu/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-11-03T15:55:31.2935680Z copying torch/cpu/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-11-03T15:55:31.2942720Z copying torch/cpu/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-11-03T15:55:31.2949870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-11-03T15:55:31.2950330Z copying torch/distributed/_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-11-03T15:55:31.2957980Z copying torch/distributed/_tensor/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-11-03T15:55:31.2964850Z copying torch/distributed/_tensor/placement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-11-03T15:55:31.2972180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec 2025-11-03T15:55:31.2972700Z copying torch/distributed/_sharding_spec/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec 2025-11-03T15:55:31.2980370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-11-03T15:55:31.2981070Z copying torch/distributed/launcher/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-11-03T15:55:31.2988810Z copying torch/distributed/launcher/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-11-03T15:55:31.3000790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3001320Z copying torch/distributed/checkpoint/_async_process_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3009810Z copying torch/distributed/checkpoint/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3017570Z copying torch/distributed/checkpoint/format_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3025630Z copying torch/distributed/checkpoint/planner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3034450Z copying torch/distributed/checkpoint/_consolidate_hf_safetensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3048510Z copying torch/distributed/checkpoint/_dedup_save_plans.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3062080Z copying torch/distributed/checkpoint/state_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3083230Z copying torch/distributed/checkpoint/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3092880Z copying torch/distributed/checkpoint/_storage_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3101980Z copying torch/distributed/checkpoint/_version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3108690Z copying torch/distributed/checkpoint/_traverse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3115440Z copying torch/distributed/checkpoint/_sharded_tensor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3122040Z copying torch/distributed/checkpoint/_dedup_tensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3134230Z copying torch/distributed/checkpoint/filesystem.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3152290Z copying torch/distributed/checkpoint/state_dict_saver.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3164770Z copying torch/distributed/checkpoint/quantized_hf_storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3172250Z copying torch/distributed/checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3179650Z copying torch/distributed/checkpoint/_hf_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3186310Z copying torch/distributed/checkpoint/logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3193130Z copying torch/distributed/checkpoint/_pg_transport.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3200630Z copying torch/distributed/checkpoint/resharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3207600Z copying torch/distributed/checkpoint/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3214590Z copying torch/distributed/checkpoint/state_dict_loader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3222130Z copying torch/distributed/checkpoint/_async_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3229350Z copying torch/distributed/checkpoint/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3242850Z copying torch/distributed/checkpoint/default_planner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3256750Z copying torch/distributed/checkpoint/storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3264240Z copying torch/distributed/checkpoint/_state_dict_stager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3278270Z copying torch/distributed/checkpoint/planner_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3292670Z copying torch/distributed/checkpoint/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3302540Z copying torch/distributed/checkpoint/_async_thread_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3312110Z copying torch/distributed/checkpoint/staging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3324950Z copying torch/distributed/checkpoint/_checkpointer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3332710Z copying torch/distributed/checkpoint/stateful.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3339370Z copying torch/distributed/checkpoint/_fsspec_filesystem.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3346580Z copying torch/distributed/checkpoint/_extension.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3353860Z copying torch/distributed/checkpoint/_nested_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3361030Z copying torch/distributed/checkpoint/hf_storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-11-03T15:55:31.3368970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor 2025-11-03T15:55:31.3369480Z copying torch/distributed/_sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor 2025-11-03T15:55:31.3377380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-11-03T15:55:31.3377830Z copying torch/distributed/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-11-03T15:55:31.3385080Z copying torch/distributed/nn/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-11-03T15:55:31.3398970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-11-03T15:55:31.3399440Z copying torch/distributed/elastic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-11-03T15:55:31.3406840Z copying torch/distributed/elastic/control_plane.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-11-03T15:55:31.3414490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd 2025-11-03T15:55:31.3415000Z copying torch/distributed/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd 2025-11-03T15:55:31.3423960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-11-03T15:55:31.3424540Z copying torch/distributed/pipelining/_IR.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-11-03T15:55:31.3426270Z copying torch/distributed/pipelining/_unflatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-11-03T15:55:31.3434570Z copying torch/distributed/pipelining/_schedule_visualizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-11-03T15:55:31.3448290Z copying torch/distributed/pipelining/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-11-03T15:55:31.3455820Z copying torch/distributed/pipelining/microbatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-11-03T15:55:31.3456940Z copying torch/distributed/pipelining/_backward.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-11-03T15:55:31.3485100Z copying torch/distributed/pipelining/_debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-11-03T15:55:31.3492280Z copying torch/distributed/pipelining/stage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-11-03T15:55:31.3512280Z copying torch/distributed/pipelining/schedules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-11-03T15:55:31.3541450Z copying torch/distributed/pipelining/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-11-03T15:55:31.3549670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-11-03T15:55:31.3550170Z copying torch/distributed/algorithms/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-11-03T15:55:31.3557180Z copying torch/distributed/algorithms/join.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-11-03T15:55:31.3566510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3567000Z copying torch/distributed/optim/_deprecation_warning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3574690Z copying torch/distributed/optim/named_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3582050Z copying torch/distributed/optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3589190Z copying torch/distributed/optim/functional_sgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3596210Z copying torch/distributed/optim/functional_adagrad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3603510Z copying torch/distributed/optim/functional_adamw.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3610510Z copying torch/distributed/optim/apply_optimizer_in_backward.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3618120Z copying torch/distributed/optim/functional_adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3626340Z copying torch/distributed/optim/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3632990Z copying torch/distributed/optim/functional_rprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3639740Z copying torch/distributed/optim/post_localSGD_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3646570Z copying torch/distributed/optim/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3653430Z copying torch/distributed/optim/functional_adadelta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3660450Z copying torch/distributed/optim/functional_rmsprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3667380Z copying torch/distributed/optim/zero_redundancy_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3691430Z copying torch/distributed/optim/functional_adamax.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:31.3699900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-11-03T15:55:31.3700440Z copying torch/distributed/_composable/replicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-11-03T15:55:31.3707820Z copying torch/distributed/_composable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-11-03T15:55:31.3714870Z copying torch/distributed/_composable/replicate_with_fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-11-03T15:55:31.3721990Z copying torch/distributed/_composable/contract.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-11-03T15:55:31.3729240Z copying torch/distributed/_composable/checkpoint_activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-11-03T15:55:31.3737750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-11-03T15:55:31.3738270Z copying torch/distributed/_tools/mem_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-11-03T15:55:31.3752000Z copying torch/distributed/_tools/ilp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-11-03T15:55:31.3760080Z copying torch/distributed/_tools/runtime_estimator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-11-03T15:55:31.3773950Z copying torch/distributed/_tools/fsdp2_mem_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-11-03T15:55:31.3775050Z copying torch/distributed/_tools/sac_estimator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-11-03T15:55:31.3789790Z copying torch/distributed/_tools/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-11-03T15:55:31.3797910Z copying torch/distributed/_tools/memory_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-11-03T15:55:31.3805910Z copying torch/distributed/_tools/fake_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-11-03T15:55:31.3806860Z copying torch/distributed/_tools/common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-11-03T15:55:31.3814030Z copying torch/distributed/_tools/sac_ilp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-11-03T15:55:31.3821270Z copying torch/distributed/_tools/mod_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-11-03T15:55:31.3830780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.3831260Z copying torch/distributed/fsdp/_exec_order_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.3845320Z copying torch/distributed/fsdp/_traversal_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.3852560Z copying torch/distributed/fsdp/sharded_grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.3866750Z copying torch/distributed/fsdp/_state_dict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.3882980Z copying torch/distributed/fsdp/fully_sharded_data_parallel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.3911830Z copying torch/distributed/fsdp/_wrap_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.3919670Z copying torch/distributed/fsdp/_optim_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.3947350Z copying torch/distributed/fsdp/_trace_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.3956960Z copying torch/distributed/fsdp/_common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.3971780Z copying torch/distributed/fsdp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.3978830Z copying torch/distributed/fsdp/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.3992260Z copying torch/distributed/fsdp/_limiter_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.3999120Z copying torch/distributed/fsdp/_dynamo_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.4006240Z copying torch/distributed/fsdp/_unshard_param_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.4013230Z copying torch/distributed/fsdp/_shard_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.4020460Z copying torch/distributed/fsdp/wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.4034410Z copying torch/distributed/fsdp/_runtime_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.4059350Z copying torch/distributed/fsdp/_fsdp_extensions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.4067950Z copying torch/distributed/fsdp/_init_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.4083040Z copying torch/distributed/fsdp/_debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.4091010Z copying torch/distributed/fsdp/_flat_param.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-11-03T15:55:31.4120470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_local_tensor 2025-11-03T15:55:31.4121210Z copying torch/distributed/_local_tensor/_c10d.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_local_tensor 2025-11-03T15:55:31.4136170Z copying torch/distributed/_local_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_local_tensor 2025-11-03T15:55:31.4151940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-11-03T15:55:31.4152460Z copying torch/distributed/_shard/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-11-03T15:55:31.4160450Z copying torch/distributed/_shard/op_registry_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-11-03T15:55:31.4167610Z copying torch/distributed/_shard/sharder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-11-03T15:55:31.4174680Z copying torch/distributed/_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-11-03T15:55:31.4182220Z copying torch/distributed/_shard/common_op_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-11-03T15:55:31.4189110Z copying torch/distributed/_shard/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-11-03T15:55:31.4196610Z copying torch/distributed/_shard/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-11-03T15:55:31.4204550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-11-03T15:55:31.4205150Z copying torch/distributed/_symmetric_memory/_nvshmem_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-11-03T15:55:31.4219460Z copying torch/distributed/_symmetric_memory/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-11-03T15:55:31.4242520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4243010Z copying torch/distributed/tensor/_shards_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4251520Z copying torch/distributed/tensor/_redistribute.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4265860Z copying torch/distributed/tensor/_sharding_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4287100Z copying torch/distributed/tensor/_collective_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4294780Z copying torch/distributed/tensor/_api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4296100Z copying torch/distributed/tensor/_dtensor_spec.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4310910Z copying torch/distributed/tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4317990Z copying torch/distributed/tensor/_dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4344430Z copying torch/distributed/tensor/_random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4357330Z copying torch/distributed/tensor/_op_schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4370080Z copying torch/distributed/tensor/placement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4389290Z copying torch/distributed/tensor/_tp_conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4396890Z copying torch/distributed/tensor/device_mesh.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4408540Z copying torch/distributed/tensor/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-11-03T15:55:31.4425340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_pycute 2025-11-03T15:55:31.4425800Z copying torch/distributed/_pycute/layout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_pycute 2025-11-03T15:55:31.4438700Z copying torch/distributed/_pycute/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_pycute 2025-11-03T15:55:31.4445020Z copying torch/distributed/_pycute/typing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_pycute 2025-11-03T15:55:31.4451640Z copying torch/distributed/_pycute/int_tuple.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_pycute 2025-11-03T15:55:31.4460350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-11-03T15:55:31.4460800Z copying torch/distributed/rpc/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-11-03T15:55:31.4468130Z copying torch/distributed/rpc/options.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-11-03T15:55:31.4475050Z copying torch/distributed/rpc/internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-11-03T15:55:31.4481790Z copying torch/distributed/rpc/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-11-03T15:55:31.4488780Z copying torch/distributed/rpc/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-11-03T15:55:31.4495610Z copying torch/distributed/rpc/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-11-03T15:55:31.4509760Z copying torch/distributed/rpc/rref_proxy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-11-03T15:55:31.4510820Z copying torch/distributed/rpc/server_process_global_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-11-03T15:55:31.4519020Z copying torch/distributed/rpc/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-11-03T15:55:31.4525470Z copying torch/distributed/rpc/backend_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-11-03T15:55:31.4533670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-11-03T15:55:31.4534270Z copying torch/distributed/checkpoint/_experimental/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-11-03T15:55:31.4541690Z copying torch/distributed/checkpoint/_experimental/barriers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-11-03T15:55:31.4549110Z copying torch/distributed/checkpoint/_experimental/checkpointer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-11-03T15:55:31.4558890Z copying torch/distributed/checkpoint/_experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-11-03T15:55:31.4568600Z copying torch/distributed/checkpoint/_experimental/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-11-03T15:55:31.4574930Z copying torch/distributed/checkpoint/_experimental/builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-11-03T15:55:31.4582170Z copying torch/distributed/checkpoint/_experimental/checkpoint_reader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-11-03T15:55:31.4589320Z copying torch/distributed/checkpoint/_experimental/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-11-03T15:55:31.4595860Z copying torch/distributed/checkpoint/_experimental/checkpoint_process.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-11-03T15:55:31.4602970Z copying torch/distributed/checkpoint/_experimental/checkpoint_writer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-11-03T15:55:31.4610920Z copying torch/distributed/checkpoint/_experimental/staging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-11-03T15:55:31.4618810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-11-03T15:55:31.4619310Z copying torch/distributed/nn/jit/instantiator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-11-03T15:55:31.4626910Z copying torch/distributed/nn/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-11-03T15:55:31.4628110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-11-03T15:55:31.4628880Z copying torch/distributed/nn/api/remote_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-11-03T15:55:31.4643590Z copying torch/distributed/nn/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-11-03T15:55:31.4644890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-11-03T15:55:31.4645700Z copying torch/distributed/nn/jit/templates/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-11-03T15:55:31.4646810Z copying torch/distributed/nn/jit/templates/remote_module_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-11-03T15:55:31.4654420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-11-03T15:55:31.4654950Z copying torch/distributed/elastic/metrics/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-11-03T15:55:31.4662110Z copying torch/distributed/elastic/metrics/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-11-03T15:55:31.4671080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-11-03T15:55:31.4671650Z copying torch/distributed/elastic/rendezvous/etcd_store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-11-03T15:55:31.4679530Z copying torch/distributed/elastic/rendezvous/registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-11-03T15:55:31.4687830Z copying torch/distributed/elastic/rendezvous/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-11-03T15:55:31.4696150Z copying torch/distributed/elastic/rendezvous/_etcd_stub.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-11-03T15:55:31.4703690Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-11-03T15:55:31.4719290Z copying torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-11-03T15:55:31.4728110Z copying torch/distributed/elastic/rendezvous/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-11-03T15:55:31.4736240Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-11-03T15:55:31.4743620Z copying torch/distributed/elastic/rendezvous/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-11-03T15:55:31.4751430Z copying torch/distributed/elastic/rendezvous/dynamic_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-11-03T15:55:31.4772540Z copying torch/distributed/elastic/rendezvous/etcd_server.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-11-03T15:55:31.4780370Z copying torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-11-03T15:55:31.4788420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-11-03T15:55:31.4789030Z copying torch/distributed/elastic/multiprocessing/tail_log.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-11-03T15:55:31.4796860Z copying torch/distributed/elastic/multiprocessing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-11-03T15:55:31.4804780Z copying torch/distributed/elastic/multiprocessing/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-11-03T15:55:31.4820790Z copying torch/distributed/elastic/multiprocessing/redirects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-11-03T15:55:31.4828530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-11-03T15:55:31.4829060Z copying torch/distributed/elastic/timer/local_timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-11-03T15:55:31.4836430Z copying torch/distributed/elastic/timer/debug_info_logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-11-03T15:55:31.4843890Z copying torch/distributed/elastic/timer/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-11-03T15:55:31.4851060Z copying torch/distributed/elastic/timer/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-11-03T15:55:31.4859050Z copying torch/distributed/elastic/timer/file_based_local_timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-11-03T15:55:31.4873250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-11-03T15:55:31.4873750Z copying torch/distributed/elastic/utils/store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-11-03T15:55:31.4881390Z copying torch/distributed/elastic/utils/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-11-03T15:55:31.4888460Z copying torch/distributed/elastic/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-11-03T15:55:31.4895520Z copying torch/distributed/elastic/utils/log_level.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-11-03T15:55:31.4902350Z copying torch/distributed/elastic/utils/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-11-03T15:55:31.4909300Z copying torch/distributed/elastic/utils/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-11-03T15:55:31.4916780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent 2025-11-03T15:55:31.4917290Z copying torch/distributed/elastic/agent/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent 2025-11-03T15:55:31.4918900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-11-03T15:55:31.4919530Z copying torch/distributed/elastic/events/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-11-03T15:55:31.4927310Z copying torch/distributed/elastic/events/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-11-03T15:55:31.4935000Z copying torch/distributed/elastic/events/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-11-03T15:55:31.4942710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-11-03T15:55:31.4943530Z 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-11-03T15:55:31.4951010Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-11-03T15:55:31.4958060Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-11-03T15:55:31.4965740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-11-03T15:55:31.4966420Z copying torch/distributed/elastic/multiprocessing/errors/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-11-03T15:55:31.4974100Z copying torch/distributed/elastic/multiprocessing/errors/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-11-03T15:55:31.4981720Z copying torch/distributed/elastic/multiprocessing/errors/error_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-11-03T15:55:31.4989560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-11-03T15:55:31.4990230Z copying torch/distributed/elastic/utils/data/elastic_distributed_sampler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-11-03T15:55:31.4998170Z copying torch/distributed/elastic/utils/data/cycling_iterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-11-03T15:55:31.5006690Z copying torch/distributed/elastic/utils/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-11-03T15:55:31.5013840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-11-03T15:55:31.5014450Z copying torch/distributed/elastic/agent/server/health_check_server.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-11-03T15:55:31.5021940Z copying torch/distributed/elastic/agent/server/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-11-03T15:55:31.5029420Z copying torch/distributed/elastic/agent/server/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-11-03T15:55:31.5044440Z copying torch/distributed/elastic/agent/server/local_elastic_agent.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-11-03T15:55:31.5059720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-11-03T15:55:31.5060310Z copying torch/distributed/algorithms/_comm_hooks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-11-03T15:55:31.5068050Z copying torch/distributed/algorithms/_comm_hooks/default_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-11-03T15:55:31.5075060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-11-03T15:55:31.5075680Z copying torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-11-03T15:55:31.5083300Z copying torch/distributed/algorithms/_checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-11-03T15:55:31.5084630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-11-03T15:55:31.5085420Z copying torch/distributed/algorithms/model_averaging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-11-03T15:55:31.5086520Z copying torch/distributed/algorithms/model_averaging/averagers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-11-03T15:55:31.5093700Z copying torch/distributed/algorithms/model_averaging/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-11-03T15:55:31.5101530Z copying torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-11-03T15:55:31.5111350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-11-03T15:55:31.5112000Z 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-11-03T15:55:31.5120720Z 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-11-03T15:55:31.5128390Z 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-11-03T15:55:31.5140230Z copying torch/distributed/algorithms/ddp_comm_hooks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-11-03T15:55:31.5151100Z 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-11-03T15:55:31.5157320Z 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-11-03T15:55:31.5172830Z 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-11-03T15:55:31.5179900Z 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-11-03T15:55:31.5186670Z 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-11-03T15:55:31.5201240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-11-03T15:55:31.5201920Z copying torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-11-03T15:55:31.5209510Z copying torch/distributed/algorithms/_optimizer_overlap/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-11-03T15:55:31.5216690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-11-03T15:55:31.5217310Z copying torch/distributed/algorithms/_quantization/quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-11-03T15:55:31.5218720Z copying torch/distributed/algorithms/_quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-11-03T15:55:31.5220180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-11-03T15:55:31.5220970Z copying torch/distributed/_composable/fsdp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-11-03T15:55:31.5228650Z copying torch/distributed/_composable/fsdp/fully_shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-11-03T15:55:31.5236760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-11-03T15:55:31.5237300Z copying torch/distributed/fsdp/_fully_shard/_fsdp_api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-11-03T15:55:31.5244870Z copying torch/distributed/fsdp/_fully_shard/_fsdp_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-11-03T15:55:31.5251710Z copying torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-11-03T15:55:31.5265410Z copying torch/distributed/fsdp/_fully_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-11-03T15:55:31.5273020Z copying torch/distributed/fsdp/_fully_shard/_fsdp_param.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-11-03T15:55:31.5287090Z copying torch/distributed/fsdp/_fully_shard/_fsdp_init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-11-03T15:55:31.5295400Z copying torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-11-03T15:55:31.5309590Z copying torch/distributed/fsdp/_fully_shard/_fully_shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-11-03T15:55:31.5324020Z copying torch/distributed/fsdp/_fully_shard/_fsdp_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-11-03T15:55:31.5339240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint 2025-11-03T15:55:31.5339780Z copying torch/distributed/_shard/checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint 2025-11-03T15:55:31.5347860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-11-03T15:55:31.5348450Z copying torch/distributed/_shard/sharded_tensor/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-11-03T15:55:31.5356080Z copying torch/distributed/_shard/sharded_tensor/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-11-03T15:55:31.5363950Z copying torch/distributed/_shard/sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-11-03T15:55:31.5377890Z copying torch/distributed/_shard/sharded_tensor/logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-11-03T15:55:31.5385900Z copying torch/distributed/_shard/sharded_tensor/reshard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-11-03T15:55:31.5393790Z copying torch/distributed/_shard/sharded_tensor/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-11-03T15:55:31.5415160Z copying torch/distributed/_shard/sharded_tensor/shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-11-03T15:55:31.5422890Z copying torch/distributed/_shard/sharded_tensor/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-11-03T15:55:31.5431510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-11-03T15:55:31.5432070Z copying torch/distributed/_shard/sharding_plan/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-11-03T15:55:31.5439370Z copying torch/distributed/_shard/sharding_plan/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-11-03T15:55:31.5447110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-11-03T15:55:31.5447700Z copying torch/distributed/_shard/sharding_spec/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-11-03T15:55:31.5455440Z copying torch/distributed/_shard/sharding_spec/_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-11-03T15:55:31.5463180Z copying torch/distributed/_shard/sharding_spec/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-11-03T15:55:31.5471070Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-11-03T15:55:31.5480140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-11-03T15:55:31.5480690Z copying torch/distributed/_shard/sharded_optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-11-03T15:55:31.5489790Z copying torch/distributed/_shard/sharded_optim/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-11-03T15:55:31.5500010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-11-03T15:55:31.5500620Z 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-11-03T15:55:31.5508110Z 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-11-03T15:55:31.5515240Z copying torch/distributed/_shard/sharded_tensor/_ops/_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-11-03T15:55:31.5522030Z copying torch/distributed/_shard/sharded_tensor/_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-11-03T15:55:31.5529060Z 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-11-03T15:55:31.5536300Z copying torch/distributed/_shard/sharded_tensor/_ops/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-11-03T15:55:31.5544530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-11-03T15:55:31.5545340Z 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-11-03T15:55:31.5553220Z 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-11-03T15:55:31.5554320Z 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-11-03T15:55:31.5555490Z 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-11-03T15:55:31.5569990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-11-03T15:55:31.5570680Z copying torch/distributed/tensor/experimental/_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-11-03T15:55:31.5578040Z copying torch/distributed/tensor/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-11-03T15:55:31.5585360Z copying torch/distributed/tensor/experimental/_tp_transform.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-11-03T15:55:31.5586600Z copying torch/distributed/tensor/experimental/_register_sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-11-03T15:55:31.5594680Z copying torch/distributed/tensor/experimental/_func_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-11-03T15:55:31.5602850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-11-03T15:55:31.5603640Z copying torch/distributed/tensor/parallel/ddp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-11-03T15:55:31.5611160Z copying torch/distributed/tensor/parallel/fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-11-03T15:55:31.5618470Z copying torch/distributed/tensor/parallel/style.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-11-03T15:55:31.5654670Z copying torch/distributed/tensor/parallel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-11-03T15:55:31.5662450Z copying torch/distributed/tensor/parallel/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-11-03T15:55:31.5668570Z copying torch/distributed/tensor/parallel/loss.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-11-03T15:55:31.5682240Z copying torch/distributed/tensor/parallel/input_reshard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-11-03T15:55:31.5689440Z copying torch/distributed/tensor/parallel/_data_parallel_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-11-03T15:55:31.5696910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-11-03T15:55:31.5697450Z copying torch/distributed/tensor/_ops/_einsum_strategy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-11-03T15:55:31.5704330Z copying torch/distributed/tensor/_ops/_embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-11-03T15:55:31.5710900Z copying torch/distributed/tensor/_ops/_tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-11-03T15:55:31.5730070Z copying torch/distributed/tensor/_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-11-03T15:55:31.5737160Z copying torch/distributed/tensor/_ops/_conv_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-11-03T15:55:31.5743490Z copying torch/distributed/tensor/_ops/_pointwise_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-11-03T15:55:31.5759740Z copying torch/distributed/tensor/_ops/_matrix_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-11-03T15:55:31.5775360Z copying torch/distributed/tensor/_ops/_math_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-11-03T15:55:31.5796390Z copying torch/distributed/tensor/_ops/_common_rules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-11-03T15:55:31.5803320Z copying torch/distributed/tensor/_ops/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-11-03T15:55:31.5811440Z copying torch/distributed/tensor/_ops/_random_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-11-03T15:55:31.5819260Z copying torch/distributed/tensor/_ops/_view_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-11-03T15:55:31.5831770Z copying torch/distributed/tensor/_ops/_mask_buffer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-11-03T15:55:31.5839690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-11-03T15:55:31.5840200Z copying torch/distributed/tensor/debug/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-11-03T15:55:31.5847100Z copying torch/distributed/tensor/debug/_op_coverage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-11-03T15:55:31.5853770Z copying torch/distributed/tensor/debug/_visualize_sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-11-03T15:55:31.5860300Z copying torch/distributed/tensor/debug/_comm_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-11-03T15:55:31.5874880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_context_parallel 2025-11-03T15:55:31.5875600Z copying torch/distributed/tensor/experimental/_context_parallel/_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_context_parallel 2025-11-03T15:55:31.5896190Z copying torch/distributed/tensor/experimental/_context_parallel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_context_parallel 2025-11-03T15:55:31.5903810Z copying torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_context_parallel 2025-11-03T15:55:31.5911230Z copying torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_context_parallel 2025-11-03T15:55:31.5925340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-11-03T15:55:31.5925840Z copying torch/distributed/rpc/_testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-11-03T15:55:31.5934240Z copying torch/distributed/rpc/_testing/faulty_agent_backend_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-11-03T15:55:31.5942200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-11-03T15:55:31.5942660Z copying torch/autograd/_functions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-11-03T15:55:31.5950690Z copying torch/autograd/_functions/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-11-03T15:55:31.5957980Z copying torch/autograd/_functions/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-11-03T15:55:31.5967740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.5968220Z copying torch/fx/experimental/validator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.5969830Z copying torch/fx/experimental/meta_tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.5977410Z copying torch/fx/experimental/_dynamism.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.5984310Z copying torch/fx/experimental/partitioner_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.5992210Z copying torch/fx/experimental/recording.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6004930Z copying torch/fx/experimental/rewriter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6012170Z copying torch/fx/experimental/const_fold.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6026400Z copying torch/fx/experimental/accelerator_partitioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6027620Z copying torch/fx/experimental/normalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6035260Z copying torch/fx/experimental/_constant_symnode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6042720Z copying torch/fx/experimental/optimization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6056420Z copying torch/fx/experimental/refinement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6063500Z copying torch/fx/experimental/graph_gradual_typechecker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6077660Z copying torch/fx/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6078400Z copying torch/fx/experimental/sym_node.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6099780Z copying torch/fx/experimental/unify_refinements.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6107790Z copying torch/fx/experimental/merge_matmul.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6116000Z copying torch/fx/experimental/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6122820Z copying torch/fx/experimental/schema_type_annotation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6129850Z copying torch/fx/experimental/symbolic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6191900Z copying torch/fx/experimental/_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6199370Z copying torch/fx/experimental/_backward_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6206510Z copying torch/fx/experimental/proxy_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-11-03T15:55:31.6210600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6211100Z copying torch/fx/passes/net_min_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6225330Z copying torch/fx/passes/param_fetch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6232610Z copying torch/fx/passes/regional_inductor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6239700Z copying torch/fx/passes/tools_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6246800Z copying torch/fx/passes/split_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6253780Z copying torch/fx/passes/shape_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6260940Z copying torch/fx/passes/split_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6275670Z copying torch/fx/passes/runtime_assert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6289670Z copying torch/fx/passes/reinplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6304140Z copying torch/fx/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6311840Z copying torch/fx/passes/pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6318700Z copying torch/fx/passes/_tensorify_python_scalars.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6333470Z copying torch/fx/passes/fake_tensor_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6341190Z copying torch/fx/passes/operator_support.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6349130Z copying torch/fx/passes/annotate_getitem_nodes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6350170Z copying torch/fx/passes/graph_manipulation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6357160Z copying torch/fx/passes/graph_drawer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6370970Z copying torch/fx/passes/splitter_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6385060Z copying torch/fx/passes/graph_transform_observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-11-03T15:55:31.6394320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-11-03T15:55:31.6394870Z copying torch/fx/experimental/unification/dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-11-03T15:55:31.6402510Z copying torch/fx/experimental/unification/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-11-03T15:55:31.6409850Z copying torch/fx/experimental/unification/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-11-03T15:55:31.6417070Z copying torch/fx/experimental/unification/unification_tools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-11-03T15:55:31.6424480Z copying torch/fx/experimental/unification/variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-11-03T15:55:31.6431680Z copying torch/fx/experimental/unification/more.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-11-03T15:55:31.6438520Z copying torch/fx/experimental/unification/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-11-03T15:55:31.6446210Z copying torch/fx/experimental/unification/match.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-11-03T15:55:31.6454850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-11-03T15:55:31.6455470Z copying torch/fx/experimental/migrate_gradual_types/constraint.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-11-03T15:55:31.6469880Z 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-11-03T15:55:31.6489790Z copying torch/fx/experimental/migrate_gradual_types/util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-11-03T15:55:31.6500300Z copying torch/fx/experimental/migrate_gradual_types/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-11-03T15:55:31.6501060Z copying torch/fx/experimental/migrate_gradual_types/operation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-11-03T15:55:31.6508590Z 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-11-03T15:55:31.6516080Z 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-11-03T15:55:31.6522340Z 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-11-03T15:55:31.6524870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-11-03T15:55:31.6525700Z copying torch/fx/experimental/unification/multipledispatch/dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-11-03T15:55:31.6532960Z copying torch/fx/experimental/unification/multipledispatch/variadic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-11-03T15:55:31.6539920Z copying torch/fx/experimental/unification/multipledispatch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-11-03T15:55:31.6547030Z copying torch/fx/experimental/unification/multipledispatch/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-11-03T15:55:31.6554310Z copying torch/fx/experimental/unification/multipledispatch/conflict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-11-03T15:55:31.6561260Z copying torch/fx/experimental/unification/multipledispatch/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-11-03T15:55:31.6569260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-11-03T15:55:31.6569840Z copying torch/fx/passes/infra/partitioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-11-03T15:55:31.6584540Z copying torch/fx/passes/infra/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-11-03T15:55:31.6591400Z copying torch/fx/passes/infra/pass_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-11-03T15:55:31.6598180Z copying torch/fx/passes/infra/pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-11-03T15:55:31.6605210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-11-03T15:55:31.6605660Z copying torch/fx/passes/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-11-03T15:55:31.6606790Z copying torch/fx/passes/backends/cudagraphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-11-03T15:55:31.6608560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-11-03T15:55:31.6609260Z copying torch/fx/passes/tests/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-11-03T15:55:31.6610330Z copying torch/fx/passes/tests/test_pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-11-03T15:55:31.6618390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-11-03T15:55:31.6618870Z copying torch/fx/passes/utils/source_matcher_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-11-03T15:55:31.6626580Z 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-11-03T15:55:31.6633580Z copying torch/fx/passes/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-11-03T15:55:31.6641090Z copying torch/fx/passes/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-11-03T15:55:31.6649590Z copying torch/fx/passes/utils/matcher_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-11-03T15:55:31.6663530Z copying torch/fx/passes/utils/fuser_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-11-03T15:55:31.6671270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect 2025-11-03T15:55:31.6671720Z copying torch/fx/passes/dialect/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect 2025-11-03T15:55:31.6673350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-11-03T15:55:31.6674060Z copying torch/fx/passes/dialect/common/cse_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-11-03T15:55:31.6681720Z copying torch/fx/passes/dialect/common/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-11-03T15:55:31.6683180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-11-03T15:55:31.6683890Z copying torch/cuda/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-11-03T15:55:31.6691340Z copying torch/cuda/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-11-03T15:55:31.6698640Z copying torch/cuda/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-11-03T15:55:31.6705730Z copying torch/cuda/amp/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-11-03T15:55:31.6712870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum 2025-11-03T15:55:31.6713330Z copying torch/backends/opt_einsum/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum 2025-11-03T15:55:31.6720750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha 2025-11-03T15:55:31.6721430Z copying torch/backends/mha/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha 2025-11-03T15:55:31.6728810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack 2025-11-03T15:55:31.6729460Z copying torch/backends/nnpack/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack 2025-11-03T15:55:31.6736960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps 2025-11-03T15:55:31.6737980Z copying torch/backends/mps/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps 2025-11-03T15:55:31.6745420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu 2025-11-03T15:55:31.6745860Z copying torch/backends/cpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu 2025-11-03T15:55:31.6753900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-11-03T15:55:31.6754350Z copying torch/backends/_coreml/preprocess.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-11-03T15:55:31.6762180Z copying torch/backends/_coreml/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-11-03T15:55:31.6763280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda 2025-11-03T15:55:31.6763960Z copying torch/backends/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda 2025-11-03T15:55:31.6778890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized 2025-11-03T15:55:31.6779350Z copying torch/backends/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized 2025-11-03T15:55:31.6787150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/miopen 2025-11-03T15:55:31.6787630Z copying torch/backends/miopen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/miopen 2025-11-03T15:55:31.6795050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl 2025-11-03T15:55:31.6795600Z copying torch/backends/mkl/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl 2025-11-03T15:55:31.6803670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack 2025-11-03T15:55:31.6804120Z copying torch/backends/xnnpack/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack 2025-11-03T15:55:31.6812380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai 2025-11-03T15:55:31.6812830Z copying torch/backends/kleidiai/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai 2025-11-03T15:55:31.6820740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt 2025-11-03T15:55:31.6821410Z copying torch/backends/cusparselt/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt 2025-11-03T15:55:31.6828790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn 2025-11-03T15:55:31.6829410Z copying torch/backends/mkldnn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn 2025-11-03T15:55:31.6837290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-11-03T15:55:31.6837710Z copying torch/backends/xeon/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-11-03T15:55:31.6838720Z copying torch/backends/xeon/run_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-11-03T15:55:31.6874770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-11-03T15:55:31.6875200Z copying torch/backends/_nnapi/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-11-03T15:55:31.6876290Z copying torch/backends/_nnapi/serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-11-03T15:55:31.6913530Z copying torch/backends/_nnapi/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-11-03T15:55:31.6920700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp 2025-11-03T15:55:31.6921130Z copying torch/backends/openmp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp 2025-11-03T15:55:31.6927730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-11-03T15:55:31.6928150Z copying torch/backends/cudnn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-11-03T15:55:31.6934150Z copying torch/backends/cudnn/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-11-03T15:55:31.6941720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-11-03T15:55:31.6942210Z copying torch/masked/maskedtensor/binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-11-03T15:55:31.6948770Z copying torch/masked/maskedtensor/creation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-11-03T15:55:31.6955390Z copying torch/masked/maskedtensor/_ops_refs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-11-03T15:55:31.6966890Z copying torch/masked/maskedtensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-11-03T15:55:31.6973430Z copying torch/masked/maskedtensor/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-11-03T15:55:31.6980270Z copying torch/masked/maskedtensor/unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-11-03T15:55:31.6987140Z copying torch/masked/maskedtensor/reductions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-11-03T15:55:31.6994650Z copying torch/masked/maskedtensor/passthrough.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-11-03T15:55:31.7002550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-11-03T15:55:31.7003020Z copying torch/optim/_multi_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-11-03T15:55:31.7010490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-11-03T15:55:31.7010950Z copying torch/_inductor/analysis/device_info.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-11-03T15:55:31.7017620Z copying torch/_inductor/analysis/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-11-03T15:55:31.7018470Z copying torch/_inductor/analysis/profile_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-11-03T15:55:31.7044860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7045340Z copying torch/_inductor/runtime/cache_dir_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7051960Z copying torch/_inductor/runtime/triton_heuristics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7053750Z copying torch/_inductor/runtime/runtime_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7061450Z copying torch/_inductor/runtime/halide_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7069030Z copying torch/_inductor/runtime/coordinate_descent_tuner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7070020Z copying torch/_inductor/runtime/triton_compat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7077760Z copying torch/_inductor/runtime/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7078390Z copying torch/_inductor/runtime/compile_tasks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7084450Z copying torch/_inductor/runtime/triton_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7097680Z copying torch/_inductor/runtime/autotune_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7109720Z copying torch/_inductor/runtime/hints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7116420Z copying torch/_inductor/runtime/static_cuda_launcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7123120Z copying torch/_inductor/runtime/benchmarking.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7130280Z copying torch/_inductor/runtime/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-11-03T15:55:31.7141360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7141880Z copying torch/_inductor/codegen/cpp_grouped_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7155620Z copying torch/_inductor/codegen/cpp_wrapper_gpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7175030Z copying torch/_inductor/codegen/wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7217790Z copying torch/_inductor/codegen/mps_device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7219520Z copying torch/_inductor/codegen/triton_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7227030Z copying torch/_inductor/codegen/triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7267800Z copying torch/_inductor/codegen/cpp_bmm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7275140Z copying torch/_inductor/codegen/mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7289790Z copying torch/_inductor/codegen/aoti_hipify_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7298090Z copying torch/_inductor/codegen/simd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7299640Z copying torch/_inductor/codegen/triton_combo_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7314530Z copying torch/_inductor/codegen/memory_planning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7328760Z copying torch/_inductor/codegen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7329610Z copying torch/_inductor/codegen/cpp_flex_attention_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7344740Z copying torch/_inductor/codegen/wrapper_fxir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7360180Z copying torch/_inductor/codegen/cpp_micro_gemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7382930Z copying torch/_inductor/codegen/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7424700Z copying torch/_inductor/codegen/cpp_wrapper_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7426350Z copying torch/_inductor/codegen/block_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7434780Z copying torch/_inductor/codegen/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7467000Z copying torch/_inductor/codegen/cpp_wrapper_mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7475480Z copying torch/_inductor/codegen/cpp_template_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7489500Z copying torch/_inductor/codegen/cpp_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7510680Z copying torch/_inductor/codegen/segmented_tree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7518470Z copying torch/_inductor/codegen/cpu_device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7526110Z copying torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7541050Z copying torch/_inductor/codegen/triton_split_scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7548500Z copying torch/_inductor/codegen/halide.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7569680Z copying torch/_inductor/codegen/cpp_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7577580Z copying torch/_inductor/codegen/cuda_combined_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7585160Z copying torch/_inductor/codegen/multi_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7599440Z copying torch/_inductor/codegen/subgraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7607330Z copying torch/_inductor/codegen/python_wrapper_mtia.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7614420Z copying torch/_inductor/codegen/cpp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7648050Z copying torch/_inductor/codegen/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7665020Z copying torch/_inductor/codegen/simd_kernel_features.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-11-03T15:55:31.7678130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-11-03T15:55:31.7678740Z copying torch/_inductor/template_heuristics/params.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-11-03T15:55:31.7684810Z copying torch/_inductor/template_heuristics/triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-11-03T15:55:31.7713840Z copying torch/_inductor/template_heuristics/contiguous_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-11-03T15:55:31.7720370Z copying torch/_inductor/template_heuristics/registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-11-03T15:55:31.7726450Z copying torch/_inductor/template_heuristics/gemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-11-03T15:55:31.7732080Z copying torch/_inductor/template_heuristics/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-11-03T15:55:31.7748200Z copying torch/_inductor/template_heuristics/triton_addmm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-11-03T15:55:31.7754690Z copying torch/_inductor/template_heuristics/decompose_k.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-11-03T15:55:31.7760970Z copying torch/_inductor/template_heuristics/aten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-11-03T15:55:31.7767230Z copying torch/_inductor/template_heuristics/base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-11-03T15:55:31.7774040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-11-03T15:55:31.7774530Z copying torch/_inductor/compile_worker/timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-11-03T15:55:31.7781940Z copying torch/_inductor/compile_worker/tracked_process_pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-11-03T15:55:31.7788680Z copying torch/_inductor/compile_worker/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-11-03T15:55:31.7789420Z copying torch/_inductor/compile_worker/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-11-03T15:55:31.7796390Z copying torch/_inductor/compile_worker/subproc_pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-11-03T15:55:31.7821100Z copying torch/_inductor/compile_worker/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-11-03T15:55:31.7828910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-11-03T15:55:31.7829460Z copying torch/_inductor/autoheuristic/autoheuristic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-11-03T15:55:31.7836510Z copying torch/_inductor/autoheuristic/autoheuristic_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-11-03T15:55:31.7844220Z copying torch/_inductor/autoheuristic/learned_heuristic_controller.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-11-03T15:55:31.7851470Z copying torch/_inductor/autoheuristic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-11-03T15:55:31.7852260Z copying torch/_inductor/autoheuristic/learnedheuristic_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-11-03T15:55:31.7862380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.7862840Z copying torch/_inductor/fx_passes/post_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.7884150Z copying torch/_inductor/fx_passes/fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.7891330Z copying torch/_inductor/fx_passes/replace_random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.7898810Z copying torch/_inductor/fx_passes/ddp_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.7915200Z copying torch/_inductor/fx_passes/numeric_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.7922200Z copying torch/_inductor/fx_passes/decompose_mem_bound_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.7929880Z copying torch/_inductor/fx_passes/reinplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.7943060Z copying torch/_inductor/fx_passes/quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.7973260Z copying torch/_inductor/fx_passes/split_cat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8002810Z copying torch/_inductor/fx_passes/dedupe_symint_uses.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8011990Z copying torch/_inductor/fx_passes/efficient_conv_bn_eval.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8018930Z copying torch/_inductor/fx_passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8019680Z copying torch/_inductor/fx_passes/group_batch_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8021360Z copying torch/_inductor/fx_passes/overlap_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8034510Z copying torch/_inductor/fx_passes/pre_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8049020Z copying torch/_inductor/fx_passes/binary_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8062410Z copying torch/_inductor/fx_passes/fuse_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8076930Z copying torch/_inductor/fx_passes/micro_pipeline_tp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8091760Z copying torch/_inductor/fx_passes/memory_estimator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8105270Z copying torch/_inductor/fx_passes/overlap_preserving_bucketer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8120750Z copying torch/_inductor/fx_passes/joint_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8134810Z copying torch/_inductor/fx_passes/bucketing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8149410Z copying torch/_inductor/fx_passes/control_dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8157320Z copying torch/_inductor/fx_passes/b2b_gemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8173390Z copying torch/_inductor/fx_passes/mkldnn_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8195990Z copying torch/_inductor/fx_passes/pad_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8210970Z copying torch/_inductor/fx_passes/freezing_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8219180Z copying torch/_inductor/fx_passes/misc_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-11-03T15:55:31.8227850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/lookup_table 2025-11-03T15:55:31.8228330Z copying torch/_inductor/lookup_table/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/lookup_table 2025-11-03T15:55:31.8236670Z copying torch/_inductor/lookup_table/choices.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/lookup_table 2025-11-03T15:55:31.8245500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-11-03T15:55:31.8246170Z copying torch/_inductor/kernel/mm_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-11-03T15:55:31.8253940Z copying torch/_inductor/kernel/mm_grouped.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-11-03T15:55:31.8268710Z copying torch/_inductor/kernel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-11-03T15:55:31.8276280Z copying torch/_inductor/kernel/mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-11-03T15:55:31.8298870Z copying torch/_inductor/kernel/bmm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-11-03T15:55:31.8306810Z copying torch/_inductor/kernel/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-11-03T15:55:31.8320360Z copying torch/_inductor/kernel/mm_plus_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-11-03T15:55:31.8328900Z copying torch/_inductor/kernel/custom_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-11-03T15:55:31.8330550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-11-03T15:55:31.8331280Z copying torch/_inductor/package/package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-11-03T15:55:31.8344850Z copying torch/_inductor/package/build_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-11-03T15:55:31.8355670Z copying torch/_inductor/package/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-11-03T15:55:31.8363260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching 2025-11-03T15:55:31.8363790Z copying torch/_inductor/runtime/caching/interfaces.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching 2025-11-03T15:55:31.8377090Z copying torch/_inductor/runtime/caching/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching 2025-11-03T15:55:31.8384280Z copying torch/_inductor/runtime/caching/locks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching 2025-11-03T15:55:31.8391070Z copying torch/_inductor/runtime/caching/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching 2025-11-03T15:55:31.8397560Z copying torch/_inductor/runtime/caching/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching 2025-11-03T15:55:31.8404370Z copying torch/_inductor/runtime/caching/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching 2025-11-03T15:55:31.8411350Z copying torch/_inductor/runtime/caching/exceptions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching 2025-11-03T15:55:31.8418750Z copying torch/_inductor/runtime/caching/implementations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching 2025-11-03T15:55:31.8427410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-11-03T15:55:31.8427940Z copying torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-11-03T15:55:31.8435550Z copying torch/_inductor/codegen/cutedsl/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-11-03T15:55:31.8442450Z copying torch/_inductor/codegen/cutedsl/cutedsl_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-11-03T15:55:31.8450010Z copying torch/_inductor/codegen/cutedsl/cutedsl_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-11-03T15:55:31.8463270Z copying torch/_inductor/codegen/cutedsl/cutedsl_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-11-03T15:55:31.8470710Z copying torch/_inductor/codegen/cutedsl/_cutedsl_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-11-03T15:55:31.8473290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-11-03T15:55:31.8473940Z copying torch/_inductor/codegen/cuda/cutlass_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-11-03T15:55:31.8487780Z copying torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-11-03T15:55:31.8495170Z copying torch/_inductor/codegen/cuda/cuda_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-11-03T15:55:31.8502890Z copying torch/_inductor/codegen/cuda/gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-11-03T15:55:31.8504340Z copying torch/_inductor/codegen/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-11-03T15:55:31.8505440Z copying torch/_inductor/codegen/cuda/cutlass_python_evt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-11-03T15:55:31.8512580Z copying torch/_inductor/codegen/cuda/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-11-03T15:55:31.8520110Z copying torch/_inductor/codegen/cuda/cuda_env.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-11-03T15:55:31.8527100Z copying torch/_inductor/codegen/cuda/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-11-03T15:55:31.8541500Z copying torch/_inductor/codegen/cuda/cutlass_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-11-03T15:55:31.8548920Z copying torch/_inductor/codegen/cuda/cuda_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-11-03T15:55:31.8564570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-11-03T15:55:31.8565060Z copying torch/_inductor/codegen/xpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-11-03T15:55:31.8566190Z copying torch/_inductor/codegen/xpu/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-11-03T15:55:31.8575090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia 2025-11-03T15:55:31.8575580Z copying torch/_inductor/codegen/mtia/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia 2025-11-03T15:55:31.8576830Z copying torch/_inductor/codegen/mtia/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia 2025-11-03T15:55:31.8585750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-11-03T15:55:31.8586260Z copying torch/_inductor/codegen/rocm/ck_tile_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-11-03T15:55:31.8594210Z copying torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-11-03T15:55:31.8602040Z copying torch/_inductor/codegen/rocm/rocm_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-11-03T15:55:31.8609390Z copying torch/_inductor/codegen/rocm/rocm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-11-03T15:55:31.8616310Z copying torch/_inductor/codegen/rocm/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-11-03T15:55:31.8617070Z copying torch/_inductor/codegen/rocm/compile_command.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-11-03T15:55:31.8624420Z copying torch/_inductor/codegen/rocm/rocm_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-11-03T15:55:31.8632210Z copying torch/_inductor/codegen/rocm/ck_conv_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-11-03T15:55:31.8646090Z copying torch/_inductor/codegen/rocm/rocm_template_buffer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-11-03T15:55:31.8653200Z copying torch/_inductor/codegen/rocm/ck_universal_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-11-03T15:55:31.8669350Z copying torch/_inductor/codegen/rocm/ck_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-11-03T15:55:31.8677120Z copying torch/_inductor/codegen/rocm/rocm_benchmark_request.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-11-03T15:55:31.8684010Z copying torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-11-03T15:55:31.8699730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-11-03T15:55:31.8700530Z 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-11-03T15:55:31.8714680Z 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-11-03T15:55:31.8715570Z 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-11-03T15:55:31.8723360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports 2025-11-03T15:55:31.8724170Z 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-11-03T15:55:31.8725560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-11-03T15:55:31.8726480Z 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-11-03T15:55:31.8733740Z 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-11-03T15:55:31.8741330Z 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-11-03T15:55:31.8749040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot 2025-11-03T15:55:31.8749910Z 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-11-03T15:55:31.8757650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-11-03T15:55:31.8758510Z 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-11-03T15:55:31.8765750Z 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-11-03T15:55:31.8773470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-11-03T15:55:31.8774070Z copying torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-11-03T15:55:31.8781760Z copying torch/_inductor/autoheuristic/artifacts/_PadMMA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-11-03T15:55:31.8789030Z copying torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-11-03T15:55:31.8804110Z copying torch/_inductor/autoheuristic/artifacts/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-11-03T15:55:31.8804890Z copying torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-11-03T15:55:31.8819870Z copying torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-11-03T15:55:31.8830950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-11-03T15:55:31.8831590Z 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-11-03T15:55:31.8845700Z 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-11-03T15:55:31.8853250Z 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-11-03T15:55:31.8867450Z 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-11-03T15:55:31.8881790Z 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-11-03T15:55:31.8889720Z 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-11-03T15:55:31.8905670Z 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-11-03T15:55:31.8919080Z 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-11-03T15:55:31.8926730Z 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-11-03T15:55:31.8934860Z 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-11-03T15:55:31.8942080Z 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-11-03T15:55:31.8956430Z copying torch/_inductor/fx_passes/serialized_patterns/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-11-03T15:55:31.8957200Z 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-11-03T15:55:31.8965340Z 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-11-03T15:55:31.8973170Z 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-11-03T15:55:31.8981590Z 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-11-03T15:55:31.8989310Z 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-11-03T15:55:31.9003740Z 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-11-03T15:55:31.9011750Z 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-11-03T15:55:31.9020840Z 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-11-03T15:55:31.9028350Z 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-11-03T15:55:31.9035760Z 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-11-03T15:55:31.9044120Z 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-11-03T15:55:31.9051730Z 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-11-03T15:55:31.9059160Z 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-11-03T15:55:31.9066740Z 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-11-03T15:55:31.9085190Z 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-11-03T15:55:31.9096690Z 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-11-03T15:55:31.9105030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-11-03T15:55:31.9105530Z copying torch/_inductor/kernel/flex/flex_decoding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-11-03T15:55:31.9113720Z copying torch/_inductor/kernel/flex/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-11-03T15:55:31.9120430Z copying torch/_inductor/kernel/flex/flex_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-11-03T15:55:31.9128000Z copying torch/_inductor/kernel/flex/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-11-03T15:55:31.9136490Z copying torch/_inductor/kernel/flex/flex_flash_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-11-03T15:55:31.9144900Z copying torch/_inductor/kernel/flex/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-11-03T15:55:31.9159640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark 2025-11-03T15:55:31.9160130Z copying torch/utils/benchmark/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark 2025-11-03T15:55:31.9168390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-11-03T15:55:31.9168820Z copying torch/utils/_sympy/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-11-03T15:55:31.9170490Z copying torch/utils/_sympy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-11-03T15:55:31.9171480Z copying torch/utils/_sympy/symbol.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-11-03T15:55:31.9179010Z copying torch/utils/_sympy/numbers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-11-03T15:55:31.9186560Z copying torch/utils/_sympy/reference.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-11-03T15:55:31.9193930Z copying torch/utils/_sympy/singleton_int.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-11-03T15:55:31.9201330Z copying torch/utils/_sympy/value_ranges.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-11-03T15:55:31.9214720Z copying torch/utils/_sympy/printers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-11-03T15:55:31.9228870Z copying torch/utils/_sympy/solve.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-11-03T15:55:31.9236240Z copying torch/utils/_sympy/interp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-11-03T15:55:31.9243790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-11-03T15:55:31.9244370Z copying torch/utils/serialization/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-11-03T15:55:31.9252270Z copying torch/utils/serialization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-11-03T15:55:31.9260040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat 2025-11-03T15:55:31.9260560Z copying torch/utils/backcompat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat 2025-11-03T15:55:31.9268490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-11-03T15:55:31.9268910Z copying torch/utils/hipify/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-11-03T15:55:31.9276410Z copying torch/utils/hipify/cuda_to_hip_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-11-03T15:55:31.9330170Z copying torch/utils/hipify/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-11-03T15:55:31.9338030Z copying torch/utils/hipify/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-11-03T15:55:31.9345470Z copying torch/utils/hipify/hipify_python.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-11-03T15:55:31.9360340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-11-03T15:55:31.9360860Z copying torch/utils/viz/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-11-03T15:55:31.9362190Z copying torch/utils/viz/_cycles.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-11-03T15:55:31.9363820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-11-03T15:55:31.9364490Z copying torch/utils/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-11-03T15:55:31.9365530Z copying torch/utils/jit/log_extract.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-11-03T15:55:31.9374270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-11-03T15:55:31.9374740Z copying torch/utils/tensorboard/_pytorch_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-11-03T15:55:31.9376080Z copying torch/utils/tensorboard/_proto_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-11-03T15:55:31.9377350Z copying torch/utils/tensorboard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-11-03T15:55:31.9384830Z copying torch/utils/tensorboard/_embedding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-11-03T15:55:31.9392100Z copying torch/utils/tensorboard/_onnx_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-11-03T15:55:31.9393080Z copying torch/utils/tensorboard/summary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-11-03T15:55:31.9394990Z copying torch/utils/tensorboard/_convert_np.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-11-03T15:55:31.9401920Z copying torch/utils/tensorboard/writer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-11-03T15:55:31.9402940Z copying torch/utils/tensorboard/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-11-03T15:55:31.9411430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-11-03T15:55:31.9411870Z copying torch/utils/model_dump/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-11-03T15:55:31.9427000Z copying torch/utils/model_dump/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-11-03T15:55:31.9435260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-11-03T15:55:31.9435760Z copying torch/utils/data/graph_settings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-11-03T15:55:31.9442960Z copying torch/utils/data/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-11-03T15:55:31.9450670Z copying torch/utils/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-11-03T15:55:31.9458240Z copying torch/utils/data/dataset.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-11-03T15:55:31.9459420Z copying torch/utils/data/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-11-03T15:55:31.9467320Z copying torch/utils/data/backward_compatibility.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-11-03T15:55:31.9474140Z copying torch/utils/data/dataloader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-11-03T15:55:31.9495840Z copying torch/utils/data/sampler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-11-03T15:55:31.9497380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-11-03T15:55:31.9498210Z copying torch/utils/_strobelight/cli_function_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-11-03T15:55:31.9505560Z copying torch/utils/_strobelight/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-11-03T15:55:31.9507330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-11-03T15:55:31.9508120Z copying torch/utils/benchmark/op_fuzzers/binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-11-03T15:55:31.9515460Z copying torch/utils/benchmark/op_fuzzers/sparse_binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-11-03T15:55:31.9522240Z copying torch/utils/benchmark/op_fuzzers/sparse_unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-11-03T15:55:31.9529770Z copying torch/utils/benchmark/op_fuzzers/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-11-03T15:55:31.9530540Z copying torch/utils/benchmark/op_fuzzers/spectral.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-11-03T15:55:31.9537690Z copying torch/utils/benchmark/op_fuzzers/unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-11-03T15:55:31.9545840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-11-03T15:55:31.9546330Z copying torch/utils/benchmark/utils/timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-11-03T15:55:31.9561230Z copying torch/utils/benchmark/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-11-03T15:55:31.9561960Z copying torch/utils/benchmark/utils/sparse_fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-11-03T15:55:31.9569800Z copying torch/utils/benchmark/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-11-03T15:55:31.9578330Z copying torch/utils/benchmark/utils/compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-11-03T15:55:31.9585430Z copying torch/utils/benchmark/utils/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-11-03T15:55:31.9586810Z copying torch/utils/benchmark/utils/cpp_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-11-03T15:55:31.9594900Z copying torch/utils/benchmark/utils/compare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-11-03T15:55:31.9595700Z copying torch/utils/benchmark/utils/_stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-11-03T15:55:31.9604650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-11-03T15:55:31.9605300Z copying torch/utils/benchmark/examples/op_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-11-03T15:55:31.9606560Z copying torch/utils/benchmark/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-11-03T15:55:31.9607350Z copying torch/utils/benchmark/examples/simple_timeit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-11-03T15:55:31.9615560Z copying torch/utils/benchmark/examples/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-11-03T15:55:31.9622620Z copying torch/utils/benchmark/examples/spectral_ops_fuzz_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-11-03T15:55:31.9629450Z copying torch/utils/benchmark/examples/compare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-11-03T15:55:31.9637720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-11-03T15:55:31.9638370Z 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-11-03T15:55:31.9653520Z copying torch/utils/benchmark/utils/valgrind_wrapper/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-11-03T15:55:31.9655110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-11-03T15:55:31.9655850Z copying torch/utils/data/_utils/fetch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-11-03T15:55:31.9664000Z copying torch/utils/data/_utils/worker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-11-03T15:55:31.9678110Z copying torch/utils/data/_utils/collate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-11-03T15:55:31.9679060Z copying torch/utils/data/_utils/pin_memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-11-03T15:55:31.9686160Z copying torch/utils/data/_utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-11-03T15:55:31.9693730Z copying torch/utils/data/_utils/signal_handling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-11-03T15:55:31.9701460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-11-03T15:55:31.9701960Z copying torch/utils/data/datapipes/_decorator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-11-03T15:55:31.9709470Z copying torch/utils/data/datapipes/_typing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-11-03T15:55:31.9710600Z copying torch/utils/data/datapipes/_hook_iterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-11-03T15:55:31.9718640Z copying torch/utils/data/datapipes/datapipe.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-11-03T15:55:31.9732650Z copying torch/utils/data/datapipes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-11-03T15:55:31.9740740Z copying torch/utils/data/datapipes/gen_pyi.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-11-03T15:55:31.9742590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-11-03T15:55:31.9743420Z copying torch/utils/data/datapipes/dataframe/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-11-03T15:55:31.9752230Z copying torch/utils/data/datapipes/dataframe/datapipes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-11-03T15:55:31.9753070Z copying torch/utils/data/datapipes/dataframe/dataframe_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-11-03T15:55:31.9760590Z copying torch/utils/data/datapipes/dataframe/structures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-11-03T15:55:31.9767450Z copying torch/utils/data/datapipes/dataframe/dataframes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-11-03T15:55:31.9777520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-11-03T15:55:31.9778180Z copying torch/utils/data/datapipes/iter/fileopener.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-11-03T15:55:31.9779550Z copying torch/utils/data/datapipes/iter/callable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-11-03T15:55:31.9781020Z copying torch/utils/data/datapipes/iter/sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-11-03T15:55:31.9782170Z copying torch/utils/data/datapipes/iter/grouping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-11-03T15:55:31.9783400Z copying torch/utils/data/datapipes/iter/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-11-03T15:55:31.9792930Z copying torch/utils/data/datapipes/iter/selecting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-11-03T15:55:31.9793830Z copying torch/utils/data/datapipes/iter/combining.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-11-03T15:55:31.9795290Z copying torch/utils/data/datapipes/iter/filelister.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-11-03T15:55:31.9796520Z copying torch/utils/data/datapipes/iter/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-11-03T15:55:31.9804440Z copying torch/utils/data/datapipes/iter/combinatorics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-11-03T15:55:31.9805230Z copying torch/utils/data/datapipes/iter/streamreader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-11-03T15:55:31.9806430Z copying torch/utils/data/datapipes/iter/routeddecoder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-11-03T15:55:31.9808810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-11-03T15:55:31.9809350Z copying torch/utils/data/datapipes/utils/decoder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-11-03T15:55:31.9816780Z copying torch/utils/data/datapipes/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-11-03T15:55:31.9817420Z copying torch/utils/data/datapipes/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-11-03T15:55:31.9825770Z copying torch/utils/data/datapipes/utils/snapshot.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-11-03T15:55:31.9833760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-11-03T15:55:31.9834280Z copying torch/utils/data/datapipes/map/callable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-11-03T15:55:31.9835560Z copying torch/utils/data/datapipes/map/grouping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-11-03T15:55:31.9836800Z copying torch/utils/data/datapipes/map/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-11-03T15:55:31.9844310Z copying torch/utils/data/datapipes/map/combining.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-11-03T15:55:31.9845180Z copying torch/utils/data/datapipes/map/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-11-03T15:55:31.9853030Z copying torch/utils/data/datapipes/map/combinatorics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-11-03T15:55:31.9854500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nativert/backends 2025-11-03T15:55:31.9855230Z copying torch/nativert/backends/_lower_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nativert/backends 2025-11-03T15:55:31.9862430Z copying torch/nativert/backends/_lowered_aoti_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nativert/backends 2025-11-03T15:55:31.9869320Z copying torch/nativert/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nativert/backends 2025-11-03T15:55:31.9871870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-11-03T15:55:31.9872330Z copying torch/quantization/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-11-03T15:55:31.9880380Z copying torch/quantization/fx/fusion_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-11-03T15:55:31.9887870Z copying torch/quantization/fx/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-11-03T15:55:31.9895400Z copying torch/quantization/fx/quantization_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-11-03T15:55:31.9902740Z copying torch/quantization/fx/convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-11-03T15:55:31.9910160Z copying torch/quantization/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-11-03T15:55:31.9917040Z copying torch/quantization/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-11-03T15:55:31.9923950Z copying torch/quantization/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-11-03T15:55:31.9931560Z copying torch/quantization/fx/fuse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-11-03T15:55:31.9938680Z copying torch/quantization/fx/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-11-03T15:55:31.9945820Z copying torch/quantization/fx/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-11-03T15:55:31.9952720Z copying torch/quantization/fx/quantization_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-11-03T15:55:31.9964790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:31.9965300Z copying torch/testing/_internal/common_dtype.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:31.9973420Z copying torch/testing/_internal/common_pruning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:31.9980800Z copying torch/testing/_internal/fake_config_module3.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:31.9988590Z copying torch/testing/_internal/hop_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0003090Z copying torch/testing/_internal/triton_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0018330Z copying torch/testing/_internal/static_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0026020Z copying torch/testing/_internal/subclasses.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0033740Z copying torch/testing/_internal/common_nn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0036040Z copying torch/testing/_internal/custom_op_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0049740Z copying torch/testing/_internal/fake_config_module2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0057160Z copying torch/testing/_internal/autocast_test_lists.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0071620Z copying torch/testing/_internal/common_fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0093950Z copying torch/testing/_internal/two_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0101230Z copying torch/testing/_internal/torchbind_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0108790Z copying torch/testing/_internal/common_optimizers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0144140Z copying torch/testing/_internal/common_device_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0166710Z copying torch/testing/_internal/autograd_function_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0181570Z copying torch/testing/_internal/common_mkldnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0188480Z copying torch/testing/_internal/inductor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0196110Z copying torch/testing/_internal/common_distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0220390Z copying torch/testing/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0221210Z copying torch/testing/_internal/common_methods_invocations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0228390Z copying torch/testing/_internal/custom_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0241470Z copying torch/testing/_internal/logging_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0252580Z copying torch/testing/_internal/hypothesis_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0260040Z copying torch/testing/_internal/common_cuda.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0271930Z copying torch/testing/_internal/common_quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0301040Z copying torch/testing/_internal/common_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0345330Z copying torch/testing/_internal/common_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0353260Z copying torch/testing/_internal/common_mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0354430Z copying torch/testing/_internal/jit_metaprogramming_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0367660Z copying torch/testing/_internal/dynamo_test_failures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0374820Z copying torch/testing/_internal/check_kernel_launches.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0382330Z copying torch/testing/_internal/common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0426940Z copying torch/testing/_internal/quantization_torch_package_models.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0434070Z copying torch/testing/_internal/common_quantized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0447600Z copying torch/testing/_internal/common_dist_composable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0453770Z copying torch/testing/_internal/common_subclass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0461240Z copying torch/testing/_internal/composite_compliance.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0476050Z copying torch/testing/_internal/logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0483290Z copying torch/testing/_internal/dist_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0490030Z copying torch/testing/_internal/fake_config_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0496600Z copying torch/testing/_internal/jit_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-11-03T15:55:32.0510380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-11-03T15:55:32.0510900Z copying torch/testing/_internal/generated/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-11-03T15:55:32.0512140Z copying torch/testing/_internal/generated/annotated_fn_args.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-11-03T15:55:32.0516980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-11-03T15:55:32.0517510Z copying torch/testing/_internal/opinfo/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-11-03T15:55:32.0525380Z copying torch/testing/_internal/opinfo/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-11-03T15:55:32.0554180Z copying torch/testing/_internal/opinfo/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-11-03T15:55:32.0562300Z copying torch/testing/_internal/opinfo/refs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-11-03T15:55:32.0570400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-11-03T15:55:32.0570940Z copying torch/testing/_internal/test_module/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-11-03T15:55:32.0572030Z copying torch/testing/_internal/test_module/future_div.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-11-03T15:55:32.0579270Z copying torch/testing/_internal/test_module/no_future_div.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-11-03T15:55:32.0587420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-11-03T15:55:32.0588010Z copying torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-11-03T15:55:32.0601990Z copying torch/testing/_internal/distributed/fake_pg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-11-03T15:55:32.0609150Z copying torch/testing/_internal/distributed/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-11-03T15:55:32.0609950Z copying torch/testing/_internal/distributed/checkpoint_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-11-03T15:55:32.0617420Z copying torch/testing/_internal/distributed/distributed_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-11-03T15:55:32.0624510Z copying torch/testing/_internal/distributed/distributed_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-11-03T15:55:32.0627950Z copying torch/testing/_internal/distributed/multi_threaded_pg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-11-03T15:55:32.0641120Z copying torch/testing/_internal/distributed/common_state_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-11-03T15:55:32.0647870Z copying torch/testing/_internal/distributed/rpc_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-11-03T15:55:32.0656200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-11-03T15:55:32.0656700Z copying torch/testing/_internal/optests/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-11-03T15:55:32.0663760Z copying torch/testing/_internal/optests/fake_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-11-03T15:55:32.0671480Z copying torch/testing/_internal/optests/aot_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-11-03T15:55:32.0678910Z copying torch/testing/_internal/optests/make_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-11-03T15:55:32.0685960Z copying torch/testing/_internal/optests/generate_tests.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-11-03T15:55:32.0700530Z copying torch/testing/_internal/optests/autograd_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-11-03T15:55:32.0708660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen 2025-11-03T15:55:32.0709190Z copying torch/testing/_internal/codegen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen 2025-11-03T15:55:32.0717050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-11-03T15:55:32.0717540Z copying torch/testing/_internal/data/network1.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-11-03T15:55:32.0724710Z copying torch/testing/_internal/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-11-03T15:55:32.0731710Z copying torch/testing/_internal/data/network2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-11-03T15:55:32.0740320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-11-03T15:55:32.0740930Z copying torch/testing/_internal/opinfo/definitions/signal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-11-03T15:55:32.0749230Z copying torch/testing/_internal/opinfo/definitions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-11-03T15:55:32.0757010Z copying torch/testing/_internal/opinfo/definitions/_masked.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-11-03T15:55:32.0771810Z copying torch/testing/_internal/opinfo/definitions/linalg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-11-03T15:55:32.0801440Z copying torch/testing/_internal/opinfo/definitions/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-11-03T15:55:32.0816210Z copying torch/testing/_internal/opinfo/definitions/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-11-03T15:55:32.0831650Z copying torch/testing/_internal/opinfo/definitions/special.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-11-03T15:55:32.0832850Z copying torch/testing/_internal/opinfo/definitions/nested.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-11-03T15:55:32.0855720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-11-03T15:55:32.0856310Z copying torch/testing/_internal/distributed/_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-11-03T15:55:32.0857390Z copying torch/testing/_internal/distributed/_tensor/common_dtensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-11-03T15:55:32.0872060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn 2025-11-03T15:55:32.0872630Z copying torch/testing/_internal/distributed/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn 2025-11-03T15:55:32.0874330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-11-03T15:55:32.0875000Z copying torch/testing/_internal/distributed/_shard/test_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-11-03T15:55:32.0882720Z copying torch/testing/_internal/distributed/_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-11-03T15:55:32.0891230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-11-03T15:55:32.0891860Z 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-11-03T15:55:32.0899760Z 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-11-03T15:55:32.0907240Z copying torch/testing/_internal/distributed/rpc/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-11-03T15:55:32.0908030Z copying torch/testing/_internal/distributed/rpc/dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-11-03T15:55:32.0940480Z 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-11-03T15:55:32.0948970Z 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-11-03T15:55:32.0962550Z copying torch/testing/_internal/distributed/rpc/rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-11-03T15:55:32.1008870Z copying torch/testing/_internal/distributed/rpc/dist_optimizer_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-11-03T15:55:32.1017410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-11-03T15:55:32.1018000Z copying torch/testing/_internal/distributed/nn/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-11-03T15:55:32.1019270Z 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-11-03T15:55:32.1032640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-11-03T15:55:32.1033350Z 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-11-03T15:55:32.1040190Z 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-11-03T15:55:32.1048120Z 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-11-03T15:55:32.1054780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-11-03T15:55:32.1055390Z copying torch/testing/_internal/distributed/rpc/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-11-03T15:55:32.1056550Z 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-11-03T15:55:32.1063510Z 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-11-03T15:55:32.1077020Z 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-11-03T15:55:32.1084970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-11-03T15:55:32.1085610Z copying torch/testing/_internal/distributed/rpc/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-11-03T15:55:32.1086940Z 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-11-03T15:55:32.1094360Z 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-11-03T15:55:32.1102060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-11-03T15:55:32.1102570Z copying torch/jit/_passes/_property_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-11-03T15:55:32.1109480Z copying torch/jit/_passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-11-03T15:55:32.1110640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile 2025-11-03T15:55:32.1111320Z copying torch/jit/mobile/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile 2025-11-03T15:55:32.1120490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-11-03T15:55:32.1121060Z copying torch/_dynamo/backends/registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-11-03T15:55:32.1128070Z copying torch/_dynamo/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-11-03T15:55:32.1128830Z copying torch/_dynamo/backends/debugging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-11-03T15:55:32.1143110Z copying torch/_dynamo/backends/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-11-03T15:55:32.1156690Z copying torch/_dynamo/backends/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-11-03T15:55:32.1164330Z copying torch/_dynamo/backends/inductor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-11-03T15:55:32.1171140Z copying torch/_dynamo/backends/onnxrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-11-03T15:55:32.1177880Z copying torch/_dynamo/backends/tvm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-11-03T15:55:32.1185330Z copying torch/_dynamo/backends/cudagraphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-11-03T15:55:32.1193570Z copying torch/_dynamo/backends/tensorrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-11-03T15:55:32.1200070Z copying torch/_dynamo/backends/torchxla.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-11-03T15:55:32.1209760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1210220Z copying torch/_dynamo/variables/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1212500Z copying torch/_dynamo/variables/iter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1213540Z copying torch/_dynamo/variables/misc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1236050Z copying torch/_dynamo/variables/streams.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1236960Z copying torch/_dynamo/variables/lists.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1259680Z copying torch/_dynamo/variables/script_object.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1267990Z copying torch/_dynamo/variables/torch_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1282370Z copying torch/_dynamo/variables/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1289740Z copying torch/_dynamo/variables/user_defined.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1291230Z copying torch/_dynamo/variables/nn_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1312460Z copying torch/_dynamo/variables/builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1314310Z copying torch/_dynamo/variables/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1336680Z copying torch/_dynamo/variables/higher_order_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1373590Z copying torch/_dynamo/variables/sdpa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1380730Z copying torch/_dynamo/variables/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1393100Z copying torch/_dynamo/variables/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1394150Z copying torch/_dynamo/variables/builtin.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1421810Z copying torch/_dynamo/variables/constant.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1422820Z copying torch/_dynamo/variables/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1430600Z copying torch/_dynamo/variables/torch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1432020Z copying torch/_dynamo/variables/ctx_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1455650Z copying torch/_dynamo/variables/dicts.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1479680Z copying torch/_dynamo/variables/base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-11-03T15:55:32.1495780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-11-03T15:55:32.1496220Z copying torch/_dynamo/repro/after_dynamo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-11-03T15:55:32.1508210Z copying torch/_dynamo/repro/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-11-03T15:55:32.1508970Z copying torch/_dynamo/repro/after_aot.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-11-03T15:55:32.1510460Z copying torch/_dynamo/repro/aoti.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-11-03T15:55:32.1531980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-11-03T15:55:32.1532460Z copying torch/_dynamo/polyfills/functools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-11-03T15:55:32.1539480Z copying torch/_dynamo/polyfills/builtins.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-11-03T15:55:32.1545710Z copying torch/_dynamo/polyfills/operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-11-03T15:55:32.1551820Z copying torch/_dynamo/polyfills/os.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-11-03T15:55:32.1557920Z copying torch/_dynamo/polyfills/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-11-03T15:55:32.1564600Z copying torch/_dynamo/polyfills/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-11-03T15:55:32.1570540Z copying torch/_dynamo/polyfills/_collections.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-11-03T15:55:32.1576800Z copying torch/_dynamo/polyfills/loader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-11-03T15:55:32.1583090Z copying torch/_dynamo/polyfills/fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-11-03T15:55:32.1589920Z copying torch/_dynamo/polyfills/struct.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-11-03T15:55:32.1596240Z copying torch/_dynamo/polyfills/sys.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-11-03T15:55:32.1602440Z copying torch/_dynamo/polyfills/pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-11-03T15:55:32.1620020Z copying torch/_dynamo/polyfills/itertools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-11-03T15:55:32.1627540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn 2025-11-03T15:55:32.1627950Z copying torch/ao/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn 2025-11-03T15:55:32.1635890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-11-03T15:55:32.1636270Z copying torch/ao/ns/_numeric_suite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-11-03T15:55:32.1649550Z copying torch/ao/ns/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-11-03T15:55:32.1650380Z copying torch/ao/ns/_numeric_suite_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-11-03T15:55:32.1672110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1672560Z copying torch/ao/quantization/observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1674280Z copying torch/ao/quantization/fuse_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1681930Z copying torch/ao/quantization/_learnable_fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1682850Z copying torch/ao/quantization/quantization_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1684080Z copying torch/ao/quantization/_correct_bias.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1696810Z copying torch/ao/quantization/quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1697920Z copying torch/ao/quantization/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1699130Z copying torch/ao/quantization/fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1705670Z copying torch/ao/quantization/qconfig.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1706240Z copying torch/ao/quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1706780Z copying torch/ao/quantization/qconfig_mapping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1710730Z copying torch/ao/quantization/stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1717570Z copying torch/ao/quantization/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1718610Z copying torch/ao/quantization/fuser_method_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1719810Z copying torch/ao/quantization/quantize_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1721120Z copying torch/ao/quantization/quantize_pt2e.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1728780Z copying torch/ao/quantization/quant_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1735710Z copying torch/ao/quantization/quantize_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-11-03T15:55:32.1768300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-11-03T15:55:32.1768700Z copying torch/ao/pruning/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-11-03T15:55:32.1785660Z copying torch/ao/pruning/_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-11-03T15:55:32.1792380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat 2025-11-03T15:55:32.1792890Z copying torch/ao/nn/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat 2025-11-03T15:55:32.1800140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-11-03T15:55:32.1800580Z copying torch/ao/nn/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-11-03T15:55:32.1806100Z copying torch/ao/nn/quantized/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-11-03T15:55:32.1819440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable 2025-11-03T15:55:32.1820020Z copying torch/ao/nn/quantizable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable 2025-11-03T15:55:32.1826660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic 2025-11-03T15:55:32.1827090Z copying torch/ao/nn/intrinsic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic 2025-11-03T15:55:32.1833810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse 2025-11-03T15:55:32.1834490Z copying torch/ao/nn/sparse/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse 2025-11-03T15:55:32.1842050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic 2025-11-03T15:55:32.1842500Z copying torch/ao/nn/qat/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic 2025-11-03T15:55:32.1849580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-11-03T15:55:32.1850120Z copying torch/ao/nn/qat/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-11-03T15:55:32.1857110Z copying torch/ao/nn/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-11-03T15:55:32.1863920Z copying torch/ao/nn/qat/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-11-03T15:55:32.1870300Z copying torch/ao/nn/qat/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-11-03T15:55:32.1877380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-11-03T15:55:32.1877920Z copying torch/ao/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-11-03T15:55:32.1884890Z copying torch/ao/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-11-03T15:55:32.1891330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic 2025-11-03T15:55:32.1891830Z copying torch/ao/nn/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic 2025-11-03T15:55:32.1899930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-11-03T15:55:32.1900470Z copying torch/ao/nn/quantized/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-11-03T15:55:32.1909160Z copying torch/ao/nn/quantized/modules/functional_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-11-03T15:55:32.1917930Z copying torch/ao/nn/quantized/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-11-03T15:55:32.1925090Z copying torch/ao/nn/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-11-03T15:55:32.1932130Z copying torch/ao/nn/quantized/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-11-03T15:55:32.1943320Z copying torch/ao/nn/quantized/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-11-03T15:55:32.1953320Z copying torch/ao/nn/quantized/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-11-03T15:55:32.1959550Z copying torch/ao/nn/quantized/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-11-03T15:55:32.1973040Z copying torch/ao/nn/quantized/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-11-03T15:55:32.1980520Z copying torch/ao/nn/quantized/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-11-03T15:55:32.1988380Z copying torch/ao/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-11-03T15:55:32.1996350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference 2025-11-03T15:55:32.1996920Z copying torch/ao/nn/quantized/reference/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference 2025-11-03T15:55:32.2004830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-11-03T15:55:32.2005430Z copying torch/ao/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-11-03T15:55:32.2012090Z copying torch/ao/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-11-03T15:55:32.2018840Z copying torch/ao/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-11-03T15:55:32.2032310Z copying torch/ao/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-11-03T15:55:32.2055380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-11-03T15:55:32.2055970Z copying torch/ao/nn/quantized/reference/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-11-03T15:55:32.2064870Z copying torch/ao/nn/quantized/reference/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-11-03T15:55:32.2071960Z copying torch/ao/nn/quantized/reference/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-11-03T15:55:32.2079500Z copying torch/ao/nn/quantized/reference/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-11-03T15:55:32.2086210Z copying torch/ao/nn/quantized/reference/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-11-03T15:55:32.2094190Z copying torch/ao/nn/quantized/reference/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-11-03T15:55:32.2109550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-11-03T15:55:32.2110080Z copying torch/ao/nn/quantizable/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-11-03T15:55:32.2118330Z copying torch/ao/nn/quantizable/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-11-03T15:55:32.2131610Z copying torch/ao/nn/quantizable/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-11-03T15:55:32.2145730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat 2025-11-03T15:55:32.2146200Z copying torch/ao/nn/intrinsic/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat 2025-11-03T15:55:32.2154390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized 2025-11-03T15:55:32.2154900Z copying torch/ao/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized 2025-11-03T15:55:32.2162130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-11-03T15:55:32.2162630Z copying torch/ao/nn/intrinsic/modules/fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-11-03T15:55:32.2169920Z copying torch/ao/nn/intrinsic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-11-03T15:55:32.2176880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-11-03T15:55:32.2177430Z 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-11-03T15:55:32.2192370Z copying torch/ao/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-11-03T15:55:32.2200670Z 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-11-03T15:55:32.2207350Z 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-11-03T15:55:32.2215410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic 2025-11-03T15:55:32.2216270Z copying torch/ao/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic 2025-11-03T15:55:32.2224290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-11-03T15:55:32.2224870Z 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-11-03T15:55:32.2231980Z copying torch/ao/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-11-03T15:55:32.2238740Z 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-11-03T15:55:32.2246180Z 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-11-03T15:55:32.2253930Z 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-11-03T15:55:32.2262420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-11-03T15:55:32.2263070Z 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-11-03T15:55:32.2270220Z 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-11-03T15:55:32.2277340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-11-03T15:55:32.2277890Z copying torch/ao/nn/sparse/quantized/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-11-03T15:55:32.2285120Z copying torch/ao/nn/sparse/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-11-03T15:55:32.2291640Z copying torch/ao/nn/sparse/quantized/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-11-03T15:55:32.2298840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-11-03T15:55:32.2299400Z copying torch/ao/nn/sparse/quantized/dynamic/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-11-03T15:55:32.2311210Z copying torch/ao/nn/sparse/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-11-03T15:55:32.2322760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-11-03T15:55:32.2323220Z copying torch/ao/ns/fx/graph_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-11-03T15:55:32.2337510Z copying torch/ao/ns/fx/weight_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-11-03T15:55:32.2350880Z copying torch/ao/ns/fx/graph_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-11-03T15:55:32.2364890Z copying torch/ao/ns/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-11-03T15:55:32.2365670Z copying torch/ao/ns/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-11-03T15:55:32.2387910Z copying torch/ao/ns/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-11-03T15:55:32.2395240Z copying torch/ao/ns/fx/ns_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-11-03T15:55:32.2401840Z copying torch/ao/ns/fx/n_shadows_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-11-03T15:55:32.2424690Z copying torch/ao/ns/fx/mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-11-03T15:55:32.2438910Z copying torch/ao/ns/fx/qconfig_multi_mapping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-11-03T15:55:32.2447280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-11-03T15:55:32.2447880Z 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-11-03T15:55:32.2463410Z copying torch/ao/quantization/backend_config/qnnpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-11-03T15:55:32.2470390Z copying torch/ao/quantization/backend_config/fbgemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-11-03T15:55:32.2477690Z copying torch/ao/quantization/backend_config/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-11-03T15:55:32.2484970Z copying torch/ao/quantization/backend_config/native.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-11-03T15:55:32.2492520Z copying torch/ao/quantization/backend_config/onednn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-11-03T15:55:32.2493510Z copying torch/ao/quantization/backend_config/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-11-03T15:55:32.2494770Z copying torch/ao/quantization/backend_config/_qnnpack_pt2e.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-11-03T15:55:32.2502210Z copying torch/ao/quantization/backend_config/executorch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-11-03T15:55:32.2516470Z copying torch/ao/quantization/backend_config/backend_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-11-03T15:55:32.2531300Z copying torch/ao/quantization/backend_config/x86.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-11-03T15:55:32.2538590Z copying torch/ao/quantization/backend_config/tensorrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-11-03T15:55:32.2546880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-11-03T15:55:32.2547390Z copying torch/ao/quantization/pt2e/port_metadata_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-11-03T15:55:32.2555100Z copying torch/ao/quantization/pt2e/export_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-11-03T15:55:32.2562430Z copying torch/ao/quantization/pt2e/qat_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-11-03T15:55:32.2563670Z copying torch/ao/quantization/pt2e/duplicate_dq_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-11-03T15:55:32.2564910Z copying torch/ao/quantization/pt2e/lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-11-03T15:55:32.2572260Z copying torch/ao/quantization/pt2e/graph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-11-03T15:55:32.2579030Z copying torch/ao/quantization/pt2e/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-11-03T15:55:32.2579740Z copying torch/ao/quantization/pt2e/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-11-03T15:55:32.2594010Z copying torch/ao/quantization/pt2e/_affine_quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-11-03T15:55:32.2607360Z copying torch/ao/quantization/pt2e/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-11-03T15:55:32.2621010Z copying torch/ao/quantization/pt2e/_numeric_debugger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-11-03T15:55:32.2630210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2630750Z copying torch/ao/quantization/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2638820Z copying torch/ao/quantization/fx/lower_to_fbgemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2645860Z copying torch/ao/quantization/fx/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2659250Z copying torch/ao/quantization/fx/lower_to_qnnpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2667280Z copying torch/ao/quantization/fx/convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2714980Z copying torch/ao/quantization/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2722670Z copying torch/ao/quantization/fx/quantize_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2729580Z copying torch/ao/quantization/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2730960Z copying torch/ao/quantization/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2742240Z copying torch/ao/quantization/fx/_lower_to_native_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2743560Z copying torch/ao/quantization/fx/custom_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2760000Z copying torch/ao/quantization/fx/fuse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2767450Z copying torch/ao/quantization/fx/qconfig_mapping_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2774770Z copying torch/ao/quantization/fx/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2781580Z copying torch/ao/quantization/fx/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2808880Z copying torch/ao/quantization/fx/tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2816060Z copying torch/ao/quantization/fx/_decomposed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2830240Z copying torch/ao/quantization/fx/fuse_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2837720Z copying torch/ao/quantization/fx/lstm_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-11-03T15:55:32.2845870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-11-03T15:55:32.2846450Z copying torch/ao/quantization/quantizer/embedding_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-11-03T15:55:32.2854020Z copying torch/ao/quantization/quantizer/x86_inductor_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-11-03T15:55:32.2855400Z copying torch/ao/quantization/quantizer/xnnpack_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-11-03T15:55:32.2856610Z copying torch/ao/quantization/quantizer/composable_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-11-03T15:55:32.2863610Z copying torch/ao/quantization/quantizer/xpu_inductor_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-11-03T15:55:32.2870670Z copying torch/ao/quantization/quantizer/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-11-03T15:55:32.2878190Z copying torch/ao/quantization/quantizer/quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-11-03T15:55:32.2885180Z copying torch/ao/quantization/quantizer/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-11-03T15:55:32.2891620Z copying torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-11-03T15:55:32.2893390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-11-03T15:55:32.2894180Z copying torch/ao/quantization/pt2e/representation/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-11-03T15:55:32.2901600Z copying torch/ao/quantization/pt2e/representation/rewrite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-11-03T15:55:32.2924200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-11-03T15:55:32.2924770Z copying torch/ao/quantization/fx/_model_report/detector.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-11-03T15:55:32.2951440Z 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-11-03T15:55:32.2967050Z 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-11-03T15:55:32.2973980Z copying torch/ao/quantization/fx/_model_report/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-11-03T15:55:32.2974800Z 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-11-03T15:55:32.2988860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-11-03T15:55:32.2989480Z copying torch/ao/pruning/sparsifier/weight_norm_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-11-03T15:55:32.2997050Z copying torch/ao/pruning/sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-11-03T15:55:32.2997780Z copying torch/ao/pruning/sparsifier/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-11-03T15:55:32.3005500Z copying torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-11-03T15:55:32.3017460Z copying torch/ao/pruning/sparsifier/base_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-11-03T15:55:32.3025170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental 2025-11-03T15:55:32.3025710Z copying torch/ao/pruning/_experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental 2025-11-03T15:55:32.3027420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-11-03T15:55:32.3028190Z copying torch/ao/pruning/scheduler/base_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-11-03T15:55:32.3035290Z copying torch/ao/pruning/scheduler/cubic_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-11-03T15:55:32.3042130Z copying torch/ao/pruning/scheduler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-11-03T15:55:32.3042920Z copying torch/ao/pruning/scheduler/lambda_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-11-03T15:55:32.3050450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-11-03T15:55:32.3051120Z 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-11-03T15:55:32.3058710Z copying torch/ao/pruning/_experimental/data_sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-11-03T15:55:32.3065460Z 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-11-03T15:55:32.3072210Z 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-11-03T15:55:32.3080260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-11-03T15:55:32.3080830Z copying torch/ao/pruning/_experimental/pruner/FPGM_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-11-03T15:55:32.3088190Z copying torch/ao/pruning/_experimental/pruner/saliency_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-11-03T15:55:32.3095320Z copying torch/ao/pruning/_experimental/pruner/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-11-03T15:55:32.3101970Z copying torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-11-03T15:55:32.3109100Z copying torch/ao/pruning/_experimental/pruner/prune_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-11-03T15:55:32.3129180Z copying torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-11-03T15:55:32.3136260Z copying torch/ao/pruning/_experimental/pruner/parametrization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-11-03T15:55:32.3143010Z copying torch/ao/pruning/_experimental/pruner/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-11-03T15:55:32.3150440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-11-03T15:55:32.3151170Z 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-11-03T15:55:32.3165140Z copying torch/ao/pruning/_experimental/activation_sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-11-03T15:55:32.3166360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-11-03T15:55:32.3167120Z copying torch/ao/pruning/_experimental/data_scheduler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-11-03T15:55:32.3174290Z 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-11-03T15:55:32.3181870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-11-03T15:55:32.3182600Z 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-11-03T15:55:32.3184240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-11-03T15:55:32.3185140Z 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-11-03T15:55:32.3192950Z 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-11-03T15:55:32.3194020Z 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-11-03T15:55:32.3201980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg 2025-11-03T15:55:32.3202490Z copying torch/_refs/linalg/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg 2025-11-03T15:55:32.3210320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn 2025-11-03T15:55:32.3211040Z copying torch/_refs/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn 2025-11-03T15:55:32.3219140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special 2025-11-03T15:55:32.3219560Z copying torch/_refs/special/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special 2025-11-03T15:55:32.3227710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional 2025-11-03T15:55:32.3228190Z copying torch/_refs/nn/functional/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional 2025-11-03T15:55:32.3243960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-11-03T15:55:32.3244420Z copying torch/export/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-11-03T15:55:32.3259180Z copying torch/export/experimental/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-11-03T15:55:32.3267230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes 2025-11-03T15:55:32.3268020Z copying torch/export/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes 2025-11-03T15:55:32.3276190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-11-03T15:55:32.3276650Z copying torch/export/pt2_archive/_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-11-03T15:55:32.3292290Z copying torch/export/pt2_archive/_package_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-11-03T15:55:32.3300300Z copying torch/export/pt2_archive/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-11-03T15:55:32.3307100Z copying torch/export/pt2_archive/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-11-03T15:55:32.3315540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-11-03T15:55:32.3316010Z copying torch/nested/_internal/nested_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-11-03T15:55:32.3335340Z copying torch/nested/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-11-03T15:55:32.3336070Z copying torch/nested/_internal/ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-11-03T15:55:32.3367530Z copying torch/nested/_internal/sdpa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-11-03T15:55:32.3382910Z copying torch/nested/_internal/nested_int.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-11-03T15:55:32.3392080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-11-03T15:55:32.3392500Z copying torch/signal/windows/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-11-03T15:55:32.3400460Z copying torch/signal/windows/windows.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-11-03T15:55:32.3415380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-11-03T15:55:32.3415860Z copying torch/package/analyze/trace_dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-11-03T15:55:32.3422970Z copying torch/package/analyze/find_first_use_of_broken_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-11-03T15:55:32.3432230Z copying torch/package/analyze/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-11-03T15:55:32.3441380Z copying torch/package/analyze/is_from_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-11-03T15:55:32.3448120Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-11-03T15:55:32.3448590Z copying torchgen/selective_build/selector.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-11-03T15:55:32.3450040Z copying torchgen/selective_build/operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-11-03T15:55:32.3451270Z copying torchgen/selective_build/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-11-03T15:55:32.3453040Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-11-03T15:55:32.3453730Z copying torchgen/static_runtime/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-11-03T15:55:32.3461300Z copying torchgen/static_runtime/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-11-03T15:55:32.3462070Z copying torchgen/static_runtime/generator.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-11-03T15:55:32.3488180Z copying torchgen/static_runtime/gen_static_runtime_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-11-03T15:55:32.3495490Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-11-03T15:55:32.3495980Z copying torchgen/operator_versions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-11-03T15:55:32.3497090Z copying torchgen/operator_versions/gen_mobile_upgraders_constant.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-11-03T15:55:32.3504270Z copying torchgen/operator_versions/gen_mobile_upgraders.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-11-03T15:55:32.3513640Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-11-03T15:55:32.3514060Z copying torchgen/dest/lazy_ts_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-11-03T15:55:32.3515380Z copying torchgen/dest/ufunc.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-11-03T15:55:32.3516810Z copying torchgen/dest/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-11-03T15:55:32.3518040Z copying torchgen/dest/native_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-11-03T15:55:32.3519240Z copying torchgen/dest/lazy_ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-11-03T15:55:32.3520710Z copying torchgen/dest/register_dispatch_key.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-11-03T15:55:32.3523850Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-11-03T15:55:32.3524420Z copying torchgen/api/dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-11-03T15:55:32.3525740Z copying torchgen/api/translate.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-11-03T15:55:32.3527110Z copying torchgen/api/ufunc.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-11-03T15:55:32.3528290Z copying torchgen/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-11-03T15:55:32.3529260Z copying torchgen/api/native.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-11-03T15:55:32.3530470Z copying torchgen/api/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-11-03T15:55:32.3531680Z copying torchgen/api/unboxing.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-11-03T15:55:32.3540010Z copying torchgen/api/functionalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-11-03T15:55:32.3540810Z copying torchgen/api/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-11-03T15:55:32.3542300Z copying torchgen/api/structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-11-03T15:55:32.3543530Z copying torchgen/api/python.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-11-03T15:55:32.3545020Z copying torchgen/api/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-11-03T15:55:32.3546330Z copying torchgen/api/meta.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-11-03T15:55:32.3548500Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-11-03T15:55:32.3549210Z copying torchgen/aoti/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-11-03T15:55:32.3549870Z copying torchgen/aoti/fallback_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-11-03T15:55:32.3552280Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-11-03T15:55:32.3552780Z copying torchgen/api/types/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-11-03T15:55:32.3553800Z copying torchgen/api/types/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-11-03T15:55:32.3555070Z copying torchgen/api/types/signatures.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-11-03T15:55:32.3556270Z copying torchgen/api/types/types_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-11-03T15:55:32.3563500Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-11-03T15:55:32.3569100Z copying functorch/experimental/control_flow.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-11-03T15:55:32.3570680Z copying functorch/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-11-03T15:55:32.3577700Z copying functorch/experimental/ops.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-11-03T15:55:32.3584990Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src 2025-11-03T15:55:32.3585440Z copying functorch/_src/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src 2025-11-03T15:55:32.3599250Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-11-03T15:55:32.3599770Z copying functorch/dim/magic_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-11-03T15:55:32.3606830Z copying functorch/dim/_getsetitem.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-11-03T15:55:32.3620280Z copying functorch/dim/_order.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-11-03T15:55:32.3627370Z copying functorch/dim/_dim_entry.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-11-03T15:55:32.3634010Z copying functorch/dim/_wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-11-03T15:55:32.3641130Z copying functorch/dim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-11-03T15:55:32.3661770Z copying functorch/dim/op_properties.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-11-03T15:55:32.3669280Z copying functorch/dim/_py_inst_decoder.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-11-03T15:55:32.3676640Z copying functorch/dim/_enable_all_layers.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-11-03T15:55:32.3683610Z copying functorch/dim/wrap_type.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-11-03T15:55:32.3690810Z copying functorch/dim/_tensor_info.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-11-03T15:55:32.3703960Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/compile 2025-11-03T15:55:32.3704390Z copying functorch/compile/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/compile 2025-11-03T15:55:32.3724120Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-11-03T15:55:32.3724620Z copying functorch/einops/_parsing.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-11-03T15:55:32.3732480Z copying functorch/einops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-11-03T15:55:32.3740040Z copying functorch/einops/rearrange.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-11-03T15:55:32.3747320Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional 2025-11-03T15:55:32.3747820Z copying functorch/_src/make_functional/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional 2025-11-03T15:55:32.3755340Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms 2025-11-03T15:55:32.3755910Z copying functorch/_src/eager_transforms/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms 2025-11-03T15:55:32.3762910Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd 2025-11-03T15:55:32.3763710Z copying functorch/_src/aot_autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd 2025-11-03T15:55:32.3770920Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap 2025-11-03T15:55:32.3771570Z copying functorch/_src/vmap/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap 2025-11-03T15:55:32.7679700Z copying torch/return_types.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:32.7681940Z copying torch/_VF.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:32.7689460Z copying torch/py.typed -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-11-03T15:55:32.7690400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-11-03T15:55:32.7691170Z copying torch/bin/protoc-3.13.0.0 -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-11-03T15:55:32.7856410Z copying torch/bin/torch_shm_manager -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-11-03T15:55:32.7880550Z copying torch/bin/protoc -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-11-03T15:55:32.7936200Z copying torch/nn/parameter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-11-03T15:55:32.7945330Z copying torch/nn/functional.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-11-03T15:55:32.7946910Z copying torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:32.7955620Z copying torch/optim/_multi_tensor/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-11-03T15:55:32.7961800Z copying torch/utils/_config_typing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:32.7981080Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-11-03T15:55:32.7982320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.7983070Z copying torch/_C/_profiler.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.7996830Z copying torch/_C/_functionalization.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8002240Z copying torch/_C/_onnx.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8007930Z copying torch/_C/_distributed_c10d.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8019750Z copying torch/_C/_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8025850Z copying torch/_C/_monitor.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8031530Z copying torch/_C/_itt.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8037630Z copying torch/_C/_lazy.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8043290Z copying torch/_C/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8047120Z copying torch/_C/_nvtx.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8053910Z copying torch/_C/_cpu.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8062140Z copying torch/_C/_nn.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8063260Z copying torch/_C/_cusparselt.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8071260Z copying torch/_C/_instruction_counter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8077420Z copying torch/_C/_jit_tree_views.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8084240Z copying torch/_C/_lazy_ts_backend.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8091320Z copying torch/_C/_functorch.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8097450Z copying torch/_C/_VariableFunctions.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8104630Z copying torch/_C/_distributed_rpc.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8115680Z copying torch/_C/_verbose.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8124260Z copying torch/_C/_aoti.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8130920Z copying torch/_C/_distributed.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8137930Z copying torch/_C/_functions.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8143670Z copying torch/_C/_distributed_rpc_testing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8150350Z copying torch/_C/_cudnn.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8156600Z copying torch/_C/_distributed_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-11-03T15:55:32.8162670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-11-03T15:55:32.8163060Z copying torch/_C/_export/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-11-03T15:55:32.8169610Z copying torch/_C/_export/pt2_archive_constants.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-11-03T15:55:32.8176310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_acc 2025-11-03T15:55:32.8176720Z copying torch/_C/_acc/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_acc 2025-11-03T15:55:32.8182980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-11-03T15:55:32.8183380Z copying torch/_C/_dynamo/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-11-03T15:55:32.8190100Z copying torch/_C/_dynamo/compiled_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-11-03T15:55:32.8197030Z copying torch/_C/_dynamo/guards.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-11-03T15:55:32.8203990Z copying torch/_C/_dynamo/eval_frame.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-11-03T15:55:32.8211890Z copying torch/jit/_script.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:32.8220420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer 2025-11-03T15:55:32.8220840Z copying torch/_C_flatbuffer/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer 2025-11-03T15:55:32.8227790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-11-03T15:55:32.8228210Z copying torch/lib/libshm.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-11-03T15:55:32.8273030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows 2025-11-03T15:55:32.8273490Z copying torch/lib/libshm_windows/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows 2025-11-03T15:55:32.8280460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-11-03T15:55:32.8280960Z copying torch/lib/libshm/err.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-11-03T15:55:32.8282250Z copying torch/lib/libshm/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-11-03T15:55:32.8283620Z copying torch/lib/libshm/socket.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-11-03T15:55:32.8284950Z copying torch/lib/libshm/alloc_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-11-03T15:55:32.8286380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-11-03T15:55:32.8287020Z copying torch/include/sleef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-11-03T15:55:32.8289610Z copying torch/include/cpuinfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-11-03T15:55:32.8291030Z copying torch/include/nnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-11-03T15:55:32.8292670Z copying torch/include/xnnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-11-03T15:55:32.8295360Z copying torch/include/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-11-03T15:55:32.8296360Z copying torch/include/fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-11-03T15:55:32.8297780Z copying torch/include/qnnpack_func.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-11-03T15:55:32.8299230Z copying torch/include/pthreadpool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-11-03T15:55:32.8301100Z copying torch/include/clog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-11-03T15:55:32.8302410Z copying torch/include/psimd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-11-03T15:55:32.8309580Z copying torch/include/experiments-config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-11-03T15:55:32.8310680Z copying torch/include/fxdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-11-03T15:55:32.8311980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8312690Z copying torch/include/pybind11/gil_simple.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8314080Z copying torch/include/pybind11/attr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8315610Z copying torch/include/pybind11/embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8317060Z copying torch/include/pybind11/numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8318910Z copying torch/include/pybind11/pybind11.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8321110Z copying torch/include/pybind11/warnings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8322460Z copying torch/include/pybind11/operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8323910Z copying torch/include/pybind11/iostream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8325240Z copying torch/include/pybind11/gil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8326580Z copying torch/include/pybind11/chrono.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8327970Z copying torch/include/pybind11/subinterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8329280Z copying torch/include/pybind11/typing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8330690Z copying torch/include/pybind11/stl_bind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8332230Z copying torch/include/pybind11/buffer_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8333600Z copying torch/include/pybind11/options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8335010Z copying torch/include/pybind11/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8336380Z copying torch/include/pybind11/native_enum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8337790Z copying torch/include/pybind11/stl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8339450Z copying torch/include/pybind11/critical_section.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8340730Z copying torch/include/pybind11/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8342060Z copying torch/include/pybind11/eval.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8343520Z copying torch/include/pybind11/cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8345460Z copying torch/include/pybind11/trampoline_self_life_support.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8346810Z copying torch/include/pybind11/type_caster_pyobject_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8348130Z copying torch/include/pybind11/eigen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8349560Z copying torch/include/pybind11/gil_safe_call_once.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8350940Z copying torch/include/pybind11/pytypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8353280Z copying torch/include/pybind11/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-11-03T15:55:32.8354090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit 2025-11-03T15:55:32.8354870Z copying torch/include/pybind11/conduit/pybind11_platform_abi_id.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit 2025-11-03T15:55:32.8356290Z copying torch/include/pybind11/conduit/pybind11_conduit_v1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit 2025-11-03T15:55:32.8357700Z copying torch/include/pybind11/conduit/wrap_include_python_h.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit 2025-11-03T15:55:32.8358880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-11-03T15:55:32.8359650Z copying torch/include/pybind11/eigen/matrix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-11-03T15:55:32.8361250Z copying torch/include/pybind11/eigen/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-11-03T15:55:32.8362670Z copying torch/include/pybind11/eigen/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-11-03T15:55:32.8364230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl 2025-11-03T15:55:32.8365030Z copying torch/include/pybind11/stl/filesystem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl 2025-11-03T15:55:32.8366380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8367250Z copying torch/include/pybind11/detail/type_caster_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8369880Z copying torch/include/pybind11/detail/exception_translation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8371600Z copying torch/include/pybind11/detail/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8373210Z copying torch/include/pybind11/detail/descr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8374960Z copying torch/include/pybind11/detail/using_smart_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8376570Z copying torch/include/pybind11/detail/function_record_pyobject.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8377950Z copying torch/include/pybind11/detail/internals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8379820Z copying torch/include/pybind11/detail/cpp_conduit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8380970Z copying torch/include/pybind11/detail/value_and_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8382390Z copying torch/include/pybind11/detail/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8384100Z copying torch/include/pybind11/detail/class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8385870Z 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-11-03T15:55:32.8387270Z copying torch/include/pybind11/detail/pybind11_namespace_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8388720Z copying torch/include/pybind11/detail/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8390370Z copying torch/include/pybind11/detail/native_enum_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8391750Z copying torch/include/pybind11/detail/struct_smart_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-11-03T15:55:32.8392990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8393730Z copying torch/include/fmt/ostream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8395340Z copying torch/include/fmt/format-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8396970Z copying torch/include/fmt/ranges.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8398670Z copying torch/include/fmt/xchar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8400020Z copying torch/include/fmt/core.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8401390Z copying torch/include/fmt/chrono.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8403230Z copying torch/include/fmt/os.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8404530Z copying torch/include/fmt/color.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8406110Z copying torch/include/fmt/args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8407440Z copying torch/include/fmt/printf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8409070Z copying torch/include/fmt/compile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8410590Z copying torch/include/fmt/format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8412990Z copying torch/include/fmt/std.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8414320Z copying torch/include/fmt/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-11-03T15:55:32.8416460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-11-03T15:55:32.8417380Z copying torch/include/caffe2/core/timer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-11-03T15:55:32.8418970Z copying torch/include/caffe2/core/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-11-03T15:55:32.8420320Z copying torch/include/caffe2/core/macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-11-03T15:55:32.8421640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-11-03T15:55:32.8422430Z copying torch/include/caffe2/perfkernels/batch_box_cox_vec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-11-03T15:55:32.8423870Z copying torch/include/caffe2/perfkernels/embedding_lookup_idx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-11-03T15:55:32.8425330Z copying torch/include/caffe2/perfkernels/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-11-03T15:55:32.8426510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-11-03T15:55:32.8427310Z copying torch/include/caffe2/serialize/in_memory_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-11-03T15:55:32.8428810Z copying torch/include/caffe2/serialize/read_adapter_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-11-03T15:55:32.8430090Z copying torch/include/caffe2/serialize/crc_alt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-11-03T15:55:32.8431880Z copying torch/include/caffe2/serialize/versions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-11-03T15:55:32.8433380Z copying torch/include/caffe2/serialize/inline_container.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-11-03T15:55:32.8434680Z copying torch/include/caffe2/serialize/file_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-11-03T15:55:32.8436070Z copying torch/include/caffe2/serialize/istream_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-11-03T15:55:32.8437260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-11-03T15:55:32.8438070Z copying torch/include/caffe2/utils/string_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-11-03T15:55:32.8439510Z copying torch/include/caffe2/utils/fixed_divisor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-11-03T15:55:32.8440860Z copying torch/include/caffe2/utils/proto_wrap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-11-03T15:55:32.8442080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-11-03T15:55:32.8442880Z copying torch/include/caffe2/utils/threadpool/ThreadPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-11-03T15:55:32.8444380Z copying torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-11-03T15:55:32.8445790Z copying torch/include/caffe2/utils/threadpool/pthreadpool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-11-03T15:55:32.8447200Z copying torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-11-03T15:55:32.8448730Z copying torch/include/caffe2/utils/threadpool/WorkersPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-11-03T15:55:32.8450060Z copying torch/include/caffe2/utils/threadpool/thread_pool_guard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-11-03T15:55:32.8451230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8452420Z copying torch/include/google/protobuf/source_context.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8453880Z copying torch/include/google/protobuf/repeated_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8455890Z copying torch/include/google/protobuf/port.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8457240Z copying torch/include/google/protobuf/wire_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8458840Z copying torch/include/google/protobuf/inlined_string_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8460320Z copying torch/include/google/protobuf/map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8461910Z copying torch/include/google/protobuf/arenastring.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8463300Z copying torch/include/google/protobuf/map_entry_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8464820Z copying torch/include/google/protobuf/service.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8466180Z copying torch/include/google/protobuf/struct.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8467870Z copying torch/include/google/protobuf/empty.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8470250Z copying torch/include/google/protobuf/descriptor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8472290Z copying torch/include/google/protobuf/message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8474190Z copying torch/include/google/protobuf/wrappers.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8476040Z copying torch/include/google/protobuf/text_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8477550Z copying torch/include/google/protobuf/has_bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8479000Z copying torch/include/google/protobuf/arena_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8480390Z copying torch/include/google/protobuf/api.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8482110Z copying torch/include/google/protobuf/metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8483520Z copying torch/include/google/protobuf/extension_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8485450Z copying torch/include/google/protobuf/reflection_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8486850Z copying torch/include/google/protobuf/generated_message_table_driven.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8488240Z copying torch/include/google/protobuf/duration.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8489610Z copying torch/include/google/protobuf/generated_message_reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8491020Z copying torch/include/google/protobuf/unknown_field_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8492450Z copying torch/include/google/protobuf/type.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8494410Z copying torch/include/google/protobuf/map_field_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8495970Z copying torch/include/google/protobuf/timestamp.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8497210Z copying torch/include/google/protobuf/field_mask.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8498710Z copying torch/include/google/protobuf/descriptor.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8502930Z copying torch/include/google/protobuf/map_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8504150Z copying torch/include/google/protobuf/message_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8505760Z copying torch/include/google/protobuf/generated_message_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8507120Z copying torch/include/google/protobuf/descriptor_database.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8508680Z copying torch/include/google/protobuf/map_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8510260Z copying torch/include/google/protobuf/generated_enum_reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8511720Z copying torch/include/google/protobuf/generated_enum_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8513030Z copying torch/include/google/protobuf/any.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8514460Z copying torch/include/google/protobuf/map_type_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8516220Z copying torch/include/google/protobuf/parse_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8517830Z copying torch/include/google/protobuf/extension_set_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8519170Z copying torch/include/google/protobuf/map_field_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8520570Z copying torch/include/google/protobuf/metadata_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8521930Z copying torch/include/google/protobuf/implicit_weak_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8523310Z copying torch/include/google/protobuf/arena.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8525080Z copying torch/include/google/protobuf/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8526420Z copying torch/include/google/protobuf/reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8527940Z copying torch/include/google/protobuf/dynamic_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8529300Z copying torch/include/google/protobuf/wire_format_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-11-03T15:55:32.8531070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8531860Z copying torch/include/google/protobuf/stubs/stringpiece.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8533500Z copying torch/include/google/protobuf/stubs/stl_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8534860Z copying torch/include/google/protobuf/stubs/port.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8536320Z copying torch/include/google/protobuf/stubs/status.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8537720Z copying torch/include/google/protobuf/stubs/template_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8539150Z copying torch/include/google/protobuf/stubs/map_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8540670Z copying torch/include/google/protobuf/stubs/casts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8542400Z copying torch/include/google/protobuf/stubs/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8543580Z copying torch/include/google/protobuf/stubs/bytestream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8544830Z copying torch/include/google/protobuf/stubs/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8552130Z copying torch/include/google/protobuf/stubs/macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8552860Z copying torch/include/google/protobuf/stubs/platform_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8553550Z copying torch/include/google/protobuf/stubs/once.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8554220Z copying torch/include/google/protobuf/stubs/fastmem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8554890Z copying torch/include/google/protobuf/stubs/mutex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8555580Z copying torch/include/google/protobuf/stubs/callback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8556250Z copying torch/include/google/protobuf/stubs/strutil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8556930Z copying torch/include/google/protobuf/stubs/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-11-03T15:55:32.8557650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-11-03T15:55:32.8558460Z copying torch/include/google/protobuf/util/time_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-11-03T15:55:32.8559900Z copying torch/include/google/protobuf/util/field_mask_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-11-03T15:55:32.8561250Z copying torch/include/google/protobuf/util/json_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-11-03T15:55:32.8562690Z copying torch/include/google/protobuf/util/type_resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-11-03T15:55:32.8564030Z copying torch/include/google/protobuf/util/field_comparator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-11-03T15:55:32.8565430Z copying torch/include/google/protobuf/util/type_resolver_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-11-03T15:55:32.8566850Z copying torch/include/google/protobuf/util/message_differencer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-11-03T15:55:32.8568530Z copying torch/include/google/protobuf/util/delimited_message_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-11-03T15:55:32.8569800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-11-03T15:55:32.8570550Z 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-11-03T15:55:32.8571960Z copying torch/include/google/protobuf/io/printer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-11-03T15:55:32.8573410Z copying torch/include/google/protobuf/io/gzip_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-11-03T15:55:32.8574970Z 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-11-03T15:55:32.8576570Z copying torch/include/google/protobuf/io/strtod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-11-03T15:55:32.8578290Z copying torch/include/google/protobuf/io/tokenizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-11-03T15:55:32.8579840Z copying torch/include/google/protobuf/io/zero_copy_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-11-03T15:55:32.8581470Z copying torch/include/google/protobuf/io/io_win32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-11-03T15:55:32.8582850Z copying torch/include/google/protobuf/io/coded_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-11-03T15:55:32.8584580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-11-03T15:55:32.8585400Z copying torch/include/google/protobuf/compiler/code_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-11-03T15:55:32.8586850Z copying torch/include/google/protobuf/compiler/plugin.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-11-03T15:55:32.8588670Z copying torch/include/google/protobuf/compiler/plugin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-11-03T15:55:32.8590040Z copying torch/include/google/protobuf/compiler/parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-11-03T15:55:32.8591690Z copying torch/include/google/protobuf/compiler/command_line_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-11-03T15:55:32.8593290Z copying torch/include/google/protobuf/compiler/importer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-11-03T15:55:32.8594490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/python 2025-11-03T15:55:32.8595270Z 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-11-03T15:55:32.8596500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js 2025-11-03T15:55:32.8597310Z 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-11-03T15:55:32.8598780Z 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-11-03T15:55:32.8600130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java 2025-11-03T15:55:32.8600780Z 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-11-03T15:55:32.8602250Z 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-11-03T15:55:32.8603370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/php 2025-11-03T15:55:32.8604190Z 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-11-03T15:55:32.8605520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/cpp 2025-11-03T15:55:32.8606170Z 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-11-03T15:55:32.8607500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp 2025-11-03T15:55:32.8608210Z 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-11-03T15:55:32.8609670Z 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-11-03T15:55:32.8610930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/ruby 2025-11-03T15:55:32.8611650Z 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-11-03T15:55:32.8612830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec 2025-11-03T15:55:32.8613680Z 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-11-03T15:55:32.8615160Z 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-11-03T15:55:32.8616180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-11-03T15:55:32.8616920Z copying torch/include/torch/script.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-11-03T15:55:32.8618360Z copying torch/include/torch/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-11-03T15:55:32.8619990Z copying torch/include/torch/custom_class_detail.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-11-03T15:55:32.8621340Z copying torch/include/torch/custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-11-03T15:55:32.8622900Z copying torch/include/torch/extension.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-11-03T15:55:32.8624130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly 2025-11-03T15:55:32.8624900Z copying torch/include/torch/headeronly/version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly 2025-11-03T15:55:32.8626200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/core 2025-11-03T15:55:32.8627330Z copying torch/include/torch/headeronly/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/core 2025-11-03T15:55:32.8629350Z copying torch/include/torch/headeronly/core/DeviceType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/core 2025-11-03T15:55:32.8630880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8631670Z copying torch/include/torch/headeronly/util/quint4x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8633130Z copying torch/include/torch/headeronly/util/Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8634800Z copying torch/include/torch/headeronly/util/TypeSafeSignMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8636170Z copying torch/include/torch/headeronly/util/qint32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8637630Z copying torch/include/torch/headeronly/util/Float4_e2m1fn_x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8639040Z copying torch/include/torch/headeronly/util/Float8_e5m2fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8640480Z copying torch/include/torch/headeronly/util/shim_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8641870Z copying torch/include/torch/headeronly/util/Float8_e4m3fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8643270Z copying torch/include/torch/headeronly/util/quint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8644690Z copying torch/include/torch/headeronly/util/Float8_e5m2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8646230Z copying torch/include/torch/headeronly/util/Float8_e8m0fnu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8647480Z copying torch/include/torch/headeronly/util/BFloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8648970Z copying torch/include/torch/headeronly/util/quint2x4.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8650390Z copying torch/include/torch/headeronly/util/floating_point_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8651850Z copying torch/include/torch/headeronly/util/bit_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8653190Z copying torch/include/torch/headeronly/util/qint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8654630Z copying torch/include/torch/headeronly/util/Exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8656020Z copying torch/include/torch/headeronly/util/Float8_e4m3fn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8657580Z copying torch/include/torch/headeronly/util/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8659110Z copying torch/include/torch/headeronly/util/bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8660590Z copying torch/include/torch/headeronly/util/Float8_fnuz_cvt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-11-03T15:55:32.8661860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec 2025-11-03T15:55:32.8663050Z 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-11-03T15:55:32.8664490Z copying torch/include/torch/headeronly/cpu/vec/intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec 2025-11-03T15:55:32.8665710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/vec256 2025-11-03T15:55:32.8666540Z 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-11-03T15:55:32.8668180Z 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-11-03T15:55:32.8669230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-11-03T15:55:32.8670010Z copying torch/include/torch/headeronly/macros/cmake_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-11-03T15:55:32.8671460Z copying torch/include/torch/headeronly/macros/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-11-03T15:55:32.8672860Z copying torch/include/torch/headeronly/macros/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-11-03T15:55:32.8674300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8675020Z copying torch/include/torch/csrc/Size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8676390Z copying torch/include/torch/csrc/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8677840Z copying torch/include/torch/csrc/DeviceAccelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8679290Z copying torch/include/torch/csrc/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8680750Z copying torch/include/torch/csrc/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8682000Z copying torch/include/torch/csrc/THConcat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8683420Z copying torch/include/torch/csrc/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8684790Z copying torch/include/torch/csrc/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8686250Z copying torch/include/torch/csrc/serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8687620Z copying torch/include/torch/csrc/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8689020Z copying torch/include/torch/csrc/itt_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8690430Z copying torch/include/torch/csrc/QScheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8691780Z copying torch/include/torch/csrc/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8693110Z copying torch/include/torch/csrc/DataLoader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8694460Z copying torch/include/torch/csrc/THP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8695940Z copying torch/include/torch/csrc/python_headers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8697270Z copying torch/include/torch/csrc/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8698640Z copying torch/include/torch/csrc/DynamicTypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8700040Z copying torch/include/torch/csrc/copy_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8701520Z copying torch/include/torch/csrc/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8702850Z copying torch/include/torch/csrc/PyInterpreterHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8704160Z copying torch/include/torch/csrc/itt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8705620Z copying torch/include/torch/csrc/MemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8707180Z copying torch/include/torch/csrc/StorageSharing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8708450Z copying torch/include/torch/csrc/PyInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8709790Z copying torch/include/torch/csrc/Dtype.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8711140Z copying torch/include/torch/csrc/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8712530Z copying torch/include/torch/csrc/python_dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8713870Z copying torch/include/torch/csrc/CudaIPCTypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8715300Z copying torch/include/torch/csrc/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8716690Z copying torch/include/torch/csrc/TypeInfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8718140Z copying torch/include/torch/csrc/StorageMethods.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-11-03T15:55:32.8719340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-11-03T15:55:32.8720170Z copying torch/include/torch/csrc/stable/version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-11-03T15:55:32.8721560Z copying torch/include/torch/csrc/stable/stableivalue_conversions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-11-03T15:55:32.8723230Z copying torch/include/torch/csrc/stable/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-11-03T15:55:32.8724590Z copying torch/include/torch/csrc/stable/accelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-11-03T15:55:32.8726040Z copying torch/include/torch/csrc/stable/tensor_struct.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-11-03T15:55:32.8727440Z copying torch/include/torch/csrc/stable/tensor_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-11-03T15:55:32.8728820Z copying torch/include/torch/csrc/stable/ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-11-03T15:55:32.8730370Z copying torch/include/torch/csrc/stable/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-11-03T15:55:32.8731510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/c 2025-11-03T15:55:32.8732270Z copying torch/include/torch/csrc/stable/c/shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/c 2025-11-03T15:55:32.8733570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-11-03T15:55:32.8734360Z copying torch/include/torch/csrc/inductor/inductor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-11-03T15:55:32.8735820Z copying torch/include/torch/csrc/inductor/array_ref_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-11-03T15:55:32.8737180Z copying torch/include/torch/csrc/inductor/static_cuda_launcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-11-03T15:55:32.8738620Z copying torch/include/torch/csrc/inductor/cpp_prefix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-11-03T15:55:32.8740170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package 2025-11-03T15:55:32.8740900Z 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-11-03T15:55:32.8742420Z 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-11-03T15:55:32.8743590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager 2025-11-03T15:55:32.8744420Z 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-11-03T15:55:32.8745830Z 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-11-03T15:55:32.8747040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-11-03T15:55:32.8747930Z 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-11-03T15:55:32.8749410Z 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-11-03T15:55:32.8750770Z 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-11-03T15:55:32.8752280Z 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-11-03T15:55:32.8753720Z 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-11-03T15:55:32.8755050Z 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-11-03T15:55:32.8756190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-11-03T15:55:32.8757050Z 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-11-03T15:55:32.8758500Z 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-11-03T15:55:32.8759870Z 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-11-03T15:55:32.8761330Z 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-11-03T15:55:32.8762780Z 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-11-03T15:55:32.8764190Z 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-11-03T15:55:32.8765580Z 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-11-03T15:55:32.8767040Z 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-11-03T15:55:32.8768410Z 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-11-03T15:55:32.8769820Z 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-11-03T15:55:32.8771240Z 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-11-03T15:55:32.8772820Z copying torch/include/torch/csrc/inductor/aoti_runtime/kernel_context_tls.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-11-03T15:55:32.8774380Z 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-11-03T15:55:32.8775700Z 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-11-03T15:55:32.8777240Z 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-11-03T15:55:32.8778590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-11-03T15:55:32.8779400Z 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-11-03T15:55:32.8780860Z 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-11-03T15:55:32.8782210Z 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-11-03T15:55:32.8783710Z 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-11-03T15:55:32.8785110Z 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-11-03T15:55:32.8786520Z 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-11-03T15:55:32.8787750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-11-03T15:55:32.8788530Z 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-11-03T15:55:32.8790140Z 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-11-03T15:55:32.8791810Z 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-11-03T15:55:32.8793480Z 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-11-03T15:55:32.8794950Z 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-11-03T15:55:32.8796280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-11-03T15:55:32.8797100Z 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-11-03T15:55:32.8798870Z 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-11-03T15:55:32.8800270Z 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-11-03T15:55:32.8802070Z 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-11-03T15:55:32.8804020Z 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-11-03T15:55:32.8805320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-11-03T15:55:32.8806240Z 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-11-03T15:55:32.8807910Z 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-11-03T15:55:32.8809500Z 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-11-03T15:55:32.8811210Z 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-11-03T15:55:32.8812790Z 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-11-03T15:55:32.8814410Z 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-11-03T15:55:32.8815920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-11-03T15:55:32.8816830Z 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-11-03T15:55:32.8818260Z 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-11-03T15:55:32.8819570Z 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-11-03T15:55:32.8821160Z 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-11-03T15:55:32.8822440Z 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-11-03T15:55:32.8823820Z 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-11-03T15:55:32.8825080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-11-03T15:55:32.8825910Z 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-11-03T15:55:32.8827520Z 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-11-03T15:55:32.8828890Z 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-11-03T15:55:32.8830330Z 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-11-03T15:55:32.8831390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-11-03T15:55:32.8832170Z copying torch/include/torch/csrc/monitor/events.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-11-03T15:55:32.8833550Z copying torch/include/torch/csrc/monitor/counters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-11-03T15:55:32.8835050Z copying torch/include/torch/csrc/monitor/python_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-11-03T15:55:32.8836220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter 2025-11-03T15:55:32.8837050Z copying torch/include/torch/csrc/instruction_counter/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter 2025-11-03T15:55:32.8838170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps 2025-11-03T15:55:32.8838930Z copying torch/include/torch/csrc/mps/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps 2025-11-03T15:55:32.8840130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-11-03T15:55:32.8840860Z copying torch/include/torch/csrc/onnx/back_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-11-03T15:55:32.8842360Z copying torch/include/torch/csrc/onnx/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-11-03T15:55:32.8843750Z copying torch/include/torch/csrc/onnx/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-11-03T15:55:32.8844960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu 2025-11-03T15:55:32.8845680Z copying torch/include/torch/csrc/cpu/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu 2025-11-03T15:55:32.8846890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed 2025-11-03T15:55:32.8847760Z copying torch/include/torch/csrc/distributed/Placement.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed 2025-11-03T15:55:32.8849090Z copying torch/include/torch/csrc/distributed/python_placement.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed 2025-11-03T15:55:32.8850300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-11-03T15:55:32.8851090Z copying torch/include/torch/csrc/distributed/autograd/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-11-03T15:55:32.8852440Z 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-11-03T15:55:32.8853920Z copying torch/include/torch/csrc/distributed/autograd/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-11-03T15:55:32.8855040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context 2025-11-03T15:55:32.8855900Z 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-11-03T15:55:32.8857450Z 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-11-03T15:55:32.8858510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-11-03T15:55:32.8859430Z 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-11-03T15:55:32.8860930Z 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-11-03T15:55:32.8862860Z 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-11-03T15:55:32.8864260Z 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-11-03T15:55:32.8865820Z 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-11-03T15:55:32.8867270Z 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-11-03T15:55:32.8868740Z 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-11-03T15:55:32.8870270Z 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-11-03T15:55:32.8871620Z 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-11-03T15:55:32.8873080Z 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-11-03T15:55:32.8874260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions 2025-11-03T15:55:32.8875210Z 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-11-03T15:55:32.8876660Z 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-11-03T15:55:32.8877880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/engine 2025-11-03T15:55:32.8878720Z 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-11-03T15:55:32.8879900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-11-03T15:55:32.8880710Z copying torch/include/torch/csrc/distributed/rpc/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-11-03T15:55:32.8882190Z 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-11-03T15:55:32.8883630Z 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-11-03T15:55:32.8884930Z 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-11-03T15:55:32.8886460Z 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-11-03T15:55:32.8887990Z 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-11-03T15:55:32.8889310Z copying torch/include/torch/csrc/distributed/rpc/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-11-03T15:55:32.8890710Z 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-11-03T15:55:32.8892090Z 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-11-03T15:55:32.8893400Z 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-11-03T15:55:32.8894910Z 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-11-03T15:55:32.8896290Z copying torch/include/torch/csrc/distributed/rpc/message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-11-03T15:55:32.8897810Z 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-11-03T15:55:32.8899100Z 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-11-03T15:55:32.8900560Z 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-11-03T15:55:32.8901920Z 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-11-03T15:55:32.8903520Z 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-11-03T15:55:32.8904890Z 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-11-03T15:55:32.8906520Z copying torch/include/torch/csrc/distributed/rpc/rpc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-11-03T15:55:32.8907700Z 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-11-03T15:55:32.8909060Z 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-11-03T15:55:32.8910600Z 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-11-03T15:55:32.8911950Z 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-11-03T15:55:32.8913480Z 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-11-03T15:55:32.8914790Z 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-11-03T15:55:32.8916180Z 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-11-03T15:55:32.8917720Z 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-11-03T15:55:32.8918830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/metrics 2025-11-03T15:55:32.8919750Z 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-11-03T15:55:32.8926670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing 2025-11-03T15:55:32.8927340Z 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-11-03T15:55:32.8928210Z 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-11-03T15:55:32.8928910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler 2025-11-03T15:55:32.8929630Z 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-11-03T15:55:32.8930570Z 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-11-03T15:55:32.8931270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:32.8931870Z copying torch/include/torch/csrc/distributed/c10d/error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:32.8932600Z copying torch/include/torch/csrc/distributed/c10d/debug.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:32.8933340Z copying torch/include/torch/csrc/distributed/c10d/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:32.8934190Z 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-11-03T15:55:32.8934960Z 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-11-03T15:55:32.8935720Z copying torch/include/torch/csrc/distributed/c10d/c10d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:32.8937220Z copying torch/include/torch/csrc/distributed/c10d/TraceUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:32.8938520Z copying torch/include/torch/csrc/distributed/c10d/exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:32.8939920Z copying torch/include/torch/csrc/distributed/c10d/socket.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:32.8941110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-11-03T15:55:32.8942010Z 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-11-03T15:55:32.8943460Z 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-11-03T15:55:32.8944780Z 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-11-03T15:55:32.8945970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-11-03T15:55:32.8946840Z 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-11-03T15:55:32.8947990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8948780Z copying torch/include/torch/csrc/autograd/python_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8950240Z copying torch/include/torch/csrc/autograd/custom_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8951860Z copying torch/include/torch/csrc/autograd/python_linalg_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8953300Z copying torch/include/torch/csrc/autograd/saved_variable_hooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8954590Z copying torch/include/torch/csrc/autograd/record_function_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8955980Z copying torch/include/torch/csrc/autograd/engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8957340Z copying torch/include/torch/csrc/autograd/python_enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8958720Z copying torch/include/torch/csrc/autograd/graph_task.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8960090Z copying torch/include/torch/csrc/autograd/edge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8961550Z copying torch/include/torch/csrc/autograd/python_nested_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8963060Z copying torch/include/torch/csrc/autograd/variable_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8964470Z copying torch/include/torch/csrc/autograd/saved_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8965890Z copying torch/include/torch/csrc/autograd/python_engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8967570Z copying torch/include/torch/csrc/autograd/python_legacy_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8968750Z copying torch/include/torch/csrc/autograd/profiler_python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8970200Z 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-11-03T15:55:32.8971550Z 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-11-03T15:55:32.8973090Z copying torch/include/torch/csrc/autograd/python_cpp_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8974390Z copying torch/include/torch/csrc/autograd/python_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8975780Z copying torch/include/torch/csrc/autograd/VariableTypeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8977180Z copying torch/include/torch/csrc/autograd/python_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8978670Z copying torch/include/torch/csrc/autograd/profiler_kineto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8980040Z copying torch/include/torch/csrc/autograd/variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8981700Z copying torch/include/torch/csrc/autograd/python_fft_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8983090Z copying torch/include/torch/csrc/autograd/python_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8984480Z copying torch/include/torch/csrc/autograd/python_torch_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8985930Z copying torch/include/torch/csrc/autograd/function_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8987250Z copying torch/include/torch/csrc/autograd/input_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8988750Z copying torch/include/torch/csrc/autograd/grad_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8990210Z copying torch/include/torch/csrc/autograd/jit_decomp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8991650Z copying torch/include/torch/csrc/autograd/python_sparse_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8992980Z copying torch/include/torch/csrc/autograd/symbolic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8994360Z copying torch/include/torch/csrc/autograd/input_buffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8995760Z copying torch/include/torch/csrc/autograd/profiler_legacy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8997140Z copying torch/include/torch/csrc/autograd/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8998560Z copying torch/include/torch/csrc/autograd/cpp_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.8999900Z copying torch/include/torch/csrc/autograd/python_special_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.9001330Z copying torch/include/torch/csrc/autograd/FunctionsManual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.9003000Z copying torch/include/torch/csrc/autograd/forward_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.9004280Z copying torch/include/torch/csrc/autograd/python_anomaly_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.9005730Z copying torch/include/torch/csrc/autograd/python_nn_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.9007090Z copying torch/include/torch/csrc/autograd/InferenceMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.9008490Z copying torch/include/torch/csrc/autograd/python_variable_indexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.9009890Z copying torch/include/torch/csrc/autograd/profiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.9011320Z copying torch/include/torch/csrc/autograd/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.9012760Z copying torch/include/torch/csrc/autograd/anomaly_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-11-03T15:55:32.9013980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-11-03T15:55:32.9015110Z 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-11-03T15:55:32.9016240Z copying torch/include/torch/csrc/autograd/generated/ViewFuncs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-11-03T15:55:32.9017930Z 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-11-03T15:55:32.9019290Z copying torch/include/torch/csrc/autograd/generated/VariableType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-11-03T15:55:32.9020700Z copying torch/include/torch/csrc/autograd/generated/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-11-03T15:55:32.9024980Z 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-11-03T15:55:32.9026160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-11-03T15:55:32.9026970Z copying torch/include/torch/csrc/autograd/utils/warnings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-11-03T15:55:32.9028410Z 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-11-03T15:55:32.9029810Z 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-11-03T15:55:32.9031240Z 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-11-03T15:55:32.9032620Z 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-11-03T15:55:32.9034040Z 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-11-03T15:55:32.9035230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-11-03T15:55:32.9036040Z copying torch/include/torch/csrc/autograd/functions/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-11-03T15:55:32.9037400Z copying torch/include/torch/csrc/autograd/functions/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-11-03T15:55:32.9038890Z copying torch/include/torch/csrc/autograd/functions/comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-11-03T15:55:32.9040200Z 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-11-03T15:55:32.9041540Z 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-11-03T15:55:32.9042940Z copying torch/include/torch/csrc/autograd/functions/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-11-03T15:55:32.9044100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx 2025-11-03T15:55:32.9044870Z copying torch/include/torch/csrc/fx/node.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx 2025-11-03T15:55:32.9046150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing 2025-11-03T15:55:32.9046930Z copying torch/include/torch/csrc/multiprocessing/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing 2025-11-03T15:55:32.9048240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-11-03T15:55:32.9048910Z copying torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-11-03T15:55:32.9050400Z copying torch/include/torch/csrc/cuda/GdsFile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-11-03T15:55:32.9051740Z copying torch/include/torch/csrc/cuda/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-11-03T15:55:32.9053100Z copying torch/include/torch/csrc/cuda/THCP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-11-03T15:55:32.9054510Z copying torch/include/torch/csrc/cuda/nccl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-11-03T15:55:32.9055890Z copying torch/include/torch/csrc/cuda/memory_snapshot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-11-03T15:55:32.9057230Z copying torch/include/torch/csrc/cuda/python_nccl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-11-03T15:55:32.9058590Z copying torch/include/torch/csrc/cuda/device_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-11-03T15:55:32.9059940Z copying torch/include/torch/csrc/cuda/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-11-03T15:55:32.9061370Z copying torch/include/torch/csrc/cuda/python_comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-11-03T15:55:32.9062760Z copying torch/include/torch/csrc/cuda/comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-11-03T15:55:32.9064110Z copying torch/include/torch/csrc/cuda/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-11-03T15:55:32.9065530Z copying torch/include/torch/csrc/cuda/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-11-03T15:55:32.9066740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-11-03T15:55:32.9067580Z copying torch/include/torch/csrc/xpu/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-11-03T15:55:32.9068900Z copying torch/include/torch/csrc/xpu/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-11-03T15:55:32.9070250Z copying torch/include/torch/csrc/xpu/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-11-03T15:55:32.9071500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9072330Z copying torch/include/torch/csrc/dynamo/cache_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9073640Z copying torch/include/torch/csrc/dynamo/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9074990Z copying torch/include/torch/csrc/dynamo/cpython_defs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9076550Z copying torch/include/torch/csrc/dynamo/cpp_shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9078930Z copying torch/include/torch/csrc/dynamo/framelocals_mapping.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9080490Z copying torch/include/torch/csrc/dynamo/cpython_includes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9082130Z copying torch/include/torch/csrc/dynamo/extra_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9083760Z copying torch/include/torch/csrc/dynamo/compiled_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9085910Z copying torch/include/torch/csrc/dynamo/eval_frame_cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9087010Z copying torch/include/torch/csrc/dynamo/eval_frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9088580Z copying torch/include/torch/csrc/dynamo/debug_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9090060Z copying torch/include/torch/csrc/dynamo/python_compiled_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9091490Z copying torch/include/torch/csrc/dynamo/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9092930Z copying torch/include/torch/csrc/dynamo/guards.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-11-03T15:55:32.9094240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9095010Z copying torch/include/torch/csrc/utils/object_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9096560Z copying torch/include/torch/csrc/utils/tensor_numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9097990Z copying torch/include/torch/csrc/utils/tensor_dtypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9099330Z copying torch/include/torch/csrc/utils/python_tuples.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9100820Z copying torch/include/torch/csrc/utils/nested.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9102130Z copying torch/include/torch/csrc/utils/python_raii.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9103540Z copying torch/include/torch/csrc/utils/python_numbers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9104940Z copying torch/include/torch/csrc/utils/python_scalars.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9106350Z copying torch/include/torch/csrc/utils/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9107770Z copying torch/include/torch/csrc/utils/tensor_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9109220Z copying torch/include/torch/csrc/utils/tensor_memoryformats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9110740Z copying torch/include/torch/csrc/utils/python_arg_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9112260Z 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-11-03T15:55:32.9113730Z copying torch/include/torch/csrc/utils/schema_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9115150Z copying torch/include/torch/csrc/utils/generated_serialization_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9117200Z copying torch/include/torch/csrc/utils/tensor_new.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9118520Z copying torch/include/torch/csrc/utils/tensor_qschemes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9119950Z copying torch/include/torch/csrc/utils/verbose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9121380Z copying torch/include/torch/csrc/utils/python_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9122780Z copying torch/include/torch/csrc/utils/tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9124170Z copying torch/include/torch/csrc/utils/invalid_arguments.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9125620Z copying torch/include/torch/csrc/utils/pythoncapi_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9127270Z copying torch/include/torch/csrc/utils/cpp_stacktraces.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9128640Z copying torch/include/torch/csrc/utils/device_lazy_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9130110Z copying torch/include/torch/csrc/utils/python_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9131490Z copying torch/include/torch/csrc/utils/python_symnode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9132900Z copying torch/include/torch/csrc/utils/byte_order.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9134240Z copying torch/include/torch/csrc/utils/pycfunction_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9135680Z copying torch/include/torch/csrc/utils/cuda_enabled.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9137110Z copying torch/include/torch/csrc/utils/numpy_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9138490Z copying torch/include/torch/csrc/utils/out_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9139940Z copying torch/include/torch/csrc/utils/tensor_layouts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9141300Z copying torch/include/torch/csrc/utils/structseq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9142780Z copying torch/include/torch/csrc/utils/throughput_benchmark.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9144140Z copying torch/include/torch/csrc/utils/disable_torch_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9145710Z copying torch/include/torch/csrc/utils/pyobject_preservation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9147050Z copying torch/include/torch/csrc/utils/throughput_benchmark-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9148690Z copying torch/include/torch/csrc/utils/tensor_flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9149910Z copying torch/include/torch/csrc/utils/torch_dispatch_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9151290Z copying torch/include/torch/csrc/utils/tensor_apply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9152810Z copying torch/include/torch/csrc/utils/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9154140Z copying torch/include/torch/csrc/utils/python_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9155460Z copying torch/include/torch/csrc/utils/six.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9156860Z copying torch/include/torch/csrc/utils/python_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9158230Z copying torch/include/torch/csrc/utils/variadic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-11-03T15:55:32.9159580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-11-03T15:55:32.9160350Z copying torch/include/torch/csrc/jit/jit_opt_limit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-11-03T15:55:32.9161820Z copying torch/include/torch/csrc/jit/jit_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-11-03T15:55:32.9163200Z copying torch/include/torch/csrc/jit/resource_guard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-11-03T15:55:32.9164450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-11-03T15:55:32.9165240Z 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-11-03T15:55:32.9166720Z 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-11-03T15:55:32.9168330Z 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-11-03T15:55:32.9169890Z 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-11-03T15:55:32.9171170Z 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-11-03T15:55:32.9172590Z 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-11-03T15:55:32.9173960Z 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-11-03T15:55:32.9175660Z 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-11-03T15:55:32.9177030Z copying torch/include/torch/csrc/jit/frontend/parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-11-03T15:55:32.9178420Z copying torch/include/torch/csrc/jit/frontend/strtod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-11-03T15:55:32.9179750Z copying torch/include/torch/csrc/jit/frontend/tree.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-11-03T15:55:32.9181220Z 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-11-03T15:55:32.9182580Z 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-11-03T15:55:32.9184200Z 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-11-03T15:55:32.9186130Z 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-11-03T15:55:32.9187380Z 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-11-03T15:55:32.9189070Z 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-11-03T15:55:32.9190490Z 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-11-03T15:55:32.9191950Z copying torch/include/torch/csrc/jit/frontend/tracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-11-03T15:55:32.9193360Z copying torch/include/torch/csrc/jit/frontend/resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-11-03T15:55:32.9194750Z 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-11-03T15:55:32.9196250Z 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-11-03T15:55:32.9197590Z copying torch/include/torch/csrc/jit/frontend/lexer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-11-03T15:55:32.9199240Z 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-11-03T15:55:32.9200650Z 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-11-03T15:55:32.9202040Z 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-11-03T15:55:32.9203480Z 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-11-03T15:55:32.9204810Z 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-11-03T15:55:32.9206050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-11-03T15:55:32.9206810Z copying torch/include/torch/csrc/jit/python/opaque_obj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-11-03T15:55:32.9208360Z copying torch/include/torch/csrc/jit/python/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-11-03T15:55:32.9209660Z 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-11-03T15:55:32.9211060Z 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-11-03T15:55:32.9212580Z 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-11-03T15:55:32.9213980Z 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-11-03T15:55:32.9215470Z 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-11-03T15:55:32.9216770Z 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-11-03T15:55:32.9218260Z 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-11-03T15:55:32.9219580Z 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-11-03T15:55:32.9220950Z 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-11-03T15:55:32.9222280Z 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-11-03T15:55:32.9223840Z 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-11-03T15:55:32.9226000Z copying torch/include/torch/csrc/jit/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-11-03T15:55:32.9227200Z 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-11-03T15:55:32.9228820Z 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-11-03T15:55:32.9231050Z 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-11-03T15:55:32.9232120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9232990Z 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-11-03T15:55:32.9234590Z 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-11-03T15:55:32.9236050Z 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-11-03T15:55:32.9237420Z 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-11-03T15:55:32.9238810Z copying torch/include/torch/csrc/jit/tensorexpr/lowerings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9240290Z 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-11-03T15:55:32.9241580Z 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-11-03T15:55:32.9242970Z 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-11-03T15:55:32.9244310Z copying torch/include/torch/csrc/jit/tensorexpr/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9245740Z 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-11-03T15:55:32.9247170Z copying torch/include/torch/csrc/jit/tensorexpr/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9248740Z copying torch/include/torch/csrc/jit/tensorexpr/exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9250140Z 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-11-03T15:55:32.9251650Z 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-11-03T15:55:32.9253160Z 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-11-03T15:55:32.9254530Z 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-11-03T15:55:32.9255920Z 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-11-03T15:55:32.9257220Z copying torch/include/torch/csrc/jit/tensorexpr/expr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9258760Z 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-11-03T15:55:32.9260080Z copying torch/include/torch/csrc/jit/tensorexpr/codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9261530Z 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-11-03T15:55:32.9262890Z 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-11-03T15:55:32.9264300Z 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-11-03T15:55:32.9265810Z copying torch/include/torch/csrc/jit/tensorexpr/eval.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9267070Z 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-11-03T15:55:32.9268560Z 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-11-03T15:55:32.9270010Z 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-11-03T15:55:32.9271460Z 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-11-03T15:55:32.9272870Z copying torch/include/torch/csrc/jit/tensorexpr/kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9274240Z copying torch/include/torch/csrc/jit/tensorexpr/loopnest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9275890Z 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-11-03T15:55:32.9277260Z 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-11-03T15:55:32.9278740Z 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-11-03T15:55:32.9280110Z 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-11-03T15:55:32.9281560Z 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-11-03T15:55:32.9282920Z copying torch/include/torch/csrc/jit/tensorexpr/stmt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9284700Z 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-11-03T15:55:32.9285940Z copying torch/include/torch/csrc/jit/tensorexpr/registerizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9287310Z copying torch/include/torch/csrc/jit/tensorexpr/reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9288680Z copying torch/include/torch/csrc/jit/tensorexpr/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9290890Z 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-11-03T15:55:32.9291930Z copying torch/include/torch/csrc/jit/tensorexpr/analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:32.9293370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-11-03T15:55:32.9294240Z 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-11-03T15:55:32.9295650Z 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-11-03T15:55:32.9297440Z 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-11-03T15:55:32.9298460Z 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-11-03T15:55:32.9300000Z 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-11-03T15:55:32.9301430Z 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-11-03T15:55:32.9302760Z 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-11-03T15:55:32.9304120Z 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-11-03T15:55:32.9305560Z 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-11-03T15:55:32.9306630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-11-03T15:55:32.9307450Z 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-11-03T15:55:32.9308930Z copying torch/include/torch/csrc/jit/ir/irparser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-11-03T15:55:32.9310290Z copying torch/include/torch/csrc/jit/ir/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-11-03T15:55:32.9312400Z 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-11-03T15:55:32.9313550Z 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-11-03T15:55:32.9315000Z 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-11-03T15:55:32.9316360Z copying torch/include/torch/csrc/jit/ir/attributes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-11-03T15:55:32.9317780Z 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-11-03T15:55:32.9319220Z copying torch/include/torch/csrc/jit/ir/constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-11-03T15:55:32.9320630Z 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-11-03T15:55:32.9321930Z copying torch/include/torch/csrc/jit/ir/scope.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-11-03T15:55:32.9323400Z 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-11-03T15:55:32.9324700Z 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-11-03T15:55:32.9325930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda 2025-11-03T15:55:32.9326720Z copying torch/include/torch/csrc/jit/cuda/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda 2025-11-03T15:55:32.9328020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-11-03T15:55:32.9328820Z 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-11-03T15:55:32.9330320Z 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-11-03T15:55:32.9331670Z 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-11-03T15:55:32.9333170Z copying torch/include/torch/csrc/jit/serialization/export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-11-03T15:55:32.9334550Z 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-11-03T15:55:32.9336040Z 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-11-03T15:55:32.9337390Z copying torch/include/torch/csrc/jit/serialization/pickler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-11-03T15:55:32.9338820Z 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-11-03T15:55:32.9340140Z 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-11-03T15:55:32.9341630Z 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-11-03T15:55:32.9343270Z 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-11-03T15:55:32.9344500Z 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-11-03T15:55:32.9345920Z 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-11-03T15:55:32.9347370Z copying torch/include/torch/csrc/jit/serialization/pickle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-11-03T15:55:32.9348730Z 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-11-03T15:55:32.9350180Z 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-11-03T15:55:32.9351660Z copying torch/include/torch/csrc/jit/serialization/import.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-11-03T15:55:32.9352960Z 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-11-03T15:55:32.9354400Z copying torch/include/torch/csrc/jit/serialization/unpickler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-11-03T15:55:32.9355880Z 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-11-03T15:55:32.9357210Z 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-11-03T15:55:32.9359470Z copying torch/include/torch/csrc/jit/serialization/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-11-03T15:55:32.9360370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-11-03T15:55:32.9361240Z 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-11-03T15:55:32.9362700Z 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-11-03T15:55:32.9364020Z copying torch/include/torch/csrc/jit/backends/backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-11-03T15:55:32.9365600Z 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-11-03T15:55:32.9366900Z 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-11-03T15:55:32.9368350Z 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-11-03T15:55:32.9369730Z 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-11-03T15:55:32.9371130Z 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-11-03T15:55:32.9372480Z 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-11-03T15:55:32.9373710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-11-03T15:55:32.9374940Z 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-11-03T15:55:32.9376180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-11-03T15:55:32.9377030Z 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-11-03T15:55:32.9378480Z 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-11-03T15:55:32.9379900Z 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-11-03T15:55:32.9381520Z 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-11-03T15:55:32.9383070Z 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-11-03T15:55:32.9384100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack 2025-11-03T15:55:32.9384930Z 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-11-03T15:55:32.9386270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-11-03T15:55:32.9387120Z 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-11-03T15:55:32.9388370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-11-03T15:55:32.9389410Z 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-11-03T15:55:32.9390470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-11-03T15:55:32.9391330Z 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-11-03T15:55:32.9392500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-11-03T15:55:32.9393330Z 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-11-03T15:55:32.9394710Z 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-11-03T15:55:32.9396370Z 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-11-03T15:55:32.9397450Z copying torch/include/torch/csrc/jit/runtime/operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-11-03T15:55:32.9399010Z 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-11-03T15:55:32.9401300Z copying torch/include/torch/csrc/jit/runtime/interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-11-03T15:55:32.9402600Z 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-11-03T15:55:32.9404750Z 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-11-03T15:55:32.9406030Z 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-11-03T15:55:32.9407500Z 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-11-03T15:55:32.9409000Z 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-11-03T15:55:32.9410510Z copying torch/include/torch/csrc/jit/runtime/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-11-03T15:55:32.9411870Z 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-11-03T15:55:32.9413390Z 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-11-03T15:55:32.9414850Z 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-11-03T15:55:32.9416380Z 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-11-03T15:55:32.9417790Z 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-11-03T15:55:32.9419200Z 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-11-03T15:55:32.9420580Z 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-11-03T15:55:32.9422070Z 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-11-03T15:55:32.9423570Z 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-11-03T15:55:32.9424950Z 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-11-03T15:55:32.9426450Z 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-11-03T15:55:32.9427740Z copying torch/include/torch/csrc/jit/runtime/autodiff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-11-03T15:55:32.9429210Z 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-11-03T15:55:32.9430590Z 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-11-03T15:55:32.9437230Z 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-11-03T15:55:32.9437560Z 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-11-03T15:55:32.9437900Z 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-11-03T15:55:32.9438220Z copying torch/include/torch/csrc/jit/runtime/instruction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-11-03T15:55:32.9438560Z 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-11-03T15:55:32.9438770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-11-03T15:55:32.9439660Z 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-11-03T15:55:32.9441240Z 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-11-03T15:55:32.9442590Z 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-11-03T15:55:32.9444030Z 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-11-03T15:55:32.9445440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-11-03T15:55:32.9446280Z 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-11-03T15:55:32.9447870Z 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-11-03T15:55:32.9449050Z 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-11-03T15:55:32.9450500Z 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-11-03T15:55:32.9451850Z 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-11-03T15:55:32.9453190Z 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-11-03T15:55:32.9454570Z 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-11-03T15:55:32.9455940Z 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-11-03T15:55:32.9457640Z 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-11-03T15:55:32.9459050Z 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-11-03T15:55:32.9460220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-11-03T15:55:32.9461000Z 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-11-03T15:55:32.9462420Z 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-11-03T15:55:32.9463870Z 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-11-03T15:55:32.9465250Z 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-11-03T15:55:32.9466570Z 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-11-03T15:55:32.9468150Z 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-11-03T15:55:32.9469410Z 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-11-03T15:55:32.9470830Z 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-11-03T15:55:32.9472150Z 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-11-03T15:55:32.9473660Z 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-11-03T15:55:32.9474970Z copying torch/include/torch/csrc/jit/passes/peephole.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-11-03T15:55:32.9476350Z 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-11-03T15:55:32.9477790Z 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-11-03T15:55:32.9479280Z 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-11-03T15:55:32.9480550Z 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-11-03T15:55:32.9481940Z copying torch/include/torch/csrc/jit/passes/liveness.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-11-03T15:55:32.9483400Z 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-11-03T15:55:32.9484810Z 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-11-03T15:55:32.9486220Z 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-11-03T15:55:32.9487590Z 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-11-03T15:55:32.9488970Z 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-11-03T15:55:32.9490390Z 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-11-03T15:55:32.9491700Z 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-11-03T15:55:32.9493240Z 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-11-03T15:55:32.9494580Z 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-11-03T15:55:32.9495960Z 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-11-03T15:55:32.9497300Z 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-11-03T15:55:32.9498710Z 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-11-03T15:55:32.9500210Z 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-11-03T15:55:32.9501650Z 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-11-03T15:55:32.9503030Z 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-11-03T15:55:32.9504380Z 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-11-03T15:55:32.9505860Z 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-11-03T15:55:32.9507230Z 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-11-03T15:55:32.9508610Z 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-11-03T15:55:32.9510090Z 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-11-03T15:55:32.9511300Z copying torch/include/torch/csrc/jit/passes/inliner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-11-03T15:55:32.9512800Z 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-11-03T15:55:32.9514060Z 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-11-03T15:55:32.9515440Z 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-11-03T15:55:32.9516900Z 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-11-03T15:55:32.9523590Z 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-11-03T15:55:32.9524800Z 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-11-03T15:55:32.9526270Z 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-11-03T15:55:32.9527670Z 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-11-03T15:55:32.9529070Z 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-11-03T15:55:32.9530460Z 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-11-03T15:55:32.9531890Z 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-11-03T15:55:32.9533280Z 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-11-03T15:55:32.9534660Z 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-11-03T15:55:32.9536100Z 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-11-03T15:55:32.9537470Z 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-11-03T15:55:32.9538820Z 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-11-03T15:55:32.9540290Z 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-11-03T15:55:32.9541670Z 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-11-03T15:55:32.9543070Z 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-11-03T15:55:32.9544380Z 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-11-03T15:55:32.9545760Z 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-11-03T15:55:32.9547130Z 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-11-03T15:55:32.9548570Z 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-11-03T15:55:32.9549940Z 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-11-03T15:55:32.9551400Z 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-11-03T15:55:32.9552710Z 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-11-03T15:55:32.9554120Z 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-11-03T15:55:32.9555460Z 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-11-03T15:55:32.9556820Z 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-11-03T15:55:32.9558190Z 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-11-03T15:55:32.9559640Z 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-11-03T15:55:32.9561020Z 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-11-03T15:55:32.9562390Z copying torch/include/torch/csrc/jit/passes/canonicalize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-11-03T15:55:32.9563740Z 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-11-03T15:55:32.9565210Z 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-11-03T15:55:32.9566530Z 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-11-03T15:55:32.9567930Z 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-11-03T15:55:32.9569380Z 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-11-03T15:55:32.9570950Z 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-11-03T15:55:32.9572250Z 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-11-03T15:55:32.9573660Z 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-11-03T15:55:32.9575010Z 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-11-03T15:55:32.9576420Z 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-11-03T15:55:32.9577800Z 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-11-03T15:55:32.9579100Z copying torch/include/torch/csrc/jit/passes/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-11-03T15:55:32.9580510Z 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-11-03T15:55:32.9581800Z 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-11-03T15:55:32.9583330Z copying torch/include/torch/csrc/jit/passes/autocast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-11-03T15:55:32.9584600Z 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-11-03T15:55:32.9586150Z 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-11-03T15:55:32.9587090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-11-03T15:55:32.9587910Z 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-11-03T15:55:32.9589400Z 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-11-03T15:55:32.9590720Z 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-11-03T15:55:32.9592200Z 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-11-03T15:55:32.9593590Z 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-11-03T15:55:32.9595020Z 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-11-03T15:55:32.9601610Z 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-11-03T15:55:32.9602700Z 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-11-03T15:55:32.9604120Z 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-11-03T15:55:32.9605560Z 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-11-03T15:55:32.9606870Z 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-11-03T15:55:32.9608260Z 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-11-03T15:55:32.9609680Z 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-11-03T15:55:32.9611170Z 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-11-03T15:55:32.9612550Z 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-11-03T15:55:32.9614020Z 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-11-03T15:55:32.9615440Z 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-11-03T15:55:32.9616800Z 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-11-03T15:55:32.9618270Z 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-11-03T15:55:32.9619660Z 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-11-03T15:55:32.9621030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-11-03T15:55:32.9621810Z 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-11-03T15:55:32.9623290Z 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-11-03T15:55:32.9624930Z 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-11-03T15:55:32.9626110Z 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-11-03T15:55:32.9627300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-11-03T15:55:32.9628110Z 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-11-03T15:55:32.9629180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-11-03T15:55:32.9630050Z 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-11-03T15:55:32.9631500Z 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-11-03T15:55:32.9632950Z 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-11-03T15:55:32.9634310Z 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-11-03T15:55:32.9635710Z 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-11-03T15:55:32.9636950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-11-03T15:55:32.9637780Z 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-11-03T15:55:32.9639230Z 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-11-03T15:55:32.9640600Z 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-11-03T15:55:32.9641950Z 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-11-03T15:55:32.9643580Z 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-11-03T15:55:32.9645210Z 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-11-03T15:55:32.9646560Z 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-11-03T15:55:32.9647980Z 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-11-03T15:55:32.9650040Z 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-11-03T15:55:32.9651050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/cuda 2025-11-03T15:55:32.9652290Z 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-11-03T15:55:32.9653600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-11-03T15:55:32.9654470Z 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-11-03T15:55:32.9656220Z 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-11-03T15:55:32.9657650Z 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-11-03T15:55:32.9659320Z 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-11-03T15:55:32.9660830Z 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-11-03T15:55:32.9662360Z 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-11-03T15:55:32.9663870Z 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-11-03T15:55:32.9665470Z 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-11-03T15:55:32.9666860Z 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-11-03T15:55:32.9668480Z 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-11-03T15:55:32.9669840Z 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-11-03T15:55:32.9671060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-11-03T15:55:32.9671900Z 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-11-03T15:55:32.9673550Z 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-11-03T15:55:32.9680830Z 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-11-03T15:55:32.9681950Z 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-11-03T15:55:32.9683370Z 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-11-03T15:55:32.9684760Z 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-11-03T15:55:32.9686150Z 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-11-03T15:55:32.9687570Z 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-11-03T15:55:32.9688920Z 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-11-03T15:55:32.9690280Z 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-11-03T15:55:32.9691770Z 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-11-03T15:55:32.9693040Z 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-11-03T15:55:32.9694280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-11-03T15:55:32.9695090Z 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-11-03T15:55:32.9696570Z 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-11-03T15:55:32.9698080Z 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-11-03T15:55:32.9699300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-11-03T15:55:32.9700090Z 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-11-03T15:55:32.9701540Z 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-11-03T15:55:32.9702660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-11-03T15:55:32.9703440Z 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-11-03T15:55:32.9704970Z 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-11-03T15:55:32.9706140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-11-03T15:55:32.9706920Z 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-11-03T15:55:32.9708320Z 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-11-03T15:55:32.9709670Z copying torch/include/torch/csrc/jit/mobile/observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-11-03T15:55:32.9711160Z 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-11-03T15:55:32.9712480Z 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-11-03T15:55:32.9713850Z copying torch/include/torch/csrc/jit/mobile/quantization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-11-03T15:55:32.9715280Z 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-11-03T15:55:32.9716650Z copying torch/include/torch/csrc/jit/mobile/code.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-11-03T15:55:32.9718100Z copying torch/include/torch/csrc/jit/mobile/interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-11-03T15:55:32.9719440Z copying torch/include/torch/csrc/jit/mobile/frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-11-03T15:55:32.9720950Z copying torch/include/torch/csrc/jit/mobile/method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-11-03T15:55:32.9722240Z 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-11-03T15:55:32.9723620Z 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-11-03T15:55:32.9724980Z 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-11-03T15:55:32.9726400Z 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-11-03T15:55:32.9727810Z 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-11-03T15:55:32.9729190Z 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-11-03T15:55:32.9730520Z 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-11-03T15:55:32.9732090Z copying torch/include/torch/csrc/jit/mobile/import.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-11-03T15:55:32.9733510Z copying torch/include/torch/csrc/jit/mobile/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-11-03T15:55:32.9734790Z copying torch/include/torch/csrc/jit/mobile/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-11-03T15:55:32.9736100Z 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-11-03T15:55:32.9737320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-11-03T15:55:32.9738170Z 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-11-03T15:55:32.9739720Z 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-11-03T15:55:32.9741070Z 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-11-03T15:55:32.9742420Z 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-11-03T15:55:32.9743590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-11-03T15:55:32.9744400Z 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-11-03T15:55:32.9746020Z 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-11-03T15:55:32.9747330Z 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-11-03T15:55:32.9748740Z 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-11-03T15:55:32.9750140Z 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-11-03T15:55:32.9751680Z 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-11-03T15:55:32.9753050Z 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-11-03T15:55:32.9754180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-11-03T15:55:32.9754980Z 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-11-03T15:55:32.9756410Z 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-11-03T15:55:32.9757820Z 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-11-03T15:55:32.9758940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-11-03T15:55:32.9759780Z 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-11-03T15:55:32.9761190Z 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-11-03T15:55:32.9762530Z 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-11-03T15:55:32.9763780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/optim 2025-11-03T15:55:32.9764560Z 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-11-03T15:55:32.9765840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-11-03T15:55:32.9766660Z 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-11-03T15:55:32.9768150Z 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-11-03T15:55:32.9769640Z 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-11-03T15:55:32.9771540Z 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-11-03T15:55:32.9772690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-11-03T15:55:32.9773500Z 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-11-03T15:55:32.9775840Z copying torch/include/torch/csrc/jit/api/method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-11-03T15:55:32.9777250Z 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-11-03T15:55:32.9778750Z copying torch/include/torch/csrc/jit/api/object.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-11-03T15:55:32.9780060Z copying torch/include/torch/csrc/jit/api/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-11-03T15:55:32.9781520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-11-03T15:55:32.9783250Z copying torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-11-03T15:55:32.9785640Z copying torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-11-03T15:55:32.9786730Z copying torch/include/torch/csrc/lazy/generated/LazyIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-11-03T15:55:32.9789820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-11-03T15:55:32.9790370Z 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-11-03T15:55:32.9791990Z 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-11-03T15:55:32.9793640Z copying torch/include/torch/csrc/lazy/core/config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-11-03T15:55:32.9795100Z 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-11-03T15:55:32.9796510Z copying torch/include/torch/csrc/lazy/core/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-11-03T15:55:32.9797970Z 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-11-03T15:55:32.9799360Z 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-11-03T15:55:32.9800950Z copying torch/include/torch/csrc/lazy/core/cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-11-03T15:55:32.9803730Z 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-11-03T15:55:32.9805110Z copying torch/include/torch/csrc/lazy/core/shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-11-03T15:55:32.9806730Z 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-11-03T15:55:32.9808130Z copying torch/include/torch/csrc/lazy/core/unique.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-11-03T15:55:32.9809620Z 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-11-03T15:55:32.9811030Z copying torch/include/torch/csrc/lazy/core/util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-11-03T15:55:32.9812470Z 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-11-03T15:55:32.9813980Z copying torch/include/torch/csrc/lazy/core/metrics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-11-03T15:55:32.9815380Z 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-11-03T15:55:32.9816830Z 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-11-03T15:55:32.9818220Z 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-11-03T15:55:32.9819580Z copying torch/include/torch/csrc/lazy/core/helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-11-03T15:55:32.9821000Z copying torch/include/torch/csrc/lazy/core/trie.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-11-03T15:55:32.9822400Z copying torch/include/torch/csrc/lazy/core/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-11-03T15:55:32.9823820Z copying torch/include/torch/csrc/lazy/core/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-11-03T15:55:32.9825120Z 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-11-03T15:55:32.9826550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/internal_ops 2025-11-03T15:55:32.9827340Z 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-11-03T15:55:32.9828660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops 2025-11-03T15:55:32.9829310Z 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-11-03T15:55:32.9830800Z 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-11-03T15:55:32.9831950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-11-03T15:55:32.9832720Z 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-11-03T15:55:32.9834140Z copying torch/include/torch/csrc/lazy/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-11-03T15:55:32.9835370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-11-03T15:55:32.9836130Z 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-11-03T15:55:32.9837630Z 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-11-03T15:55:32.9839000Z 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-11-03T15:55:32.9840340Z 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-11-03T15:55:32.9841750Z 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-11-03T15:55:32.9843110Z 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-11-03T15:55:32.9844530Z 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-11-03T15:55:32.9845880Z 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-11-03T15:55:32.9847270Z 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-11-03T15:55:32.9849140Z 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-11-03T15:55:32.9849910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-11-03T15:55:32.9850700Z 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-11-03T15:55:32.9852050Z 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-11-03T15:55:32.9853550Z 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-11-03T15:55:32.9854690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-11-03T15:55:32.9855440Z 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-11-03T15:55:32.9856840Z 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-11-03T15:55:32.9858190Z 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-11-03T15:55:32.9859580Z 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-11-03T15:55:32.9860920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia 2025-11-03T15:55:32.9861720Z copying torch/include/torch/csrc/mtia/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia 2025-11-03T15:55:32.9862960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler 2025-11-03T15:55:32.9863800Z copying torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler 2025-11-03T15:55:32.9865010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-11-03T15:55:32.9866550Z 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-11-03T15:55:32.9868050Z 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-11-03T15:55:32.9869420Z 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-11-03T15:55:32.9870980Z 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-11-03T15:55:32.9872150Z 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-11-03T15:55:32.9873580Z 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-11-03T15:55:32.9874980Z 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-11-03T15:55:32.9876320Z 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-11-03T15:55:32.9877710Z 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-11-03T15:55:32.9879030Z 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-11-03T15:55:32.9880370Z 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-11-03T15:55:32.9881840Z 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-11-03T15:55:32.9883180Z 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-11-03T15:55:32.9884890Z 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-11-03T15:55:32.9885970Z 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-11-03T15:55:32.9887370Z 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-11-03T15:55:32.9888760Z 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-11-03T15:55:32.9890190Z 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-11-03T15:55:32.9891500Z 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-11-03T15:55:32.9893200Z 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-11-03T15:55:32.9894540Z 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-11-03T15:55:32.9895990Z 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-11-03T15:55:32.9897330Z 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-11-03T15:55:32.9898720Z 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-11-03T15:55:32.9899910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-11-03T15:55:32.9900740Z 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-11-03T15:55:32.9902220Z 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-11-03T15:55:32.9903670Z 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-11-03T15:55:32.9905140Z 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-11-03T15:55:32.9906500Z 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-11-03T15:55:32.9907850Z 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-11-03T15:55:32.9909240Z 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-11-03T15:55:32.9910870Z 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-11-03T15:55:32.9912270Z 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-11-03T15:55:32.9913480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-11-03T15:55:32.9914370Z 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-11-03T15:55:32.9915920Z 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-11-03T15:55:32.9917180Z 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-11-03T15:55:32.9918700Z 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-11-03T15:55:32.9919960Z 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-11-03T15:55:32.9921450Z 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-11-03T15:55:32.9922850Z 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-11-03T15:55:32.9924180Z 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-11-03T15:55:32.9925680Z 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-11-03T15:55:32.9926980Z 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-11-03T15:55:32.9928410Z 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-11-03T15:55:32.9929830Z 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-11-03T15:55:32.9931180Z 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-11-03T15:55:32.9932890Z 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-11-03T15:55:32.9934250Z 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-11-03T15:55:32.9935830Z 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-11-03T15:55:32.9937240Z 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-11-03T15:55:32.9938650Z 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-11-03T15:55:32.9940120Z 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-11-03T15:55:32.9941540Z 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-11-03T15:55:32.9942920Z 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-11-03T15:55:32.9944320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-11-03T15:55:32.9945210Z 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-11-03T15:55:32.9946320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-11-03T15:55:32.9947330Z 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-11-03T15:55:32.9949500Z 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-11-03T15:55:32.9950440Z 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-11-03T15:55:32.9951590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-11-03T15:55:32.9952470Z 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-11-03T15:55:32.9953900Z 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-11-03T15:55:32.9955250Z 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-11-03T15:55:32.9956690Z 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-11-03T15:55:32.9958050Z 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-11-03T15:55:32.9959470Z 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-11-03T15:55:32.9960910Z 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-11-03T15:55:32.9962360Z 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-11-03T15:55:32.9963730Z 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-11-03T15:55:32.9965150Z 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-11-03T15:55:32.9966510Z 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-11-03T15:55:32.9967940Z 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-11-03T15:55:32.9969580Z 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-11-03T15:55:32.9970710Z 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-11-03T15:55:32.9972080Z 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-11-03T15:55:32.9973670Z 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-11-03T15:55:32.9975050Z 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-11-03T15:55:32.9976770Z 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-11-03T15:55:32.9978120Z 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-11-03T15:55:32.9979480Z 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-11-03T15:55:32.9980980Z 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-11-03T15:55:32.9982340Z 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-11-03T15:55:32.9983770Z 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-11-03T15:55:32.9985180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-11-03T15:55:32.9986060Z 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-11-03T15:55:32.9987500Z 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-11-03T15:55:32.9989750Z 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-11-03T15:55:32.9990970Z 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-11-03T15:55:32.9992400Z 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-11-03T15:55:32.9993860Z 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-11-03T15:55:32.9995280Z 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-11-03T15:55:32.9996850Z 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-11-03T15:55:32.9998160Z 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-11-03T15:55:32.9999830Z 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-11-03T15:55:33.0000740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-11-03T15:55:33.0001660Z 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-11-03T15:55:33.0003460Z 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-11-03T15:55:33.0005110Z 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-11-03T15:55:33.0006540Z 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-11-03T15:55:33.0008030Z 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-11-03T15:55:33.0009440Z 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-11-03T15:55:33.0010860Z 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-11-03T15:55:33.0012530Z 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-11-03T15:55:33.0013660Z 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-11-03T15:55:33.0015090Z 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-11-03T15:55:33.0016490Z 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-11-03T15:55:33.0018160Z 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-11-03T15:55:33.0019830Z 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-11-03T15:55:33.0021200Z 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-11-03T15:55:33.0022670Z 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-11-03T15:55:33.0024080Z 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-11-03T15:55:33.0025490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python 2025-11-03T15:55:33.0026360Z 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-11-03T15:55:33.0027530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-11-03T15:55:33.0028390Z 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-11-03T15:55:33.0029790Z 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-11-03T15:55:33.0031130Z 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-11-03T15:55:33.0032490Z 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-11-03T15:55:33.0033990Z 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-11-03T15:55:33.0035300Z 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-11-03T15:55:33.0036700Z 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-11-03T15:55:33.0038100Z 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-11-03T15:55:33.0039400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-11-03T15:55:33.0040260Z 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-11-03T15:55:33.0041750Z 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-11-03T15:55:33.0043230Z 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-11-03T15:55:33.0044320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-11-03T15:55:33.0045120Z 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-11-03T15:55:33.0046570Z 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-11-03T15:55:33.0047980Z 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-11-03T15:55:33.0049370Z 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-11-03T15:55:33.0050470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nativert 2025-11-03T15:55:33.0051350Z 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-11-03T15:55:33.0052540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail 2025-11-03T15:55:33.0053360Z 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-11-03T15:55:33.0055210Z 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-11-03T15:55:33.0055900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-11-03T15:55:33.0056720Z 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-11-03T15:55:33.0058240Z 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-11-03T15:55:33.0059940Z 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-11-03T15:55:33.0061160Z 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-11-03T15:55:33.0062520Z 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-11-03T15:55:33.0063930Z 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-11-03T15:55:33.0065300Z 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-11-03T15:55:33.0066630Z 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-11-03T15:55:33.0067920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-11-03T15:55:33.0068900Z 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-11-03T15:55:33.0070520Z 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-11-03T15:55:33.0072120Z 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-11-03T15:55:33.0073720Z 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-11-03T15:55:33.0075530Z 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-11-03T15:55:33.0077300Z 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-11-03T15:55:33.0078890Z 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-11-03T15:55:33.0080270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-11-03T15:55:33.0081180Z 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-11-03T15:55:33.0082850Z 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-11-03T15:55:33.0084570Z 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-11-03T15:55:33.0085750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-11-03T15:55:33.0086680Z 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-11-03T15:55:33.0088240Z 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-11-03T15:55:33.0089630Z 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-11-03T15:55:33.0091520Z 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-11-03T15:55:33.0092520Z 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-11-03T15:55:33.0093620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-11-03T15:55:33.0094480Z 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-11-03T15:55:33.0095950Z 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-11-03T15:55:33.0097300Z 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-11-03T15:55:33.0098720Z 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-11-03T15:55:33.0100150Z 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-11-03T15:55:33.0101500Z 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-11-03T15:55:33.0103030Z 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-11-03T15:55:33.0104620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-11-03T15:55:33.0105530Z 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-11-03T15:55:33.0107350Z 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-11-03T15:55:33.0108740Z 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-11-03T15:55:33.0109770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-11-03T15:55:33.0110620Z copying torch/include/torch/csrc/profiler/combined_traceback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-11-03T15:55:33.0112150Z copying torch/include/torch/csrc/profiler/events.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-11-03T15:55:33.0113310Z copying torch/include/torch/csrc/profiler/kineto_shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-11-03T15:55:33.0114620Z copying torch/include/torch/csrc/profiler/api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-11-03T15:55:33.0116020Z copying torch/include/torch/csrc/profiler/kineto_client_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-11-03T15:55:33.0117390Z copying torch/include/torch/csrc/profiler/util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-11-03T15:55:33.0118770Z copying torch/include/torch/csrc/profiler/containers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-11-03T15:55:33.0120270Z copying torch/include/torch/csrc/profiler/collection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-11-03T15:55:33.0121800Z copying torch/include/torch/csrc/profiler/perf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-11-03T15:55:33.0123190Z copying torch/include/torch/csrc/profiler/data_flow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-11-03T15:55:33.0124530Z copying torch/include/torch/csrc/profiler/perf-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-11-03T15:55:33.0125750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs 2025-11-03T15:55:33.0126530Z copying torch/include/torch/csrc/profiler/stubs/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs 2025-11-03T15:55:33.0127730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-11-03T15:55:33.0128580Z 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-11-03T15:55:33.0129960Z 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-11-03T15:55:33.0131340Z 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-11-03T15:55:33.0132710Z 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-11-03T15:55:33.0133970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-11-03T15:55:33.0134640Z copying torch/include/torch/csrc/profiler/python/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-11-03T15:55:33.0136120Z 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-11-03T15:55:33.0137420Z copying torch/include/torch/csrc/profiler/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-11-03T15:55:33.0138730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-11-03T15:55:33.0139580Z copying torch/include/torch/csrc/profiler/orchestration/vulkan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-11-03T15:55:33.0140950Z copying torch/include/torch/csrc/profiler/orchestration/observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-11-03T15:55:33.0142510Z 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-11-03T15:55:33.0143450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-11-03T15:55:33.0144270Z copying torch/include/torch/csrc/profiler/unwind/unwinder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-11-03T15:55:33.0145660Z 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-11-03T15:55:33.0147010Z copying torch/include/torch/csrc/profiler/unwind/unwind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-11-03T15:55:33.0148590Z copying torch/include/torch/csrc/profiler/unwind/sections.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-11-03T15:55:33.0149740Z 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-11-03T15:55:33.0151050Z 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-11-03T15:55:33.0152460Z 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-11-03T15:55:33.0153840Z copying torch/include/torch/csrc/profiler/unwind/action.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-11-03T15:55:33.0155220Z 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-11-03T15:55:33.0156690Z 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-11-03T15:55:33.0157920Z copying torch/include/torch/csrc/profiler/unwind/fde.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-11-03T15:55:33.0159260Z copying torch/include/torch/csrc/profiler/unwind/communicate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-11-03T15:55:33.0160710Z copying torch/include/torch/csrc/profiler/unwind/lexer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-11-03T15:55:33.0162170Z 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-11-03T15:55:33.0163520Z 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-11-03T15:55:33.0164920Z 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-11-03T15:55:33.0166110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor 2025-11-03T15:55:33.0166920Z copying torch/include/torch/csrc/tensor/python_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor 2025-11-03T15:55:33.0172510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-11-03T15:55:33.0173000Z copying torch/include/torch/csrc/export/pt2_archive_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-11-03T15:55:33.0173300Z copying torch/include/torch/csrc/export/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-11-03T15:55:33.0173610Z copying torch/include/torch/csrc/export/example_upgraders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-11-03T15:55:33.0173900Z copying torch/include/torch/csrc/export/upgrader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-11-03T15:55:33.0174810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functionalization 2025-11-03T15:55:33.0175670Z copying torch/include/torch/csrc/functionalization/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functionalization 2025-11-03T15:55:33.0176950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch 2025-11-03T15:55:33.0177730Z copying torch/include/torch/csrc/functorch/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch 2025-11-03T15:55:33.0178980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/acc 2025-11-03T15:55:33.0179710Z copying torch/include/torch/csrc/acc/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/acc 2025-11-03T15:55:33.0180930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0181660Z copying torch/include/kineto/ClientInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0183470Z copying torch/include/kineto/GenericTraceActivity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0184470Z copying torch/include/kineto/IActivityProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0185920Z copying torch/include/kineto/Config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0187250Z copying torch/include/kineto/TraceSpan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0188600Z copying torch/include/kineto/LoggingAPI.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0189910Z copying torch/include/kineto/ITraceActivity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0191320Z copying torch/include/kineto/ActivityProfilerInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0192640Z copying torch/include/kineto/ActivityTraceInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0194090Z copying torch/include/kineto/output_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0195440Z copying torch/include/kineto/ThreadUtil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0196750Z copying torch/include/kineto/ActivityType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0198140Z copying torch/include/kineto/libkineto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0199500Z copying torch/include/kineto/time_since_epoch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0200880Z copying torch/include/kineto/ILoggerObserver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0202400Z copying torch/include/kineto/AbstractConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-11-03T15:55:33.0203370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai 2025-11-03T15:55:33.0204070Z copying torch/include/kai/kai_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai 2025-11-03T15:55:33.0205440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/dwconv/pack 2025-11-03T15:55:33.0207030Z copying torch/include/kai/ukernels/dwconv/pack/kai_rhs_dwconv_pack_x32p1vlx1b_x32_x32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/dwconv/pack 2025-11-03T15:55:33.0208360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/dwconv/dwconv_f32_f32_f32p 2025-11-03T15:55:33.0209410Z copying torch/include/kai/ukernels/dwconv/dwconv_f32_f32_f32p/kai_dwconv_clamp_f32_f32_f32p1vlx1b_3x3_s1_4xc_sme2_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/dwconv/dwconv_f32_f32_f32p 2025-11-03T15:55:33.0211090Z copying torch/include/kai/ukernels/dwconv/dwconv_f32_f32_f32p/kai_dwconv_clamp_f32_f32_f32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/dwconv/dwconv_f32_f32_f32p 2025-11-03T15:55:33.0212290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-11-03T15:55:33.0213730Z 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-11-03T15:55:33.0215280Z 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-11-03T15:55:33.0216800Z 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-11-03T15:55:33.0218300Z 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-11-03T15:55:33.0219800Z 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-11-03T15:55:33.0221240Z 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-11-03T15:55:33.0222670Z 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-11-03T15:55:33.0224190Z 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-11-03T15:55:33.0225670Z 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-11-03T15:55:33.0227210Z 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-11-03T15:55:33.0228640Z 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-11-03T15:55:33.0230530Z 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-11-03T15:55:33.0231290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p 2025-11-03T15:55:33.0232290Z copying torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p/kai_matmul_clamp_bf16_qai8dxp4x8_qsi4c32p4x8_16x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p 2025-11-03T15:55:33.0233780Z copying torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p/kai_matmul_clamp_bf16_qai8dxp_qsi4c32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p 2025-11-03T15:55:33.0235290Z copying torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p/kai_matmul_clamp_bf16_qai8dxp1x8_qsi4c32p4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p 2025-11-03T15:55:33.0236440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-11-03T15:55:33.0237450Z 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-11-03T15:55:33.0239010Z 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-11-03T15:55:33.0240610Z 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-11-03T15:55:33.0242050Z 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-11-03T15:55:33.0243590Z 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-11-03T15:55:33.0244600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-11-03T15:55:33.0245700Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p32x1b_6x32_neon_mla_cortexa55.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-11-03T15:55:33.0247080Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p32x1b_6x32_neon_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-11-03T15:55:33.0248500Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x8vl_sme_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-11-03T15:55:33.0250210Z 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-11-03T15:55:33.0251420Z 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-11-03T15:55:33.0252940Z 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-11-03T15:55:33.0254060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-11-03T15:55:33.0254920Z 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-11-03T15:55:33.0256500Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x8vl_sme_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-11-03T15:55:33.0258250Z 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-11-03T15:55:33.0259960Z 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-11-03T15:55:33.0261270Z 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-11-03T15:55:33.0262770Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16x1b_6x16_neon_mla_cortexa55.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-11-03T15:55:33.0264270Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16x1b_6x16_neon_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-11-03T15:55:33.0265390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-11-03T15:55:33.0266390Z 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-11-03T15:55:33.0267880Z 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-11-03T15:55:33.0269330Z 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-11-03T15:55:33.0270850Z 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-11-03T15:55:33.0272260Z 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-11-03T15:55:33.0273790Z 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-11-03T15:55:33.0275290Z 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-11-03T15:55:33.0276860Z 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-11-03T15:55:33.0277860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-11-03T15:55:33.0278860Z 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-11-03T15:55:33.0280420Z 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-11-03T15:55:33.0281820Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x4_qai4c32p4vlx4_1x4vl_sme2_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-11-03T15:55:33.0283420Z 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-11-03T15:55:33.0284760Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x4_qai4c32p4x4_8x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-11-03T15:55:33.0286330Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x4_qai4c32p4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-11-03T15:55:33.0287960Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1vlx4_qai4c32p4vlx4_1vlx4vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-11-03T15:55:33.0288940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:33.0289810Z 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-11-03T15:55:33.0291290Z 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-11-03T15:55:33.0292730Z 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-11-03T15:55:33.0294150Z 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-11-03T15:55:33.0295550Z 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-11-03T15:55:33.0296900Z 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-11-03T15:55:33.0298490Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p4x8sb_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:33.0299820Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x32p16x1b_x32_x32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:33.0301290Z 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-11-03T15:55:33.0302690Z 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-11-03T15:55:33.0304060Z 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-11-03T15:55:33.0305630Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32ps1s0nrx4_qau4c32s1s0_f32_f32_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:33.0306970Z 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-11-03T15:55:33.0308410Z 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-11-03T15:55:33.0309870Z 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-11-03T15:55:33.0311300Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pnrx4_qsu4c32s1s0_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:33.0312720Z 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-11-03T15:55:33.0314180Z 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-11-03T15:55:33.0315710Z 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-11-03T15:55:33.0317590Z 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-11-03T15:55:33.0318940Z 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-11-03T15:55:33.0320580Z 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-11-03T15:55:33.0322000Z 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-11-03T15:55:33.0323460Z 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-11-03T15:55:33.0324910Z 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-11-03T15:55:33.0326460Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32ps1s0nrx4_qau4c32s0s1_f32_f32_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:33.0327880Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_bf16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:33.0329250Z 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-11-03T15:55:33.0330760Z 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-11-03T15:55:33.0332180Z 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-11-03T15:55:33.0333670Z 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-11-03T15:55:33.0335110Z 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-11-03T15:55:33.0336820Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pnrx8_qsu4c32s1s0_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:33.0338130Z 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-11-03T15:55:33.0339630Z 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-11-03T15:55:33.0341040Z 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-11-03T15:55:33.0342530Z 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-11-03T15:55:33.0344060Z 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-11-03T15:55:33.0345410Z 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-11-03T15:55:33.0346780Z 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-11-03T15:55:33.0348290Z 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-11-03T15:55:33.0349640Z 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-11-03T15:55:33.0351140Z 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-11-03T15:55:33.0352560Z 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-11-03T15:55:33.0354320Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p32x1b_x16_x16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:33.0355400Z 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-11-03T15:55:33.0356860Z 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-11-03T15:55:33.0358330Z 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-11-03T15:55:33.0359770Z 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-11-03T15:55:33.0360980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-11-03T15:55:33.0361960Z 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-11-03T15:55:33.0363550Z 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-11-03T15:55:33.0365080Z 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-11-03T15:55:33.0366520Z 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-11-03T15:55:33.0368150Z 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-11-03T15:55:33.0369470Z 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-11-03T15:55:33.0371020Z 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-11-03T15:55:33.0372390Z 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-11-03T15:55:33.0374500Z 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-11-03T15:55:33.0375750Z 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-11-03T15:55:33.0377000Z 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-11-03T15:55:33.0378530Z 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-11-03T15:55:33.0379580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-11-03T15:55:33.0380470Z 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-11-03T15:55:33.0381950Z 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-11-03T15:55:33.0383050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-11-03T15:55:33.0384080Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxp2vlx4sb_2vlx2vl_sme_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-11-03T15:55:33.0385580Z 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-11-03T15:55:33.0387010Z 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-11-03T15:55:33.0388130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-11-03T15:55:33.0389160Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4vlx4_1x4vl_sme_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-11-03T15:55:33.0390710Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1vlx4_qsi8cxp4vlx4_1vlx4vl_sme_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-11-03T15:55:33.0392210Z 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-11-03T15:55:33.0393650Z 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-11-03T15:55:33.0395070Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4vlx4_1x4vl_sme2_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-11-03T15:55:33.0396670Z 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-11-03T15:55:33.0398030Z 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-11-03T15:55:33.0399510Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1vlx4_qsi8cxp4vlx4_1vlx4vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-11-03T15:55:33.0400980Z 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-11-03T15:55:33.0402030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-11-03T15:55:33.0403070Z 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-11-03T15:55:33.0404560Z 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-11-03T15:55:33.0406020Z 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-11-03T15:55:33.0407460Z 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-11-03T15:55:33.0409390Z 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-11-03T15:55:33.0410290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-11-03T15:55:33.0411160Z 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-11-03T15:55:33.0412550Z 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-11-03T15:55:33.0414110Z 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-11-03T15:55:33.0415220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-11-03T15:55:33.0416240Z 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-11-03T15:55:33.0417700Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qai4c32p4vlx4_1x4vl_sme2_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-11-03T15:55:33.0419220Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qai4c32p4x4_8x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-11-03T15:55:33.0420780Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qai4c32p4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-11-03T15:55:33.0422300Z 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-11-03T15:55:33.0424060Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qai4c32p4vlx4_1vlx4vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-11-03T15:55:33.0425340Z 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-11-03T15:55:33.0426450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-11-03T15:55:33.0427560Z 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-11-03T15:55:33.0429140Z 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-11-03T15:55:33.0430050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp 2025-11-03T15:55:33.0431030Z copying torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp/kai_matmul_clamp_bf16_qai8dxp1x8_qsi4cxp8x8_1x8_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp 2025-11-03T15:55:33.0432540Z copying torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp/kai_matmul_clamp_bf16_qai8dxp4x8_qsi4cxp8x8_8x8_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp 2025-11-03T15:55:33.0433970Z copying torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp/kai_matmul_clamp_bf16_qai8dxp_qsi4cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp 2025-11-03T15:55:33.0435120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-11-03T15:55:33.0436060Z 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-11-03T15:55:33.0437560Z 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-11-03T15:55:33.0439000Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-11-03T15:55:33.0440130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-11-03T15:55:33.0441030Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2b_2vlx2vl_sme_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-11-03T15:55:33.0442520Z 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-11-03T15:55:33.0443940Z 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-11-03T15:55:33.0445040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-11-03T15:55:33.0445990Z 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-11-03T15:55:33.0447520Z copying torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxp2vlx4sb_2vlx2vl_sme_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-11-03T15:55:33.0448970Z 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-11-03T15:55:33.0450100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-11-03T15:55:33.0450990Z 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-11-03T15:55:33.0452470Z 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-11-03T15:55:33.0453930Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2b_2vlx2vl_sme_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-11-03T15:55:33.0455010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-11-03T15:55:33.0455940Z 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-11-03T15:55:33.0457480Z 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-11-03T15:55:33.0458540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-11-03T15:55:33.0459550Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-11-03T15:55:33.0460990Z 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-11-03T15:55:33.0462440Z 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-11-03T15:55:33.0463540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0464220Z copying torch/include/ATen/Formatting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0465690Z copying torch/include/ATen/NestedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0467000Z copying torch/include/ATen/CPUFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0468380Z copying torch/include/ATen/SparseMPSFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0469890Z copying torch/include/ATen/LegacyBatchedFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0471200Z copying torch/include/ATen/CollapseDims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0472730Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0473960Z copying torch/include/ATen/MetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0475340Z copying torch/include/ATen/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0476660Z copying torch/include/ATen/TensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0478160Z copying torch/include/ATen/DeviceAccelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0479260Z copying torch/include/ATen/TensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0480620Z copying torch/include/ATen/MemoryOverlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0482020Z copying torch/include/ATen/TensorSubclassLikeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0483420Z copying torch/include/ATen/LegacyVmapMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0484830Z copying torch/include/ATen/InitialTensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0486280Z copying torch/include/ATen/Version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0487730Z copying torch/include/ATen/DLConvertor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0489210Z copying torch/include/ATen/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0490710Z copying torch/include/ATen/FuncTorchTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0492370Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0493840Z copying torch/include/ATen/jiterator_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0495260Z copying torch/include/ATen/Operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0497190Z copying torch/include/ATen/CPUFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0498690Z copying torch/include/ATen/ceil_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0500070Z copying torch/include/ATen/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0502390Z copying torch/include/ATen/NativeMetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0503220Z copying torch/include/ATen/dlpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0504560Z copying torch/include/ATen/Config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0505940Z copying torch/include/ATen/ThreadLocalPythonObjects.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0507230Z copying torch/include/ATen/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0508610Z copying torch/include/ATen/SparseCsrTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0510160Z copying torch/include/ATen/TracerMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0511470Z copying torch/include/ATen/BlasBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0512770Z copying torch/include/ATen/Backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0514140Z copying torch/include/ATen/RegistrationDeclarations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0520480Z copying torch/include/ATen/CompositeImplicitAutogradFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0521370Z copying torch/include/ATen/PTThreadPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0522790Z copying torch/include/ATen/OpaqueTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0524080Z copying torch/include/ATen/MapAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0525430Z copying torch/include/ATen/record_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0526920Z copying torch/include/ATen/WrapDimUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0528410Z copying torch/include/ATen/RedispatchFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0540690Z copying torch/include/ATen/Context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0542330Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0543730Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0545120Z copying torch/include/ATen/div_rtn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0546460Z copying torch/include/ATen/ExpandUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0547980Z copying torch/include/ATen/MPSFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0549400Z copying torch/include/ATen/TypeDefault.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0550740Z copying torch/include/ATen/MPSFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0552220Z copying torch/include/ATen/VmapGeneratedPlumbing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0562110Z copying torch/include/ATen/MethodOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0563570Z copying torch/include/ATen/CPUFixedAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0565180Z copying torch/include/ATen/NamedTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0566480Z copying torch/include/ATen/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0568010Z copying torch/include/ATen/TensorIteratorInternal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0569350Z copying torch/include/ATen/LinalgBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0570820Z copying torch/include/ATen/LegacyBatchedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0572250Z copying torch/include/ATen/SparseCsrMPSFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0573670Z copying torch/include/ATen/ArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0575080Z copying torch/include/ATen/SequenceNumber.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0576450Z copying torch/include/ATen/FunctionalStorageImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0577790Z copying torch/include/ATen/ExpandBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0579150Z copying torch/include/ATen/Parallel-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0580540Z copying torch/include/ATen/MatrixRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0581850Z copying torch/include/ATen/CUDAFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0583580Z copying torch/include/ATen/CompositeExplicitAutogradFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0590460Z copying torch/include/ATen/FunctionalTensorWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0591060Z copying torch/include/ATen/SparseCsrTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0591610Z copying torch/include/ATen/NumericUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0592100Z copying torch/include/ATen/ATen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0592580Z copying torch/include/ATen/TensorNames.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0593090Z copying torch/include/ATen/TensorMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0593610Z copying torch/include/ATen/TensorIndexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0595020Z copying torch/include/ATen/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0596380Z copying torch/include/ATen/SparseTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0597780Z copying torch/include/ATen/SavedTensorHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0599230Z copying torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0600790Z copying torch/include/ATen/StorageUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0602170Z copying torch/include/ATen/WrapDimUtilsMulti.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0603530Z copying torch/include/ATen/code_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0604990Z copying torch/include/ATen/TensorOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0606240Z copying torch/include/ATen/CUDAFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0607810Z copying torch/include/ATen/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0608900Z copying torch/include/ATen/cpp_custom_type_hack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0610230Z copying torch/include/ATen/Dispatch_v2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0611950Z copying torch/include/ATen/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0613280Z copying torch/include/ATen/DeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0614690Z copying torch/include/ATen/ParallelNative.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0615970Z copying torch/include/ATen/OpMathType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0617420Z copying torch/include/ATen/PythonTorchFunctionTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0618720Z copying torch/include/ATen/PadNd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0620120Z copying torch/include/ATen/SparseMPSFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0621390Z copying torch/include/ATen/Dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0623010Z copying torch/include/ATen/CPUGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0624280Z copying torch/include/ATen/ParallelFuture.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0625620Z copying torch/include/ATen/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0627380Z copying torch/include/ATen/SparseCsrMPSFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0628680Z copying torch/include/ATen/ParallelOpenMP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0630020Z copying torch/include/ATen/jit_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0631410Z copying torch/include/ATen/CPUApplyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0632790Z copying torch/include/ATen/ThreadLocalState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0645270Z copying torch/include/ATen/ScalarOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0645830Z copying torch/include/ATen/NativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0646370Z copying torch/include/ATen/DynamicLibrary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0646890Z copying torch/include/ATen/TensorGeometry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0647410Z copying torch/include/ATen/DTensorState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0648060Z copying torch/include/ATen/TensorIterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0648590Z copying torch/include/ATen/NamedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0649110Z copying torch/include/ATen/Dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0649610Z copying torch/include/ATen/ROCmFABackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0650280Z copying torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0650900Z copying torch/include/ATen/autocast_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0651400Z copying torch/include/ATen/Parallel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0651890Z copying torch/include/ATen/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0652620Z copying torch/include/ATen/MetaFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0654020Z copying torch/include/ATen/InferSize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0655450Z copying torch/include/ATen/LegacyVmapTransforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0656840Z copying torch/include/ATen/SmallVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0658140Z copying torch/include/ATen/Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0659490Z copying torch/include/ATen/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0660920Z copying torch/include/ATen/FunctionalizeFallbackKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0662370Z copying torch/include/ATen/AccumulateType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0663800Z copying torch/include/ATen/TensorAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0665170Z copying torch/include/ATen/SDPBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0666550Z copying torch/include/ATen/CachedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-11-03T15:55:33.0668000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0668680Z copying torch/include/ATen/core/Dict_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0670090Z copying torch/include/ATen/core/Formatting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0671440Z copying torch/include/ATen/core/TensorBody.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0674650Z copying torch/include/ATen/core/GeneratorForPrivateuseone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0675670Z copying torch/include/ATen/core/jit_type_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0677220Z copying torch/include/ATen/core/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0678580Z copying torch/include/ATen/core/rref_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0679990Z copying torch/include/ATen/core/Range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0681420Z copying torch/include/ATen/core/interned_strings_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0683100Z copying torch/include/ATen/core/operator_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0684700Z copying torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0686060Z copying torch/include/ATen/core/symbol.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0687400Z copying torch/include/ATen/core/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0688970Z copying torch/include/ATen/core/TransformationHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0690210Z copying torch/include/ATen/core/blob.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0691670Z copying torch/include/ATen/core/function_schema.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0693160Z copying torch/include/ATen/core/type_factory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0694570Z copying torch/include/ATen/core/MT19937RNGEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0695880Z copying torch/include/ATen/core/ivalue_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0697240Z copying torch/include/ATen/core/aten_interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0723460Z copying torch/include/ATen/core/dynamic_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0724760Z copying torch/include/ATen/core/class_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0726360Z copying torch/include/ATen/core/LegacyTypeDispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0727800Z copying torch/include/ATen/core/function_schema_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0729270Z copying torch/include/ATen/core/NestedIntSymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0730670Z copying torch/include/ATen/core/qualified_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0732170Z copying torch/include/ATen/core/UndefinedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0733600Z copying torch/include/ATen/core/NamedTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0735270Z copying torch/include/ATen/core/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0736990Z copying torch/include/ATen/core/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0739500Z copying torch/include/ATen/core/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0740710Z copying torch/include/ATen/core/DeprecatedTypeProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0742010Z copying torch/include/ATen/core/interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0743400Z copying torch/include/ATen/core/List.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0744780Z copying torch/include/ATen/core/ATenOpList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0746260Z copying torch/include/ATen/core/Dict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0749250Z copying torch/include/ATen/core/type_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0750890Z copying torch/include/ATen/core/grad_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0752430Z copying torch/include/ATen/core/DistributionsHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0754250Z copying torch/include/ATen/core/VariableHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0756280Z copying torch/include/ATen/core/CheckMemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0757740Z copying torch/include/ATen/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0759050Z copying torch/include/ATen/core/Array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0760490Z copying torch/include/ATen/core/ATen_fwd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0761850Z copying torch/include/ATen/core/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0763290Z copying torch/include/ATen/core/ATenGeneral.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0764630Z copying torch/include/ATen/core/custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0765980Z copying torch/include/ATen/core/IListRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0767570Z copying torch/include/ATen/core/UnsafeFromTH.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0768990Z copying torch/include/ATen/core/PythonOpRegistrationTrampoline.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0770340Z copying torch/include/ATen/core/TensorBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0772030Z copying torch/include/ATen/core/ATen_pch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0773460Z copying torch/include/ATen/core/QuantizerBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0774830Z copying torch/include/ATen/core/enum_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0776130Z copying torch/include/ATen/core/alias_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0777450Z copying torch/include/ATen/core/List_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0778970Z copying torch/include/ATen/core/TorchDispatchUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0780260Z copying torch/include/ATen/core/enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0781580Z copying torch/include/ATen/core/jit_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0783560Z copying torch/include/ATen/core/IListRef_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0784950Z copying torch/include/ATen/core/ivalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0786670Z copying torch/include/ATen/core/Dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0789600Z copying torch/include/ATen/core/Vitals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0791050Z copying torch/include/ATen/core/PythonFallbackKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0792470Z copying torch/include/ATen/core/builtin_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0793810Z copying torch/include/ATen/core/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0795230Z copying torch/include/ATen/core/Reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0796610Z copying torch/include/ATen/core/Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0797950Z copying torch/include/ATen/core/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0799330Z copying torch/include/ATen/core/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0800740Z copying torch/include/ATen/core/PhiloxRNGEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0802080Z copying torch/include/ATen/core/TensorAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0803430Z copying torch/include/ATen/core/ivalue_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0805290Z copying torch/include/ATen/core/Variadic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-11-03T15:55:33.0806550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-11-03T15:55:33.0807450Z copying torch/include/ATen/core/op_registration/adaption.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-11-03T15:55:33.0808960Z 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-11-03T15:55:33.0810340Z 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-11-03T15:55:33.0812000Z 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-11-03T15:55:33.0813130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-11-03T15:55:33.0813910Z copying torch/include/ATen/core/dispatch/OperatorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-11-03T15:55:33.0815560Z copying torch/include/ATen/core/dispatch/RegistrationHandleRAII.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-11-03T15:55:33.0816900Z copying torch/include/ATen/core/dispatch/ObservedOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-11-03T15:55:33.0818330Z copying torch/include/ATen/core/dispatch/DispatchKeyExtractor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-11-03T15:55:33.0819670Z copying torch/include/ATen/core/dispatch/Dispatcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-11-03T15:55:33.0821320Z copying torch/include/ATen/core/dispatch/CppSignature.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-11-03T15:55:33.0822760Z copying torch/include/ATen/core/dispatch/OperatorEntry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-11-03T15:55:33.0823980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-11-03T15:55:33.0824780Z copying torch/include/ATen/core/boxing/KernelFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-11-03T15:55:33.0826200Z copying torch/include/ATen/core/boxing/OperatorKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-11-03T15:55:33.0827590Z copying torch/include/ATen/core/boxing/KernelFunction_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-11-03T15:55:33.0829370Z copying torch/include/ATen/core/boxing/BoxedKernel_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-11-03T15:55:33.0830340Z copying torch/include/ATen/core/boxing/BoxedKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-11-03T15:55:33.0831550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-11-03T15:55:33.0832600Z 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-11-03T15:55:33.0840030Z copying torch/include/ATen/core/boxing/impl/boxing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-11-03T15:55:33.0841190Z 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-11-03T15:55:33.0842730Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-11-03T15:55:33.0844110Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-11-03T15:55:33.0845260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-11-03T15:55:33.0846010Z copying torch/include/ATen/mps/MPSProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-11-03T15:55:33.0847600Z copying torch/include/ATen/mps/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-11-03T15:55:33.0848950Z copying torch/include/ATen/mps/MPSAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-11-03T15:55:33.0850530Z copying torch/include/ATen/mps/MPSGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-11-03T15:55:33.0851820Z copying torch/include/ATen/mps/MPSHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-11-03T15:55:33.0853150Z copying torch/include/ATen/mps/MPSEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-11-03T15:55:33.0854450Z copying torch/include/ATen/mps/MPSDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-11-03T15:55:33.0855880Z copying torch/include/ATen/mps/MPSStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-11-03T15:55:33.0857190Z copying torch/include/ATen/mps/IndexKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-11-03T15:55:33.0858660Z copying torch/include/ATen/mps/MPSAllocatorInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-11-03T15:55:33.0860000Z copying torch/include/ATen/mps/MPSGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-11-03T15:55:33.0861220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0862060Z copying torch/include/ATen/native/CompositeRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0863440Z copying torch/include/ATen/native/MathBitsFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0864760Z copying torch/include/ATen/native/TensorTransformations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0866540Z copying torch/include/ATen/native/ComplexHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0867510Z copying torch/include/ATen/native/ConvUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0869040Z copying torch/include/ATen/native/Normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0870390Z copying torch/include/ATen/native/ReductionType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0871740Z copying torch/include/ATen/native/Repeat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0873100Z copying torch/include/ATen/native/layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0874410Z copying torch/include/ATen/native/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0875840Z copying torch/include/ATen/native/TriangularOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0877240Z copying torch/include/ATen/native/UnfoldBackward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0878570Z copying torch/include/ATen/native/batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0879930Z copying torch/include/ATen/native/Unfold3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0881360Z copying torch/include/ATen/native/Fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0882640Z copying torch/include/ATen/native/LinearAlgebra.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0883920Z copying torch/include/ATen/native/RangeFactories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0885250Z copying torch/include/ATen/native/RNN.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0886670Z copying torch/include/ATen/native/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0888060Z copying torch/include/ATen/native/Pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0889410Z copying torch/include/ATen/native/RangeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0890790Z copying torch/include/ATen/native/Cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0892060Z copying torch/include/ATen/native/im2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0893500Z copying torch/include/ATen/native/TransposeType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0894870Z copying torch/include/ATen/native/DispatchStub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0896370Z copying torch/include/ATen/native/Unfold2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0897650Z copying torch/include/ATen/native/Distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0899230Z copying torch/include/ATen/native/FunctionOfAMatrixUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0900600Z copying torch/include/ATen/native/Distributions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0902530Z copying torch/include/ATen/native/MaxPooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0903400Z copying torch/include/ATen/native/Gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0904830Z copying torch/include/ATen/native/SparseTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0906210Z copying torch/include/ATen/native/CPUFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0907640Z copying torch/include/ATen/native/FusedAdagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0908950Z copying torch/include/ATen/native/GridSamplerUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0910250Z copying torch/include/ATen/native/TopKImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0911810Z copying torch/include/ATen/native/TensorAdvancedIndexingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0913120Z copying torch/include/ATen/native/DilatedConvolutionUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0914460Z copying torch/include/ATen/native/ForeachUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0915860Z copying torch/include/ATen/native/SobolEngineOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0917220Z copying torch/include/ATen/native/ReduceAllOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0918640Z copying torch/include/ATen/native/Lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0920380Z copying torch/include/ATen/native/ReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0921380Z copying torch/include/ATen/native/TensorAdvancedIndexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0922800Z copying torch/include/ATen/native/UnaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0923960Z copying torch/include/ATen/native/SortingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0925410Z copying torch/include/ATen/native/MathBitFallThroughLists.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0926790Z copying torch/include/ATen/native/StridedRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0928330Z copying torch/include/ATen/native/TensorShape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0929680Z copying torch/include/ATen/native/IndexingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0931040Z copying torch/include/ATen/native/UpSample.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0932660Z copying torch/include/ATen/native/ResizeCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0933960Z copying torch/include/ATen/native/SharedReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0935310Z copying torch/include/ATen/native/Resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0936680Z copying torch/include/ATen/native/SpectralOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0938040Z copying torch/include/ATen/native/Sorting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0939420Z copying torch/include/ATen/native/NonSymbolicBC.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0940880Z copying torch/include/ATen/native/TensorProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0942240Z copying torch/include/ATen/native/BucketizationUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0943600Z copying torch/include/ATen/native/vol2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0944900Z copying torch/include/ATen/native/LossMulti.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0946290Z copying torch/include/ATen/native/NonEmptyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0947720Z copying torch/include/ATen/native/TensorDimApply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0949040Z copying torch/include/ATen/native/verbose_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0950560Z copying torch/include/ATen/native/AdaptivePooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0951750Z copying torch/include/ATen/native/ConvolutionMM3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0953180Z copying torch/include/ATen/native/group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0954570Z copying torch/include/ATen/native/Histogram.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0955850Z copying torch/include/ATen/native/Activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0957270Z copying torch/include/ATen/native/Math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0959660Z copying torch/include/ATen/native/FusedAdam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0960770Z copying torch/include/ATen/native/GroupedMMUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0962180Z copying torch/include/ATen/native/ScatterGatherChecks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0963500Z copying torch/include/ATen/native/CPUBlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0964940Z copying torch/include/ATen/native/CompositeRandomAccessorCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0966320Z copying torch/include/ATen/native/BatchLinearAlgebra.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0967620Z copying torch/include/ATen/native/AmpKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0969180Z copying torch/include/ATen/native/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0970550Z copying torch/include/ATen/native/TensorIterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0972110Z copying torch/include/ATen/native/TensorConversions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0973550Z copying torch/include/ATen/native/FractionalMaxPooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0974990Z copying torch/include/ATen/native/ReduceOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0976740Z copying torch/include/ATen/native/TensorFactories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0978160Z copying torch/include/ATen/native/PointwiseOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0979780Z copying torch/include/ATen/native/BinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0981140Z copying torch/include/ATen/native/Pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0982670Z copying torch/include/ATen/native/EmbeddingBag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0984090Z copying torch/include/ATen/native/im2col_shape_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0985510Z copying torch/include/ATen/native/SegmentReduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0986810Z copying torch/include/ATen/native/FusedSGD.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0988230Z copying torch/include/ATen/native/Padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0989680Z copying torch/include/ATen/native/TensorCompare.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0991170Z copying torch/include/ATen/native/PixelShuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0992690Z copying torch/include/ATen/native/LinearAlgebraUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0994510Z copying torch/include/ATen/native/TypeProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0995900Z copying torch/include/ATen/native/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0997650Z copying torch/include/ATen/native/CanUse32BitIndexMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.0998810Z copying torch/include/ATen/native/TensorIteratorDynamicCasting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-11-03T15:55:33.1000160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-11-03T15:55:33.1001750Z 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-11-03T15:55:33.1003210Z 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-11-03T15:55:33.1004590Z 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-11-03T15:55:33.1005750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-11-03T15:55:33.1006550Z copying torch/include/ATen/native/mps/MetalShaderLibrary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-11-03T15:55:33.1008010Z copying torch/include/ATen/native/mps/TensorFactory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-11-03T15:55:33.1009270Z copying torch/include/ATen/native/mps/MPSGraphSequoiaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-11-03T15:55:33.1010680Z copying torch/include/ATen/native/mps/OperationUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-11-03T15:55:33.1012160Z copying torch/include/ATen/native/mps/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-11-03T15:55:33.1013690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-11-03T15:55:33.1014430Z copying torch/include/ATen/native/mps/kernels/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-11-03T15:55:33.1015920Z copying torch/include/ATen/native/mps/kernels/LinearAlgebra.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-11-03T15:55:33.1017310Z copying torch/include/ATen/native/mps/kernels/UpSample.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-11-03T15:55:33.1018630Z copying torch/include/ATen/native/mps/kernels/Shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-11-03T15:55:33.1019940Z copying torch/include/ATen/native/mps/kernels/Pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-11-03T15:55:33.1021820Z copying torch/include/ATen/native/mps/kernels/EmbeddingBag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-11-03T15:55:33.1022530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-11-03T15:55:33.1023400Z copying torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-11-03T15:55:33.1024930Z copying torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-11-03T15:55:33.1026240Z copying torch/include/ATen/native/mps/operations/BinaryKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-11-03T15:55:33.1027740Z copying torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-11-03T15:55:33.1029210Z copying torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-11-03T15:55:33.1030650Z copying torch/include/ATen/native/mps/operations/MultiTensorApply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-11-03T15:55:33.1031690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-11-03T15:55:33.1032500Z copying torch/include/ATen/native/metal/MetalConvParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-11-03T15:55:33.1039870Z copying torch/include/ATen/native/metal/MetalTensorImplStorage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-11-03T15:55:33.1040230Z copying torch/include/ATen/native/metal/MetalTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-11-03T15:55:33.1040570Z copying torch/include/ATen/native/metal/MetalContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-11-03T15:55:33.1040890Z copying torch/include/ATen/native/metal/MetalTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-11-03T15:55:33.1041200Z copying torch/include/ATen/native/metal/MetalNeuronType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-11-03T15:55:33.1041500Z copying torch/include/ATen/native/metal/MetalShaders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-11-03T15:55:33.1042500Z copying torch/include/ATen/native/metal/MetalPrepackOpContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-11-03T15:55:33.1043860Z copying torch/include/ATen/native/metal/MetalCommandBuffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-11-03T15:55:33.1045300Z copying torch/include/ATen/native/metal/MetalDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-11-03T15:55:33.1046480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-11-03T15:55:33.1047390Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-11-03T15:55:33.1048760Z 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-11-03T15:55:33.1050140Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-11-03T15:55:33.1051490Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-11-03T15:55:33.1052860Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-11-03T15:55:33.1054170Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-11-03T15:55:33.1055570Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-11-03T15:55:33.1056970Z copying torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-11-03T15:55:33.1058620Z copying torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-11-03T15:55:33.1059550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests 2025-11-03T15:55:33.1060620Z 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-11-03T15:55:33.1061760Z 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-11-03T15:55:33.1062970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-11-03T15:55:33.1063870Z copying torch/include/ATen/native/metal/ops/MetalCopy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-11-03T15:55:33.1065180Z copying torch/include/ATen/native/metal/ops/MetalConvolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-11-03T15:55:33.1066510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1067080Z copying torch/include/ATen/native/cpu/IsContiguous.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1068520Z copying torch/include/ATen/native/cpu/zmath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1069870Z copying torch/include/ATen/native/cpu/ReduceUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1071560Z copying torch/include/ATen/native/cpu/mixed_data_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1073010Z copying torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1074250Z copying torch/include/ATen/native/cpu/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1075770Z copying torch/include/ATen/native/cpu/int_mm_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1077220Z copying torch/include/ATen/native/cpu/SampledAddmmKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1078620Z copying torch/include/ATen/native/cpu/Gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1080340Z copying torch/include/ATen/native/cpu/moments_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1081390Z copying torch/include/ATen/native/cpu/ChannelShuffleKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1082760Z copying torch/include/ATen/native/cpu/SpmmReduceKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1084060Z copying torch/include/ATen/native/cpu/GridSamplerKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1085510Z copying torch/include/ATen/native/cpu/SerialStackImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1086840Z copying torch/include/ATen/native/cpu/Intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1088220Z copying torch/include/ATen/native/cpu/LogAddExp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1089630Z copying torch/include/ATen/native/cpu/WeightNormKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1090900Z copying torch/include/ATen/native/cpu/MaxUnpoolKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1092280Z copying torch/include/ATen/native/cpu/SoftmaxKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1093740Z copying torch/include/ATen/native/cpu/AtomicAddFloat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1095050Z copying torch/include/ATen/native/cpu/Elu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1096370Z copying torch/include/ATen/native/cpu/Reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1097760Z copying torch/include/ATen/native/cpu/CatKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1099260Z copying torch/include/ATen/native/cpu/StackKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1100590Z copying torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1101960Z copying torch/include/ATen/native/cpu/DepthwiseConvKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1103340Z copying torch/include/ATen/native/cpu/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1104980Z copying torch/include/ATen/native/cpu/PixelShuffleKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1106370Z copying torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1108160Z copying torch/include/ATen/native/cpu/IndexKernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1109350Z copying torch/include/ATen/native/cpu/avx_mathfun.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1110970Z copying torch/include/ATen/native/cpu/CopyKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1112280Z copying torch/include/ATen/native/cpu/Loops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-11-03T15:55:33.1113540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1114360Z copying torch/include/ATen/native/cuda/CompositeRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1115760Z copying torch/include/ATen/native/cuda/MiscUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1117190Z copying torch/include/ATen/native/cuda/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1118590Z copying torch/include/ATen/native/cuda/CuFFTPlanCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1120090Z copying torch/include/ATen/native/cuda/RowwiseScaledMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1121470Z copying torch/include/ATen/native/cuda/ScanKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1122830Z copying torch/include/ATen/native/cuda/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1124170Z copying torch/include/ATen/native/cuda/ScaledGroupMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1125570Z copying torch/include/ATen/native/cuda/Distributions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1127180Z copying torch/include/ATen/native/cuda/BinaryInternal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1128530Z copying torch/include/ATen/native/cuda/GroupMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1129830Z copying torch/include/ATen/native/cuda/CuFFTUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1131220Z copying torch/include/ATen/native/cuda/ReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1132670Z copying torch/include/ATen/native/cuda/TensorTopK.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1134030Z copying torch/include/ATen/native/cuda/TensorModeKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1135540Z copying torch/include/ATen/native/cuda/thread_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1136860Z copying torch/include/ATen/native/cuda/Resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1138260Z copying torch/include/ATen/native/cuda/Sorting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1139620Z copying torch/include/ATen/native/cuda/Activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1140950Z copying torch/include/ATen/native/cuda/Sort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1142450Z copying torch/include/ATen/native/cuda/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1143950Z copying torch/include/ATen/native/cuda/IndexKernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1145330Z copying torch/include/ATen/native/cuda/jit_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1146690Z copying torch/include/ATen/native/cuda/SortStable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1148030Z copying torch/include/ATen/native/cuda/LaunchUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1149350Z copying torch/include/ATen/native/cuda/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1150780Z copying torch/include/ATen/native/cuda/cuBlasCommonArgs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:33.1151950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-11-03T15:55:33.1152760Z copying torch/include/ATen/native/quantized/ConvUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-11-03T15:55:33.1154390Z copying torch/include/ATen/native/quantized/AffineQuantizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-11-03T15:55:33.1155650Z copying torch/include/ATen/native/quantized/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-11-03T15:55:33.1157040Z copying torch/include/ATen/native/quantized/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-11-03T15:55:33.1158660Z copying torch/include/ATen/native/quantized/AffineQuantizerBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-11-03T15:55:33.1159840Z copying torch/include/ATen/native/quantized/FakeQuantAffine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-11-03T15:55:33.1161180Z copying torch/include/ATen/native/quantized/PackedParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-11-03T15:55:33.1162540Z copying torch/include/ATen/native/quantized/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-11-03T15:55:33.1163710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-11-03T15:55:33.1164530Z copying torch/include/ATen/native/quantized/cpu/XnnpackUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-11-03T15:55:33.1166000Z 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-11-03T15:55:33.1167340Z 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-11-03T15:55:33.1168760Z copying torch/include/ATen/native/quantized/cpu/ACLUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-11-03T15:55:33.1170210Z 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-11-03T15:55:33.1171520Z copying torch/include/ATen/native/quantized/cpu/qlinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-11-03T15:55:33.1172990Z copying torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-11-03T15:55:33.1174410Z copying torch/include/ATen/native/quantized/cpu/qembeddingbag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-11-03T15:55:33.1175780Z copying torch/include/ATen/native/quantized/cpu/QnnpackUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-11-03T15:55:33.1177490Z 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-11-03T15:55:33.1178760Z copying torch/include/ATen/native/quantized/cpu/OnednnUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-11-03T15:55:33.1180090Z copying torch/include/ATen/native/quantized/cpu/QuantUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-11-03T15:55:33.1181450Z copying torch/include/ATen/native/quantized/cpu/RuyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-11-03T15:55:33.1182900Z copying torch/include/ATen/native/quantized/cpu/qconv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-11-03T15:55:33.1184270Z copying torch/include/ATen/native/quantized/cpu/BinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-11-03T15:55:33.1185620Z copying torch/include/ATen/native/quantized/cpu/QuantizedOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-11-03T15:55:33.1186840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn 2025-11-03T15:55:33.1187620Z copying torch/include/ATen/native/quantized/cudnn/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn 2025-11-03T15:55:33.1188810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-11-03T15:55:33.1189590Z copying torch/include/ATen/native/utils/ParamUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-11-03T15:55:33.1191080Z copying torch/include/ATen/native/utils/ParamsHash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-11-03T15:55:33.1192380Z copying torch/include/ATen/native/utils/Factory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-11-03T15:55:33.1193570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-11-03T15:55:33.1194400Z copying torch/include/ATen/native/transformers/sdp_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-11-03T15:55:33.1195860Z copying torch/include/ATen/native/transformers/attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-11-03T15:55:33.1197180Z copying torch/include/ATen/native/transformers/sdp_utils_cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-11-03T15:55:33.1198580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda 2025-11-03T15:55:33.1199380Z 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-11-03T15:55:33.1200670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-11-03T15:55:33.1201580Z 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-11-03T15:55:33.1203000Z 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-11-03T15:55:33.1204440Z 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-11-03T15:55:33.1206220Z 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-11-03T15:55:33.1207570Z 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-11-03T15:55:33.1209730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-11-03T15:55:33.1210240Z 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-11-03T15:55:33.1212670Z 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-11-03T15:55:33.1213590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-11-03T15:55:33.1214510Z 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-11-03T15:55:33.1216050Z 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-11-03T15:55:33.1217430Z 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-11-03T15:55:33.1219010Z 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-11-03T15:55:33.1221270Z 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-11-03T15:55:33.1222260Z 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-11-03T15:55:33.1223720Z 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-11-03T15:55:33.1224870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-11-03T15:55:33.1225840Z 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-11-03T15:55:33.1227400Z 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-11-03T15:55:33.1228870Z 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-11-03T15:55:33.1230130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-11-03T15:55:33.1231100Z 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-11-03T15:55:33.1232290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-11-03T15:55:33.1233170Z 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-11-03T15:55:33.1234760Z 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-11-03T15:55:33.1236770Z 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-11-03T15:55:33.1238480Z 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-11-03T15:55:33.1239900Z 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-11-03T15:55:33.1241350Z 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-11-03T15:55:33.1242850Z 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-11-03T15:55:33.1244270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn 2025-11-03T15:55:33.1245120Z 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-11-03T15:55:33.1246690Z 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-11-03T15:55:33.1247810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip 2025-11-03T15:55:33.1248660Z copying torch/include/ATen/native/transformers/hip/aotriton_versions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip 2025-11-03T15:55:33.1250510Z copying torch/include/ATen/native/transformers/hip/gemm_kernel_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip 2025-11-03T15:55:33.1251580Z 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-11-03T15:55:33.1253070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn 2025-11-03T15:55:33.1253630Z 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-11-03T15:55:33.1255050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-11-03T15:55:33.1255840Z 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-11-03T15:55:33.1256930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-11-03T15:55:33.1257800Z copying torch/include/ATen/native/hip/ck_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-11-03T15:55:33.1259060Z copying torch/include/ATen/native/hip/ck_bgemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-11-03T15:55:33.1260480Z copying torch/include/ATen/native/hip/ck_gemm_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-11-03T15:55:33.1261860Z copying torch/include/ATen/native/hip/ck_gemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-11-03T15:55:33.1263160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels 2025-11-03T15:55:33.1263950Z 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-11-03T15:55:33.1265570Z 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-11-03T15:55:33.1266750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia 2025-11-03T15:55:33.1267520Z copying torch/include/ATen/native/mtia/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia 2025-11-03T15:55:33.1268760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-11-03T15:55:33.1269510Z copying torch/include/ATen/native/kleidiai/kai_pack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-11-03T15:55:33.1271360Z copying torch/include/ATen/native/kleidiai/kai_ukernel_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-11-03T15:55:33.1272320Z copying torch/include/ATen/native/kleidiai/kai_kernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-11-03T15:55:33.1273490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-11-03T15:55:33.1274270Z copying torch/include/ATen/native/nested/NestedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-11-03T15:55:33.1275830Z copying torch/include/ATen/native/nested/NestedTensorTransformerUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-11-03T15:55:33.1277110Z copying torch/include/ATen/native/nested/NestedTensorMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-11-03T15:55:33.1278550Z copying torch/include/ATen/native/nested/NestedTensorBinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-11-03T15:55:33.1279930Z copying torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-11-03T15:55:33.1281100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-11-03T15:55:33.1282270Z copying torch/include/ATen/native/mkldnn/xpu/FusionUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-11-03T15:55:33.1283730Z copying torch/include/ATen/native/mkldnn/xpu/qlinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-11-03T15:55:33.1285100Z copying torch/include/ATen/native/mkldnn/xpu/qconv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-11-03T15:55:33.1286650Z copying torch/include/ATen/native/mkldnn/xpu/Conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-11-03T15:55:33.1287660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-11-03T15:55:33.1288480Z 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-11-03T15:55:33.1289870Z 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-11-03T15:55:33.1291500Z 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-11-03T15:55:33.1292860Z 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-11-03T15:55:33.1294460Z 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-11-03T15:55:33.1295770Z 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-11-03T15:55:33.1296880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal 2025-11-03T15:55:33.1297650Z copying torch/include/ATen/metal/Context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal 2025-11-03T15:55:33.1298850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-11-03T15:55:33.1299570Z copying torch/include/ATen/cpu/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-11-03T15:55:33.1301000Z copying torch/include/ATen/cpu/FlushDenormal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-11-03T15:55:33.1302310Z copying torch/include/ATen/cpu/vml.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-11-03T15:55:33.1303540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-11-03T15:55:33.1304530Z copying torch/include/ATen/cpu/vec/vec_quant.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-11-03T15:55:33.1305720Z copying torch/include/ATen/cpu/vec/vec_half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-11-03T15:55:33.1307190Z copying torch/include/ATen/cpu/vec/vec_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-11-03T15:55:33.1308460Z copying torch/include/ATen/cpu/vec/vec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-11-03T15:55:33.1309830Z copying torch/include/ATen/cpu/vec/vec_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-11-03T15:55:33.1311160Z copying torch/include/ATen/cpu/vec/intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-11-03T15:55:33.1312540Z copying torch/include/ATen/cpu/vec/functional_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-11-03T15:55:33.1314140Z copying torch/include/ATen/cpu/vec/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-11-03T15:55:33.1315400Z copying torch/include/ATen/cpu/vec/vec_n.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-11-03T15:55:33.1316830Z copying torch/include/ATen/cpu/vec/functional_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-11-03T15:55:33.1318200Z copying torch/include/ATen/cpu/vec/vec_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-11-03T15:55:33.1319790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-11-03T15:55:33.1320610Z copying torch/include/ATen/cpu/vec/vec128/vec128_int_aarch64.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-11-03T15:55:33.1322250Z 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-11-03T15:55:33.1323700Z copying torch/include/ATen/cpu/vec/vec128/vec128_double_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-11-03T15:55:33.1325290Z 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-11-03T15:55:33.1326680Z copying torch/include/ATen/cpu/vec/vec128/vec128.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-11-03T15:55:33.1328060Z 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-11-03T15:55:33.1329590Z copying torch/include/ATen/cpu/vec/vec128/vec128_uint_aarch64.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-11-03T15:55:33.1331120Z 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-11-03T15:55:33.1332700Z 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-11-03T15:55:33.1334040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-11-03T15:55:33.1334890Z 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-11-03T15:55:33.1336240Z 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-11-03T15:55:33.1337620Z 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-11-03T15:55:33.1339040Z 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-11-03T15:55:33.1340370Z 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-11-03T15:55:33.1342130Z 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-11-03T15:55:33.1343640Z 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-11-03T15:55:33.1345030Z 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-11-03T15:55:33.1346620Z 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-11-03T15:55:33.1348000Z copying torch/include/ATen/cpu/vec/vec256/vec256.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-11-03T15:55:33.1349500Z 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-11-03T15:55:33.1351000Z 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-11-03T15:55:33.1352440Z 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-11-03T15:55:33.1354200Z 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-11-03T15:55:33.1355650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/zarch 2025-11-03T15:55:33.1356410Z 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-11-03T15:55:33.1358530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-11-03T15:55:33.1359120Z 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-11-03T15:55:33.1360540Z 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-11-03T15:55:33.1361930Z 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-11-03T15:55:33.1363420Z 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-11-03T15:55:33.1364760Z 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-11-03T15:55:33.1366370Z 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-11-03T15:55:33.1367930Z 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-11-03T15:55:33.1369520Z 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-11-03T15:55:33.1370910Z 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-11-03T15:55:33.1372490Z 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-11-03T15:55:33.1373920Z 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-11-03T15:55:33.1375530Z 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-11-03T15:55:33.1377070Z 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-11-03T15:55:33.1378290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-11-03T15:55:33.1379320Z 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-11-03T15:55:33.1380840Z 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-11-03T15:55:33.1382250Z 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-11-03T15:55:33.1384450Z 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-11-03T15:55:33.1385610Z 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-11-03T15:55:33.1387180Z 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-11-03T15:55:33.1388590Z 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-11-03T15:55:33.1390260Z 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-11-03T15:55:33.1392040Z 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-11-03T15:55:33.1394270Z 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-11-03T15:55:33.1395630Z copying torch/include/ATen/cpu/vec/vec512/vec512.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-11-03T15:55:33.1397050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-11-03T15:55:33.1397800Z 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-11-03T15:55:33.1399790Z 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-11-03T15:55:33.1401590Z 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-11-03T15:55:33.1403130Z 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-11-03T15:55:33.1405360Z 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-11-03T15:55:33.1406610Z 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-11-03T15:55:33.1408160Z 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-11-03T15:55:33.1409510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1410290Z copying torch/include/ATen/cuda/CUDADevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1411640Z copying torch/include/ATen/cuda/CUDAUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1413030Z copying torch/include/ATen/cuda/CUDABlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1414490Z copying torch/include/ATen/cuda/CUDAGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1415830Z copying torch/include/ATen/cuda/Sleep.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1417250Z copying torch/include/ATen/cuda/PinnedMemoryAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1418600Z copying torch/include/ATen/cuda/jiterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1420020Z copying torch/include/ATen/cuda/CUDASparseDescriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1421560Z copying torch/include/ATen/cuda/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1422720Z copying torch/include/ATen/cuda/PeerToPeerAccess.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1424110Z copying torch/include/ATen/cuda/CUDAGreenContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1425430Z copying torch/include/ATen/cuda/CUDAEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1426920Z copying torch/include/ATen/cuda/CUDAContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1428260Z copying torch/include/ATen/cuda/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1429870Z copying torch/include/ATen/cuda/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1430900Z copying torch/include/ATen/cuda/CUDADataType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1432320Z copying torch/include/ATen/cuda/cub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1433710Z copying torch/include/ATen/cuda/CUDAContextLight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1435140Z copying torch/include/ATen/cuda/CUDAGraph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1436450Z copying torch/include/ATen/cuda/ThrustAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1437870Z copying torch/include/ATen/cuda/CUDAScaledBlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1439210Z copying torch/include/ATen/cuda/llvm_jit_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1440600Z copying torch/include/ATen/cuda/CUDASparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1442030Z copying torch/include/ATen/cuda/PhiloxCudaState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1443450Z copying torch/include/ATen/cuda/jiterator_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1444960Z copying torch/include/ATen/cuda/ATenCUDAGeneral.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1446270Z copying torch/include/ATen/cuda/CUDASparseBlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:33.1447610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-11-03T15:55:33.1448350Z copying torch/include/ATen/cuda/detail/CUDAHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-11-03T15:55:33.1449760Z copying torch/include/ATen/cuda/detail/KernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-11-03T15:55:33.1451090Z copying torch/include/ATen/cuda/detail/LazyNVRTC.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-11-03T15:55:33.1452560Z copying torch/include/ATen/cuda/detail/DeviceThreadHandles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-11-03T15:55:33.1453950Z copying torch/include/ATen/cuda/detail/BLASConstants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-11-03T15:55:33.1455060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-11-03T15:55:33.1455810Z copying torch/include/ATen/cuda/tunable/TunableOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-11-03T15:55:33.1457220Z copying torch/include/ATen/cuda/tunable/StreamTimer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-11-03T15:55:33.1458630Z copying torch/include/ATen/cuda/tunable/TunableGemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-11-03T15:55:33.1460120Z copying torch/include/ATen/cuda/tunable/GemmCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-11-03T15:55:33.1461660Z copying torch/include/ATen/cuda/tunable/GemmHipblaslt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-11-03T15:55:33.1463330Z copying torch/include/ATen/cuda/tunable/GemmRocblas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-11-03T15:55:33.1464750Z copying torch/include/ATen/cuda/tunable/Tunable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-11-03T15:55:33.1465930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-11-03T15:55:33.1466720Z copying torch/include/ATen/quantized/QTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-11-03T15:55:33.1468160Z copying torch/include/ATen/quantized/Quantizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-11-03T15:55:33.1469310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-11-03T15:55:33.1470030Z copying torch/include/ATen/xpu/XPUEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-11-03T15:55:33.1471390Z copying torch/include/ATen/xpu/XPUDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-11-03T15:55:33.1472900Z copying torch/include/ATen/xpu/PinnedMemoryAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-11-03T15:55:33.1474170Z copying torch/include/ATen/xpu/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-11-03T15:55:33.1475720Z copying torch/include/ATen/xpu/XPUGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-11-03T15:55:33.1476930Z copying torch/include/ATen/xpu/XPUGraphsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-11-03T15:55:33.1478410Z copying torch/include/ATen/xpu/PhiloxXpuState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-11-03T15:55:33.1479710Z copying torch/include/ATen/xpu/XPUContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-11-03T15:55:33.1481000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail 2025-11-03T15:55:33.1481750Z copying torch/include/ATen/xpu/detail/XPUHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail 2025-11-03T15:55:33.1482980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-11-03T15:55:33.1483740Z copying torch/include/ATen/miopen/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-11-03T15:55:33.1485320Z copying torch/include/ATen/miopen/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-11-03T15:55:33.1486370Z copying torch/include/ATen/miopen/Descriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-11-03T15:55:33.1487720Z copying torch/include/ATen/miopen/miopen-wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-11-03T15:55:33.1489050Z copying torch/include/ATen/miopen/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-11-03T15:55:33.1490500Z copying torch/include/ATen/miopen/Handle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-11-03T15:55:33.1491610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-11-03T15:55:33.1492430Z copying torch/include/ATen/detail/PrivateUse1HooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-11-03T15:55:33.1493890Z copying torch/include/ATen/detail/AcceleratorHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-11-03T15:55:33.1495220Z copying torch/include/ATen/detail/CUDAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-11-03T15:55:33.1496580Z copying torch/include/ATen/detail/MAIAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-11-03T15:55:33.1504680Z copying torch/include/ATen/detail/XPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-11-03T15:55:33.1505820Z copying torch/include/ATen/detail/FunctionTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-11-03T15:55:33.1507320Z copying torch/include/ATen/detail/HIPHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-11-03T15:55:33.1508590Z copying torch/include/ATen/detail/MPSHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-11-03T15:55:33.1509910Z copying torch/include/ATen/detail/MTIAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-11-03T15:55:33.1511360Z copying torch/include/ATen/detail/XLAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-11-03T15:55:33.1512690Z copying torch/include/ATen/detail/HPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-11-03T15:55:33.1514070Z copying torch/include/ATen/detail/IPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-11-03T15:55:33.1515370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-11-03T15:55:33.1516440Z copying torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-11-03T15:55:33.1517910Z copying torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-11-03T15:55:33.1519330Z copying torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-11-03T15:55:33.1520730Z copying torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-11-03T15:55:33.1521870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1522610Z copying torch/include/ATen/ops/is_vulkan_available.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1523940Z copying torch/include/ATen/ops/_foreach_atan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1525450Z 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-11-03T15:55:33.1526720Z copying torch/include/ATen/ops/sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1528210Z copying torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1529580Z copying torch/include/ATen/ops/mode_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1530860Z copying torch/include/ATen/ops/index_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1532160Z copying torch/include/ATen/ops/new_ones.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1533520Z copying torch/include/ATen/ops/pixel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1534800Z copying torch/include/ATen/ops/clamp_min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1536350Z copying torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1537870Z copying torch/include/ATen/ops/acosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1539260Z copying torch/include/ATen/ops/frexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1540650Z copying torch/include/ATen/ops/erf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1542070Z copying torch/include/ATen/ops/repeat_interleave_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1543380Z copying torch/include/ATen/ops/special_i0e_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1544730Z copying torch/include/ATen/ops/pixel_unshuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1546100Z copying torch/include/ATen/ops/upsample_trilinear3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1547460Z copying torch/include/ATen/ops/cummin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1549080Z copying torch/include/ATen/ops/choose_qparams_optimized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1550410Z copying torch/include/ATen/ops/nonzero_static_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1551880Z copying torch/include/ATen/ops/where_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1553180Z copying torch/include/ATen/ops/slice_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1554570Z 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-11-03T15:55:33.1556080Z copying torch/include/ATen/ops/isfinite_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1557550Z copying torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1558890Z copying torch/include/ATen/ops/leaky_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1560270Z 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-11-03T15:55:33.1561570Z copying torch/include/ATen/ops/erfinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1562980Z copying torch/include/ATen/ops/linalg_vecdot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1564430Z copying torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1565760Z 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-11-03T15:55:33.1567090Z copying torch/include/ATen/ops/bitwise_and_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1568570Z copying torch/include/ATen/ops/empty_strided_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1569980Z 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-11-03T15:55:33.1571380Z copying torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1572740Z copying torch/include/ATen/ops/result_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1574350Z 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-11-03T15:55:33.1575680Z copying torch/include/ATen/ops/min_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1577120Z copying torch/include/ATen/ops/isposinf_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1578490Z copying torch/include/ATen/ops/cumulative_trapezoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1579800Z copying torch/include/ATen/ops/nll_loss2d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1581250Z copying torch/include/ATen/ops/soft_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1582540Z copying torch/include/ATen/ops/hardswish_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1584070Z copying torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1585350Z copying torch/include/ATen/ops/pow_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1586670Z copying torch/include/ATen/ops/atan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1587960Z copying torch/include/ATen/ops/binomial_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1589450Z copying torch/include/ATen/ops/to_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1590760Z copying torch/include/ATen/ops/cosine_embedding_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1592120Z copying torch/include/ATen/ops/_test_ambiguous_defaults_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1593380Z copying torch/include/ATen/ops/gelu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1594890Z 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-11-03T15:55:33.1596170Z copying torch/include/ATen/ops/max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1597770Z copying torch/include/ATen/ops/threshold_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1598860Z copying torch/include/ATen/ops/signbit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1600220Z copying torch/include/ATen/ops/_propagate_xla_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1601800Z 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-11-03T15:55:33.1603330Z copying torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1604690Z copying torch/include/ATen/ops/multilabel_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1606080Z 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-11-03T15:55:33.1607390Z copying torch/include/ATen/ops/cumprod_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1608670Z copying torch/include/ATen/ops/_remove_batch_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1610060Z copying torch/include/ATen/ops/constant_pad_nd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1611570Z copying torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1612920Z 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-11-03T15:55:33.1614150Z copying torch/include/ATen/ops/_lstm_mps_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1615550Z copying torch/include/ATen/ops/_values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1616930Z 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-11-03T15:55:33.1618350Z copying torch/include/ATen/ops/nan_to_num_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1619640Z copying torch/include/ATen/ops/_histogramdd_bin_edges_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1621000Z copying torch/include/ATen/ops/_int_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1622430Z copying torch/include/ATen/ops/i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1623630Z copying torch/include/ATen/ops/inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1625090Z 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-11-03T15:55:33.1626460Z copying torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1627750Z copying torch/include/ATen/ops/index_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1629070Z copying torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1630360Z copying torch/include/ATen/ops/_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1631720Z copying torch/include/ATen/ops/quantized_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1633240Z copying torch/include/ATen/ops/_fused_rms_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1634460Z copying torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1635850Z copying torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1637350Z copying torch/include/ATen/ops/floor_divide_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1638990Z copying torch/include/ATen/ops/_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1640390Z copying torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1641790Z copying torch/include/ATen/ops/special_modified_bessel_k1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1643190Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1644470Z copying torch/include/ATen/ops/huber_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1646040Z 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-11-03T15:55:33.1647310Z copying torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1649010Z copying torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1650120Z copying torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1651480Z copying torch/include/ATen/ops/fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1653040Z 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-11-03T15:55:33.1654270Z copying torch/include/ATen/ops/dist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1655790Z 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-11-03T15:55:33.1657320Z 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-11-03T15:55:33.1658640Z copying torch/include/ATen/ops/index_copy_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1660200Z copying torch/include/ATen/ops/quantized_lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1661480Z copying torch/include/ATen/ops/_foreach_log10_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1662980Z copying torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1664170Z copying torch/include/ATen/ops/sub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1665460Z copying torch/include/ATen/ops/mkldnn_linear_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1666760Z copying torch/include/ATen/ops/trace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1668190Z copying torch/include/ATen/ops/adaptive_avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1669530Z copying torch/include/ATen/ops/_efficientzerotensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1671070Z copying torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1672310Z copying torch/include/ATen/ops/_efficient_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1673820Z 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-11-03T15:55:33.1675380Z copying torch/include/ATen/ops/sinc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1676540Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1677880Z copying torch/include/ATen/ops/special_bessel_y1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1679170Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1680570Z 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-11-03T15:55:33.1681870Z copying torch/include/ATen/ops/polygamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1683270Z copying torch/include/ATen/ops/logical_xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1684500Z copying torch/include/ATen/ops/nextafter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1686000Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1687270Z copying torch/include/ATen/ops/log_sigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1688610Z copying torch/include/ATen/ops/special_bessel_y0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1689960Z copying torch/include/ATen/ops/_cast_Long_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1691600Z copying torch/include/ATen/ops/_foreach_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1692670Z copying torch/include/ATen/ops/pdist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1694000Z copying torch/include/ATen/ops/_sobol_engine_ff_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1695370Z copying torch/include/ATen/ops/_wrapped_linear_prepack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1696640Z copying torch/include/ATen/ops/softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1697930Z copying torch/include/ATen/ops/arctan2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1699320Z copying torch/include/ATen/ops/quantized_gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1700870Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1702080Z copying torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1703460Z 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-11-03T15:55:33.1704760Z copying torch/include/ATen/ops/absolute_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1706180Z copying torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1707600Z 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-11-03T15:55:33.1709160Z 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-11-03T15:55:33.1710540Z copying torch/include/ATen/ops/logaddexp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1711890Z copying torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1713430Z copying torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1714620Z copying torch/include/ATen/ops/max_pool3d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1716070Z copying torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1717390Z copying torch/include/ATen/ops/special_zeta_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1718770Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1720300Z copying torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1721570Z copying torch/include/ATen/ops/addmv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1722960Z copying torch/include/ATen/ops/bilinear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1724210Z copying torch/include/ATen/ops/topk_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1725590Z copying torch/include/ATen/ops/adaptive_avg_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1726980Z copying torch/include/ATen/ops/linalg_eig_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1728430Z copying torch/include/ATen/ops/matrix_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1729790Z copying torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1731110Z copying torch/include/ATen/ops/mkldnn_rnn_layer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1732840Z copying torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1733910Z copying torch/include/ATen/ops/softshrink_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1735270Z copying torch/include/ATen/ops/concatenate_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1736580Z copying torch/include/ATen/ops/view_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1737990Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1739420Z copying torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1740850Z copying torch/include/ATen/ops/linalg_ldl_factor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1742320Z copying torch/include/ATen/ops/glu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1743940Z copying torch/include/ATen/ops/is_inference_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1745300Z copying torch/include/ATen/ops/special_i1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1746790Z 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-11-03T15:55:33.1748120Z copying torch/include/ATen/ops/hstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1749470Z copying torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1750800Z copying torch/include/ATen/ops/_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1752230Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1753610Z 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-11-03T15:55:33.1754950Z copying torch/include/ATen/ops/miopen_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1756290Z copying torch/include/ATen/ops/is_nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1757700Z copying torch/include/ATen/ops/slice_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1759030Z copying torch/include/ATen/ops/dot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1760440Z copying torch/include/ATen/ops/positive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1761880Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1763350Z 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-11-03T15:55:33.1764530Z copying torch/include/ATen/ops/_cast_Float_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1766090Z 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-11-03T15:55:33.1767370Z copying torch/include/ATen/ops/igammac_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1768750Z copying torch/include/ATen/ops/lu_unpack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1775160Z copying torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1775640Z 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-11-03T15:55:33.1776000Z copying torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1776250Z copying torch/include/ATen/ops/narrow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1776480Z copying torch/include/ATen/ops/atan2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1777780Z copying torch/include/ATen/ops/rnn_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1779770Z copying torch/include/ATen/ops/lu_unpack_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1780980Z copying torch/include/ATen/ops/_mixed_dtypes_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1782470Z copying torch/include/ATen/ops/_nested_get_max_seqlen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1783840Z copying torch/include/ATen/ops/_linalg_slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1785260Z copying torch/include/ATen/ops/size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1786600Z copying torch/include/ATen/ops/scatter_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1788230Z copying torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1789480Z copying torch/include/ATen/ops/bernoulli_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1790870Z copying torch/include/ATen/ops/glu_jvp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1792250Z copying torch/include/ATen/ops/special_i1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1793660Z copying torch/include/ATen/ops/matrix_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1794990Z copying torch/include/ATen/ops/miopen_rnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1796390Z copying torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1797900Z 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-11-03T15:55:33.1799170Z copying torch/include/ATen/ops/log_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1800540Z copying torch/include/ATen/ops/hann_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1801870Z copying torch/include/ATen/ops/rrelu_with_noise.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1803260Z copying torch/include/ATen/ops/miopen_convolution_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1804850Z copying torch/include/ATen/ops/atan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1806180Z copying torch/include/ATen/ops/coalesce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1807590Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1809030Z 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-11-03T15:55:33.1810390Z copying torch/include/ATen/ops/where_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1811950Z 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-11-03T15:55:33.1813530Z copying torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1814830Z copying torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1816620Z copying torch/include/ATen/ops/unfold_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1817610Z 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-11-03T15:55:33.1819020Z 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-11-03T15:55:33.1820450Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1821820Z copying torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1823290Z copying torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1824840Z copying torch/include/ATen/ops/linalg_lu_factor_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1826280Z copying torch/include/ATen/ops/_linalg_svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1828330Z copying torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1829610Z 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-11-03T15:55:33.1831090Z copying torch/include/ATen/ops/arctan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1832690Z copying torch/include/ATen/ops/_efficient_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1834280Z copying torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1836050Z copying torch/include/ATen/ops/view_as_real_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1837290Z copying torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1839170Z copying torch/include/ATen/ops/neg_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1840290Z copying torch/include/ATen/ops/nan_to_num_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1841780Z copying torch/include/ATen/ops/argmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1843220Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1844620Z 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-11-03T15:55:33.1846110Z copying torch/include/ATen/ops/erfinv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1847430Z copying torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1848880Z copying torch/include/ATen/ops/chain_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1850290Z copying torch/include/ATen/ops/sign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1851760Z 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-11-03T15:55:33.1853240Z copying torch/include/ATen/ops/affine_grid_generator_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1854670Z copying torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1855990Z copying torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1857240Z copying torch/include/ATen/ops/vdot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1858600Z copying torch/include/ATen/ops/sparse_resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1860010Z copying torch/include/ATen/ops/_foreach_abs_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1861400Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1862820Z 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-11-03T15:55:33.1864140Z copying torch/include/ATen/ops/abs_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1865580Z copying torch/include/ATen/ops/col_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1867080Z copying torch/include/ATen/ops/logical_xor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1868420Z copying torch/include/ATen/ops/native_group_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1869820Z copying torch/include/ATen/ops/_fft_c2c_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1871380Z 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-11-03T15:55:33.1872840Z copying torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1874090Z copying torch/include/ATen/ops/cat_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1875620Z copying torch/include/ATen/ops/conj_physical_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1877000Z copying torch/include/ATen/ops/argmin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1878450Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1879800Z copying torch/include/ATen/ops/adaptive_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1881150Z copying torch/include/ATen/ops/logspace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1882560Z copying torch/include/ATen/ops/avg_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1884010Z copying torch/include/ATen/ops/is_same_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1885240Z copying torch/include/ATen/ops/igammac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1886650Z copying torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1888170Z copying torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1889430Z copying torch/include/ATen/ops/_cast_Double_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1890880Z copying torch/include/ATen/ops/prod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1892250Z copying torch/include/ATen/ops/ceil_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1893670Z copying torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1895090Z 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-11-03T15:55:33.1896530Z copying torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1897820Z copying torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1899340Z 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-11-03T15:55:33.1900720Z copying torch/include/ATen/ops/and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1902100Z 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-11-03T15:55:33.1903540Z copying torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1904930Z copying torch/include/ATen/ops/batch_norm_backward_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1906420Z copying torch/include/ATen/ops/as_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1907650Z copying torch/include/ATen/ops/linalg_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1909210Z 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-11-03T15:55:33.1910520Z copying torch/include/ATen/ops/sqrt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1912090Z copying torch/include/ATen/ops/nan_to_num_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1913270Z copying torch/include/ATen/ops/vstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1914680Z copying torch/include/ATen/ops/fft_rfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1916050Z copying torch/include/ATen/ops/normal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1917440Z copying torch/include/ATen/ops/_sparse_csr_sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1919140Z copying torch/include/ATen/ops/linalg_inv_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1920560Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1921920Z copying torch/include/ATen/ops/leaky_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1923420Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1924850Z 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-11-03T15:55:33.1926370Z 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-11-03T15:55:33.1927810Z copying torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1929120Z copying torch/include/ATen/ops/linalg_lu_factor_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1930440Z copying torch/include/ATen/ops/_fused_sgd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1932640Z copying torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1933460Z copying torch/include/ATen/ops/_linalg_eigh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1934880Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1936190Z copying torch/include/ATen/ops/dequantize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1937510Z copying torch/include/ATen/ops/_fft_c2c_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1938880Z copying torch/include/ATen/ops/align_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1940300Z copying torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1941670Z copying torch/include/ATen/ops/replication_pad3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1943090Z 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-11-03T15:55:33.1944400Z copying torch/include/ATen/ops/acosh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1945850Z copying torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1947080Z copying torch/include/ATen/ops/_assert_scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1948510Z copying torch/include/ATen/ops/index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1949950Z copying torch/include/ATen/ops/min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1951320Z copying torch/include/ATen/ops/glu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1952790Z copying torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1954160Z copying torch/include/ATen/ops/index_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1955650Z copying torch/include/ATen/ops/_mkldnn_reshape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1957010Z 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-11-03T15:55:33.1958330Z copying torch/include/ATen/ops/std_mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1959680Z copying torch/include/ATen/ops/softshrink_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1961090Z copying torch/include/ATen/ops/index_fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1962690Z copying torch/include/ATen/ops/repeat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1964220Z copying torch/include/ATen/ops/_foreach_floor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1965730Z copying torch/include/ATen/ops/_nested_tensor_from_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1967210Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1968510Z copying torch/include/ATen/ops/embedding_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1970120Z copying torch/include/ATen/ops/dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1971230Z copying torch/include/ATen/ops/matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1972610Z copying torch/include/ATen/ops/floor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1973930Z 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-11-03T15:55:33.1975500Z copying torch/include/ATen/ops/_unsafe_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1976880Z copying torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1978240Z copying torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1979540Z copying torch/include/ATen/ops/_test_check_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1980860Z copying torch/include/ATen/ops/rot90_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1982380Z copying torch/include/ATen/ops/signbit_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1983610Z copying torch/include/ATen/ops/reciprocal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1984950Z copying torch/include/ATen/ops/clamp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1986240Z copying torch/include/ATen/ops/selu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1987810Z copying torch/include/ATen/ops/reflection_pad1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1989060Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1990960Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1991880Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1993370Z copying torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1994940Z copying torch/include/ATen/ops/special_spherical_bessel_j0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1996120Z copying torch/include/ATen/ops/minimum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1997430Z copying torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.1998820Z copying torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2000250Z copying torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2001540Z copying torch/include/ATen/ops/values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2003010Z copying torch/include/ATen/ops/col2im_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2004340Z copying torch/include/ATen/ops/ge_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2005800Z 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-11-03T15:55:33.2007170Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2008570Z 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-11-03T15:55:33.2009960Z copying torch/include/ATen/ops/cosh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2011270Z copying torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2012650Z 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-11-03T15:55:33.2014030Z copying torch/include/ATen/ops/hardtanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2015540Z 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-11-03T15:55:33.2017020Z copying torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2018270Z 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-11-03T15:55:33.2019700Z copying torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2021050Z copying torch/include/ATen/ops/atan2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2022350Z copying torch/include/ATen/ops/sub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2023940Z copying torch/include/ATen/ops/view_as_real_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2025300Z copying torch/include/ATen/ops/sign_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2026810Z copying torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2028230Z 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-11-03T15:55:33.2029460Z copying torch/include/ATen/ops/glu_jvp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2030890Z copying torch/include/ATen/ops/_sobol_engine_scramble.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2032290Z copying torch/include/ATen/ops/mish_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2033640Z copying torch/include/ATen/ops/fft_rfftfreq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2034980Z copying torch/include/ATen/ops/elu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2036390Z copying torch/include/ATen/ops/nanmean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2038040Z copying torch/include/ATen/ops/miopen_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2039230Z copying torch/include/ATen/ops/linalg_cross_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2040600Z copying torch/include/ATen/ops/_fused_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2042010Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2043450Z copying torch/include/ATen/ops/addbmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2045010Z 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-11-03T15:55:33.2046360Z copying torch/include/ATen/ops/gt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2048130Z 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-11-03T15:55:33.2049340Z 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-11-03T15:55:33.2050730Z copying torch/include/ATen/ops/miopen_rnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2052110Z copying torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2053410Z copying torch/include/ATen/ops/detach_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2054870Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2056350Z copying torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2057670Z copying torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2059040Z copying torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2060460Z 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-11-03T15:55:33.2061870Z copying torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2063170Z copying torch/include/ATen/ops/conv_depthwise3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2064780Z copying torch/include/ATen/ops/norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2066020Z copying torch/include/ATen/ops/masked_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2067410Z copying torch/include/ATen/ops/exponential_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2068830Z copying torch/include/ATen/ops/special_i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2070580Z copying torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2072100Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2073530Z copying torch/include/ATen/ops/_autocast_to_full_precision_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2075160Z copying torch/include/ATen/ops/erfinv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2077000Z copying torch/include/ATen/ops/lcm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2078720Z copying torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2080330Z copying torch/include/ATen/ops/upsample_nearest2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2081660Z copying torch/include/ATen/ops/cross_entropy_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2083160Z copying torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2084490Z copying torch/include/ATen/ops/unsqueeze_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2086000Z 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-11-03T15:55:33.2087420Z copying torch/include/ATen/ops/rsub_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2088840Z 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-11-03T15:55:33.2090370Z 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-11-03T15:55:33.2091650Z copying torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2093040Z copying torch/include/ATen/ops/linalg_cross_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2094390Z copying torch/include/ATen/ops/gelu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2095900Z copying torch/include/ATen/ops/_weight_int8pack_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2097360Z 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-11-03T15:55:33.2098710Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2100150Z copying torch/include/ATen/ops/permute.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2101540Z copying torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2102980Z copying torch/include/ATen/ops/_upsample_nearest_exact1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2104350Z copying torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2105820Z copying torch/include/ATen/ops/_sparse_semi_structured_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2107070Z copying torch/include/ATen/ops/native_group_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2108450Z copying torch/include/ATen/ops/split_with_sizes_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2109940Z copying torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2111280Z copying torch/include/ATen/ops/_functional_assert_scalar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2112660Z copying torch/include/ATen/ops/mse_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2113990Z copying torch/include/ATen/ops/ceil_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2115440Z copying torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2116840Z copying torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2118050Z copying torch/include/ATen/ops/roll.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2119430Z copying torch/include/ATen/ops/linalg_svdvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2120790Z copying torch/include/ATen/ops/orgqr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2122150Z copying torch/include/ATen/ops/sigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2123560Z copying torch/include/ATen/ops/conv_transpose2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2124900Z copying torch/include/ATen/ops/layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2126470Z 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-11-03T15:55:33.2127870Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2129140Z copying torch/include/ATen/ops/std_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2130570Z copying torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2131930Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2133220Z copying torch/include/ATen/ops/take.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2134580Z copying torch/include/ATen/ops/igammac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2136000Z copying torch/include/ATen/ops/isin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2137410Z copying torch/include/ATen/ops/record_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2138760Z copying torch/include/ATen/ops/resize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2140210Z copying torch/include/ATen/ops/bitwise_and_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2141580Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2142990Z copying torch/include/ATen/ops/native_group_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2144390Z copying torch/include/ATen/ops/view_as_complex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2145650Z copying torch/include/ATen/ops/fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2147040Z copying torch/include/ATen/ops/linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2148340Z copying torch/include/ATen/ops/isinf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2149690Z copying torch/include/ATen/ops/expand_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2151160Z copying torch/include/ATen/ops/_batch_norm_with_update_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2152550Z copying torch/include/ATen/ops/_nested_get_min_seqlen_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2154040Z copying torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2155460Z copying torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2156730Z copying torch/include/ATen/ops/native_dropout_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2158090Z copying torch/include/ATen/ops/hash_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2159490Z copying torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2160940Z 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-11-03T15:55:33.2162240Z copying torch/include/ATen/ops/multinomial.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2163640Z copying torch/include/ATen/ops/alias_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2165030Z copying torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2166410Z copying torch/include/ATen/ops/allclose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2167940Z copying torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2169240Z copying torch/include/ATen/ops/nuclear_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2170590Z copying torch/include/ATen/ops/_slow_conv2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2171980Z copying torch/include/ATen/ops/multilabel_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2173350Z copying torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2174850Z copying torch/include/ATen/ops/pairwise_distance_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2176150Z copying torch/include/ATen/ops/broadcast_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2177510Z copying torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2178950Z copying torch/include/ATen/ops/_nested_get_lengths_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2180370Z 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-11-03T15:55:33.2181700Z copying torch/include/ATen/ops/_foreach_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2183220Z copying torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2184520Z copying torch/include/ATen/ops/nextafter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2186100Z copying torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2187260Z copying torch/include/ATen/ops/_aminmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2188660Z copying torch/include/ATen/ops/complex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2189980Z copying torch/include/ATen/ops/hardswish_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2191340Z copying torch/include/ATen/ops/digamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2192690Z copying torch/include/ATen/ops/mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2194210Z copying torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2195500Z copying torch/include/ATen/ops/empty_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2196840Z copying torch/include/ATen/ops/triangular_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2198220Z copying torch/include/ATen/ops/_pdist_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2199610Z copying torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2201080Z copying torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2202460Z copying torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2203770Z copying torch/include/ATen/ops/adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2205150Z copying torch/include/ATen/ops/bitwise_or_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2206510Z copying torch/include/ATen/ops/geometric_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2207900Z copying torch/include/ATen/ops/_values_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2209290Z copying torch/include/ATen/ops/slow_conv_transpose2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2210680Z 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-11-03T15:55:33.2212330Z copying torch/include/ATen/ops/cumprod_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2213660Z 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-11-03T15:55:33.2215040Z copying torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2216290Z copying torch/include/ATen/ops/ldexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2217670Z copying torch/include/ATen/ops/arccosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2219070Z copying torch/include/ATen/ops/linalg_matrix_rank.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2220400Z copying torch/include/ATen/ops/_copy_from_and_resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2221800Z 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-11-03T15:55:33.2223190Z copying torch/include/ATen/ops/all_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2224570Z copying torch/include/ATen/ops/linalg_matrix_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2225920Z copying torch/include/ATen/ops/is_set_to_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2227290Z copying torch/include/ATen/ops/bitwise_left_shift_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2228680Z copying torch/include/ATen/ops/randn_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2229990Z copying torch/include/ATen/ops/rnn_relu_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2231450Z copying torch/include/ATen/ops/max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2232970Z 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-11-03T15:55:33.2234390Z copying torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2236210Z copying torch/include/ATen/ops/_pack_padded_sequence_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2237130Z copying torch/include/ATen/ops/nonzero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2238560Z 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-11-03T15:55:33.2239960Z 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-11-03T15:55:33.2241410Z copying torch/include/ATen/ops/mse_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2242880Z 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-11-03T15:55:33.2244110Z copying torch/include/ATen/ops/eye_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2245520Z copying torch/include/ATen/ops/special_exp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2246880Z copying torch/include/ATen/ops/_fused_adamw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2249450Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2250610Z copying torch/include/ATen/ops/grid_sampler_3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2252110Z copying torch/include/ATen/ops/index_copy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2253510Z copying torch/include/ATen/ops/frac_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2254930Z copying torch/include/ATen/ops/gelu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2256370Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2257740Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2259690Z 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-11-03T15:55:33.2260560Z copying torch/include/ATen/ops/_pdist_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2262110Z copying torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2263350Z copying torch/include/ATen/ops/broadcast_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2264770Z copying torch/include/ATen/ops/slow_conv3d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2266080Z copying torch/include/ATen/ops/lt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2267420Z copying torch/include/ATen/ops/_chunk_cat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2269280Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2270340Z copying torch/include/ATen/ops/is_distributed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2271630Z copying torch/include/ATen/ops/nll_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2273040Z copying torch/include/ATen/ops/_masked_softmax_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2274350Z copying torch/include/ATen/ops/fft_irfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2275770Z copying torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2277090Z copying torch/include/ATen/ops/slice_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2278560Z copying torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2279860Z copying torch/include/ATen/ops/fft_fftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2281500Z copying torch/include/ATen/ops/_fused_adagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2282580Z copying torch/include/ATen/ops/all_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2283960Z copying torch/include/ATen/ops/quantized_gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2285310Z copying torch/include/ATen/ops/eye_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2286670Z copying torch/include/ATen/ops/hypot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2288080Z copying torch/include/ATen/ops/sqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2289470Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2290830Z copying torch/include/ATen/ops/set_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2292300Z copying torch/include/ATen/ops/linalg_vecdot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2293830Z copying torch/include/ATen/ops/_scaled_grouped_mm_v2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2295050Z 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-11-03T15:55:33.2296370Z copying torch/include/ATen/ops/acosh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2297780Z copying torch/include/ATen/ops/_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2299270Z copying torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2301310Z copying torch/include/ATen/ops/sparse_csr_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2302410Z copying torch/include/ATen/ops/_foreach_sinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2303830Z copying torch/include/ATen/ops/moveaxis_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2305200Z copying torch/include/ATen/ops/positive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2306560Z copying torch/include/ATen/ops/sum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2307940Z copying torch/include/ATen/ops/asin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2309480Z 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-11-03T15:55:33.2310820Z 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-11-03T15:55:33.2312070Z copying torch/include/ATen/ops/new_empty.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2313600Z 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-11-03T15:55:33.2315020Z copying torch/include/ATen/ops/any_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2316340Z copying torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2317780Z copying torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2319190Z copying torch/include/ATen/ops/_propagate_xla_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2320670Z copying torch/include/ATen/ops/cudnn_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2321870Z copying torch/include/ATen/ops/_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2323180Z copying torch/include/ATen/ops/_foreach_round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2324760Z copying torch/include/ATen/ops/_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2325970Z copying torch/include/ATen/ops/is_coalesced_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2327400Z copying torch/include/ATen/ops/flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2328670Z copying torch/include/ATen/ops/_to_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2330110Z copying torch/include/ATen/ops/bitwise_or_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2331400Z copying torch/include/ATen/ops/bincount_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2332900Z copying torch/include/ATen/ops/dot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2334200Z copying torch/include/ATen/ops/sparse_resize_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2335880Z 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-11-03T15:55:33.2337210Z copying torch/include/ATen/ops/linspace_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2338550Z copying torch/include/ATen/ops/lerp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2339790Z copying torch/include/ATen/ops/nanmedian.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2341220Z copying torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2342650Z copying torch/include/ATen/ops/diagonal_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2343910Z copying torch/include/ATen/ops/sgn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2345270Z copying torch/include/ATen/ops/_gather_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2346570Z copying torch/include/ATen/ops/topk_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2348030Z copying torch/include/ATen/ops/flip_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2349290Z copying torch/include/ATen/ops/any_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2350690Z 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-11-03T15:55:33.2351990Z copying torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2353590Z copying torch/include/ATen/ops/special_entr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2354880Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2356460Z copying torch/include/ATen/ops/where_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2357510Z copying torch/include/ATen/ops/_sparse_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2358900Z copying torch/include/ATen/ops/igamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2360340Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2361670Z copying torch/include/ATen/ops/_choose_qparams_per_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2362980Z copying torch/include/ATen/ops/fft_ihfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2364320Z copying torch/include/ATen/ops/kl_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2365730Z copying torch/include/ATen/ops/special_legendre_polynomial_p_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2366990Z copying torch/include/ATen/ops/_mps_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2368380Z copying torch/include/ATen/ops/hardsigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2369780Z copying torch/include/ATen/ops/values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2371050Z copying torch/include/ATen/ops/resize_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2372350Z copying torch/include/ATen/ops/bucketize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2373780Z 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-11-03T15:55:33.2375100Z copying torch/include/ATen/ops/_linalg_svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2376670Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2378030Z copying torch/include/ATen/ops/argmin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2379330Z copying torch/include/ATen/ops/any_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2380680Z copying torch/include/ATen/ops/vsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2382010Z copying torch/include/ATen/ops/_softmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2383790Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2384950Z copying torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2386280Z copying torch/include/ATen/ops/_mps_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2387830Z copying torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2389130Z copying torch/include/ATen/ops/value_selecting_reduction_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2390640Z copying torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2391930Z copying torch/include/ATen/ops/special_log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2393600Z copying torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2394920Z 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-11-03T15:55:33.2396630Z copying torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2397960Z copying torch/include/ATen/ops/put_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2399650Z copying torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2400930Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2402300Z copying torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2403670Z copying torch/include/ATen/ops/glu_jvp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2405030Z copying torch/include/ATen/ops/atan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2406370Z copying torch/include/ATen/ops/acos_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2407780Z copying torch/include/ATen/ops/log10_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2409240Z copying torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2410620Z copying torch/include/ATen/ops/_mixed_dtypes_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2411920Z copying torch/include/ATen/ops/mkldnn_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2413300Z copying torch/include/ATen/ops/binomial.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2414790Z copying torch/include/ATen/ops/quantized_max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2416170Z copying torch/include/ATen/ops/linalg_qr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2417570Z copying torch/include/ATen/ops/ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2418970Z copying torch/include/ATen/ops/_propagate_xla_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2420390Z copying torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2421740Z copying torch/include/ATen/ops/index_add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2423120Z copying torch/include/ATen/ops/norm_except_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2424550Z copying torch/include/ATen/ops/log_normal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2425970Z copying torch/include/ATen/ops/miopen_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2427390Z copying torch/include/ATen/ops/max_pool3d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2428770Z copying torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2430170Z copying torch/include/ATen/ops/transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2431640Z copying torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2433170Z 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-11-03T15:55:33.2434420Z copying torch/include/ATen/ops/smooth_l1_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2435910Z copying torch/include/ATen/ops/cholesky_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2437340Z 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-11-03T15:55:33.2438740Z copying torch/include/ATen/ops/embedding_renorm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2440120Z 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-11-03T15:55:33.2441390Z copying torch/include/ATen/ops/hardsigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2442890Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2444400Z 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-11-03T15:55:33.2445750Z copying torch/include/ATen/ops/signbit_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2447190Z copying torch/include/ATen/ops/remainder_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2448540Z copying torch/include/ATen/ops/_weight_norm_interface_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2449840Z copying torch/include/ATen/ops/deg2rad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2451150Z copying torch/include/ATen/ops/glu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2452670Z copying torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2453990Z copying torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2455300Z copying torch/include/ATen/ops/zero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2456680Z copying torch/include/ATen/ops/is_complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2458100Z copying torch/include/ATen/ops/floor_divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2459520Z copying torch/include/ATen/ops/soft_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2461040Z copying torch/include/ATen/ops/addr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2462330Z copying torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2463700Z copying torch/include/ATen/ops/upsample_bicubic2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2465210Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2466860Z 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-11-03T15:55:33.2468280Z copying torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2469740Z copying torch/include/ATen/ops/corrcoef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2471210Z copying torch/include/ATen/ops/linalg_tensorsolve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2472850Z copying torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2474000Z copying torch/include/ATen/ops/special_gammaln_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2475660Z 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-11-03T15:55:33.2476910Z copying torch/include/ATen/ops/erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2478250Z copying torch/include/ATen/ops/ccol_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2479600Z copying torch/include/ATen/ops/reflection_pad1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2481200Z copying torch/include/ATen/ops/_foreach_asin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2482460Z copying torch/include/ATen/ops/_fused_adam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2483760Z copying torch/include/ATen/ops/zeros_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2485260Z copying torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2486530Z copying torch/include/ATen/ops/reshape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2487910Z copying torch/include/ATen/ops/_foreach_cosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2489440Z copying torch/include/ATen/ops/lt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2490880Z copying torch/include/ATen/ops/slow_conv_transpose3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2492320Z copying torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2493600Z copying torch/include/ATen/ops/gt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2495110Z copying torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2496600Z copying torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2498050Z copying torch/include/ATen/ops/replication_pad3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2499560Z 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-11-03T15:55:33.2501160Z 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-11-03T15:55:33.2502470Z copying torch/include/ATen/ops/unbind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2504030Z copying torch/include/ATen/ops/scatter_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2505460Z copying torch/include/ATen/ops/unique_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2506980Z copying torch/include/ATen/ops/triangular_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2508500Z copying torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2509990Z copying torch/include/ATen/ops/baddbmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2511450Z copying torch/include/ATen/ops/linear_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2512940Z 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-11-03T15:55:33.2514320Z copying torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2516350Z copying torch/include/ATen/ops/geometric_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2517580Z copying torch/include/ATen/ops/multilabel_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2518870Z copying torch/include/ATen/ops/lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2520380Z copying torch/include/ATen/ops/_foreach_cos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2521850Z copying torch/include/ATen/ops/max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2523140Z copying torch/include/ATen/ops/outer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2524700Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2526080Z copying torch/include/ATen/ops/vdot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2527620Z 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-11-03T15:55:33.2528930Z copying torch/include/ATen/ops/_fused_rms_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2530420Z copying torch/include/ATen/ops/topk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2537070Z copying torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2537450Z copying torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2538080Z 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-11-03T15:55:33.2538330Z copying torch/include/ATen/ops/_cast_Short_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2538610Z copying torch/include/ATen/ops/batch_norm_gather_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2540330Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2541290Z copying torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2542770Z copying torch/include/ATen/ops/batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2544130Z copying torch/include/ATen/ops/_to_sparse_bsc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2545650Z 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-11-03T15:55:33.2547130Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2548740Z copying torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2550030Z copying torch/include/ATen/ops/empty_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2551420Z copying torch/include/ATen/ops/q_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2552810Z copying torch/include/ATen/ops/lgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2554100Z copying torch/include/ATen/ops/stft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2555480Z copying torch/include/ATen/ops/_sparse_mask_projection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2556840Z copying torch/include/ATen/ops/aminmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2558230Z copying torch/include/ATen/ops/_trilinear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2559550Z copying torch/include/ATen/ops/mse_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2561020Z 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-11-03T15:55:33.2562400Z copying torch/include/ATen/ops/affine_grid_generator_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2563680Z copying torch/include/ATen/ops/sinc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2565300Z copying torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2566630Z copying torch/include/ATen/ops/unique_dim_consecutive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2568000Z copying torch/include/ATen/ops/nll_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2569610Z copying torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2570980Z copying torch/include/ATen/ops/quantize_per_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2572240Z copying torch/include/ATen/ops/avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2573530Z copying torch/include/ATen/ops/unsqueeze_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2575080Z copying torch/include/ATen/ops/random_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2576440Z copying torch/include/ATen/ops/repeat_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2577870Z copying torch/include/ATen/ops/fractional_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2579380Z copying torch/include/ATen/ops/linalg_matrix_rank_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2580640Z copying torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2582070Z copying torch/include/ATen/ops/output_nr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2583800Z copying torch/include/ATen/ops/slow_conv3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2585060Z copying torch/include/ATen/ops/not_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2586480Z copying torch/include/ATen/ops/cholesky_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2587900Z copying torch/include/ATen/ops/meshgrid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2589200Z copying torch/include/ATen/ops/_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2590650Z copying torch/include/ATen/ops/sym_storage_offset_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2592020Z copying torch/include/ATen/ops/isneginf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2593360Z copying torch/include/ATen/ops/hardsigmoid_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2594730Z copying torch/include/ATen/ops/unsqueeze_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2596090Z copying torch/include/ATen/ops/rand_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2597570Z copying torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2598910Z copying torch/include/ATen/ops/mse_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2600390Z copying torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2601790Z copying torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2603190Z copying torch/include/ATen/ops/grid_sampler_2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2604570Z copying torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2605940Z copying torch/include/ATen/ops/float_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2607440Z copying torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2608820Z copying torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2610210Z copying torch/include/ATen/ops/slow_conv_dilated3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2611590Z copying torch/include/ATen/ops/maximum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2613060Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2614670Z copying torch/include/ATen/ops/multi_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2616120Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2617630Z 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-11-03T15:55:33.2619150Z 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-11-03T15:55:33.2620600Z copying torch/include/ATen/ops/cudnn_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2622020Z copying torch/include/ATen/ops/cosh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2623630Z 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-11-03T15:55:33.2624890Z copying torch/include/ATen/ops/asinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2626520Z copying torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2628040Z copying torch/include/ATen/ops/tanh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2629630Z copying torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2631240Z copying torch/include/ATen/ops/_masked_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2633050Z 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-11-03T15:55:33.2634710Z copying torch/include/ATen/ops/frac_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2636250Z 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-11-03T15:55:33.2637790Z copying torch/include/ATen/ops/diff_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2639110Z copying torch/include/ATen/ops/fmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2640570Z copying torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2641900Z copying torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2643270Z copying torch/include/ATen/ops/eye_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2644870Z 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-11-03T15:55:33.2646280Z copying torch/include/ATen/ops/reflection_pad2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2647600Z copying torch/include/ATen/ops/ceil_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2649060Z copying torch/include/ATen/ops/any_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2650520Z 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-11-03T15:55:33.2651950Z copying torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2653240Z copying torch/include/ATen/ops/sym_storage_offset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2654980Z copying torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2656320Z copying torch/include/ATen/ops/cat_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2657740Z copying torch/include/ATen/ops/fmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2659220Z copying torch/include/ATen/ops/pixel_unshuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2660690Z copying torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2662080Z copying torch/include/ATen/ops/_log_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2663420Z copying torch/include/ATen/ops/abs_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2664750Z copying torch/include/ATen/ops/_masked_softmax_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2666320Z 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-11-03T15:55:33.2667820Z 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-11-03T15:55:33.2669080Z copying torch/include/ATen/ops/and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2670470Z copying torch/include/ATen/ops/slow_conv_dilated2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2671840Z copying torch/include/ATen/ops/_sparse_csr_sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2673230Z copying torch/include/ATen/ops/replication_pad3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2674630Z copying torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2675940Z copying torch/include/ATen/ops/gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2677280Z copying torch/include/ATen/ops/logaddexp2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2678720Z copying torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2680120Z copying torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2681770Z copying torch/include/ATen/ops/searchsorted_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2683410Z copying torch/include/ATen/ops/addmv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2684940Z 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-11-03T15:55:33.2686390Z copying torch/include/ATen/ops/masked_scatter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2687910Z 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-11-03T15:55:33.2689360Z 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-11-03T15:55:33.2690720Z copying torch/include/ATen/ops/clamp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2692190Z copying torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2693510Z copying torch/include/ATen/ops/hann_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2694930Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2696410Z copying torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2697660Z copying torch/include/ATen/ops/log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2699150Z copying torch/include/ATen/ops/_cast_Int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2700450Z copying torch/include/ATen/ops/nextafter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2702020Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2716260Z copying torch/include/ATen/ops/erf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2717500Z copying torch/include/ATen/ops/as_strided_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2718960Z copying torch/include/ATen/ops/_flash_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2720420Z copying torch/include/ATen/ops/mkldnn_rnn_layer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2721960Z copying torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2723380Z copying torch/include/ATen/ops/isneginf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2724790Z copying torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2726350Z 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-11-03T15:55:33.2734630Z copying torch/include/ATen/ops/concatenate_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2735760Z copying torch/include/ATen/ops/bitwise_or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2737290Z copying torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2738670Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2740040Z copying torch/include/ATen/ops/clamp_min_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2741410Z copying torch/include/ATen/ops/argmin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2742750Z copying torch/include/ATen/ops/_index_put_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2744190Z copying torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2745500Z copying torch/include/ATen/ops/erfc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2746950Z 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-11-03T15:55:33.2748390Z copying torch/include/ATen/ops/lstm_mps_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2749930Z copying torch/include/ATen/ops/range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2751420Z copying torch/include/ATen/ops/select_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2752810Z copying torch/include/ATen/ops/_foreach_erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2754250Z copying torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2755830Z copying torch/include/ATen/ops/sparse_resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2757320Z copying torch/include/ATen/ops/mkldnn_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2758670Z copying torch/include/ATen/ops/sinc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2760030Z copying torch/include/ATen/ops/_conj_physical.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2761460Z copying torch/include/ATen/ops/square_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2762900Z copying torch/include/ATen/ops/copysign_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2764200Z copying torch/include/ATen/ops/amin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2765750Z 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-11-03T15:55:33.2767190Z copying torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2768520Z copying torch/include/ATen/ops/margin_ranking_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2769920Z copying torch/include/ATen/ops/special_psi_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2771390Z copying torch/include/ATen/ops/special_ndtri_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2772750Z copying torch/include/ATen/ops/to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.2829500Z 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-11-03T15:55:33.3397140Z copying torch/include/ATen/ops/_foreach_erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3405370Z copying torch/include/ATen/ops/selu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3406880Z copying torch/include/ATen/ops/_cdist_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3408740Z copying torch/include/ATen/ops/sparse_dim_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3421250Z copying torch/include/ATen/ops/log_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3428570Z copying torch/include/ATen/ops/range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3429820Z copying torch/include/ATen/ops/aminmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3437590Z copying torch/include/ATen/ops/linalg_solve_triangular.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3446320Z copying torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3447840Z copying torch/include/ATen/ops/cov.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3450070Z 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-11-03T15:55:33.3451170Z copying torch/include/ATen/ops/relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3452900Z copying torch/include/ATen/ops/unique_dim_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3454600Z copying torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3456040Z copying torch/include/ATen/ops/min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3457600Z copying torch/include/ATen/ops/chain_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3459090Z copying torch/include/ATen/ops/tile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3460620Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3462070Z copying torch/include/ATen/ops/_foreach_reciprocal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3463520Z copying torch/include/ATen/ops/hardshrink_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3464930Z copying torch/include/ATen/ops/unique_dim_consecutive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3466440Z copying torch/include/ATen/ops/is_nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3467820Z copying torch/include/ATen/ops/_prelu_kernel_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3469200Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3470650Z copying torch/include/ATen/ops/kthvalue_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3472050Z copying torch/include/ATen/ops/linspace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3473510Z copying torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3474940Z copying torch/include/ATen/ops/slice_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3476380Z copying torch/include/ATen/ops/_test_parallel_materialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3477930Z 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-11-03T15:55:33.3479390Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3480900Z copying torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3482370Z copying torch/include/ATen/ops/conj_physical_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3483770Z copying torch/include/ATen/ops/int_repr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3485200Z copying torch/include/ATen/ops/ne_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3486680Z copying torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3488040Z 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-11-03T15:55:33.3489530Z copying torch/include/ATen/ops/upsample_nearest2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3490910Z copying torch/include/ATen/ops/_foreach_mul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3492590Z copying torch/include/ATen/ops/upsample_linear1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3493860Z 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-11-03T15:55:33.3495300Z copying torch/include/ATen/ops/_int_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3496700Z copying torch/include/ATen/ops/upsample_linear1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3498330Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3499660Z 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-11-03T15:55:33.3501090Z copying torch/include/ATen/ops/fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3502580Z 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-11-03T15:55:33.3504120Z 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-11-03T15:55:33.3505760Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3507160Z copying torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3508670Z copying torch/include/ATen/ops/log1p_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3510250Z copying torch/include/ATen/ops/triplet_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3511850Z copying torch/include/ATen/ops/lcm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3513490Z copying torch/include/ATen/ops/argwhere_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3514980Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3516490Z copying torch/include/ATen/ops/_foreach_frac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3518010Z copying torch/include/ATen/ops/orgqr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3519600Z copying torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3521170Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3522640Z copying torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3524010Z copying torch/include/ATen/ops/sgn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3525400Z copying torch/include/ATen/ops/nanmedian_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3527050Z copying torch/include/ATen/ops/crow_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3528290Z copying torch/include/ATen/ops/fft_ihfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3529650Z copying torch/include/ATen/ops/put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3531170Z copying torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3532530Z copying torch/include/ATen/ops/std_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3533990Z copying torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3535530Z copying torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3536840Z copying torch/include/ATen/ops/lerp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3538300Z copying torch/include/ATen/ops/clamp_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3539760Z copying torch/include/ATen/ops/_int_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3541150Z copying torch/include/ATen/ops/var_mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3542600Z 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-11-03T15:55:33.3543990Z copying torch/include/ATen/ops/arctan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3545540Z copying torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3547000Z copying torch/include/ATen/ops/div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3548380Z copying torch/include/ATen/ops/round_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3549900Z copying torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3551350Z copying torch/include/ATen/ops/hypot_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3552650Z copying torch/include/ATen/ops/nll_loss2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3554080Z copying torch/include/ATen/ops/to_mkldnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3555510Z 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-11-03T15:55:33.3556910Z copying torch/include/ATen/ops/empty_permuted_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3558540Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3559980Z 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-11-03T15:55:33.3561310Z copying torch/include/ATen/ops/lt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3562800Z copying torch/include/ATen/ops/linalg_householder_product_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3564130Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3565520Z copying torch/include/ATen/ops/cudnn_grid_sampler_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3567100Z copying torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3568530Z 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-11-03T15:55:33.3569920Z copying torch/include/ATen/ops/slice_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3571610Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3572730Z copying torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3574110Z copying torch/include/ATen/ops/_nnz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3575450Z copying torch/include/ATen/ops/grid_sampler_2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3576850Z copying torch/include/ATen/ops/isneginf_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3578280Z copying torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3579740Z 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-11-03T15:55:33.3581120Z copying torch/include/ATen/ops/sparse_compressed_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3582510Z 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-11-03T15:55:33.3583910Z copying torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3585310Z copying torch/include/ATen/ops/hamming_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3586670Z copying torch/include/ATen/ops/nll_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3588070Z copying torch/include/ATen/ops/zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3589630Z copying torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3590960Z copying torch/include/ATen/ops/special_modified_bessel_k0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3592290Z copying torch/include/ATen/ops/_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3593710Z copying torch/include/ATen/ops/special_bessel_j1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3595060Z copying torch/include/ATen/ops/conv3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3596500Z copying torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3598050Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3599470Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3600840Z 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-11-03T15:55:33.3602200Z copying torch/include/ATen/ops/chunk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3603680Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3605150Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3606590Z copying torch/include/ATen/ops/special_modified_bessel_k1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3607800Z copying torch/include/ATen/ops/sgn_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3609210Z 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-11-03T15:55:33.3610880Z 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-11-03T15:55:33.3612110Z copying torch/include/ATen/ops/split_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3613520Z copying torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3614860Z copying torch/include/ATen/ops/topk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3616290Z copying torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3617620Z copying torch/include/ATen/ops/sym_numel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3618970Z copying torch/include/ATen/ops/leaky_relu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3620390Z copying torch/include/ATen/ops/mish_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3621710Z copying torch/include/ATen/ops/_values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3623320Z copying torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3624700Z copying torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3626010Z copying torch/include/ATen/ops/_coalesced_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3627360Z copying torch/include/ATen/ops/bitwise_or_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3628700Z copying torch/include/ATen/ops/sym_numel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3630280Z 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-11-03T15:55:33.3631600Z copying torch/include/ATen/ops/log_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3632920Z copying torch/include/ATen/ops/_to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3634390Z 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-11-03T15:55:33.3635850Z copying torch/include/ATen/ops/_logcumsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3637200Z copying torch/include/ATen/ops/pow_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3638660Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3639960Z copying torch/include/ATen/ops/_fused_adagrad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3641450Z copying torch/include/ATen/ops/_foreach_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3642870Z copying torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3644230Z copying torch/include/ATen/ops/linalg_solve_triangular_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3645660Z copying torch/include/ATen/ops/conj_physical_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3647050Z copying torch/include/ATen/ops/silu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3648410Z copying torch/include/ATen/ops/asin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3650070Z copying torch/include/ATen/ops/multinomial_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3651130Z copying torch/include/ATen/ops/_spsolve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3652730Z copying torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3654050Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3655590Z copying torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3657600Z copying torch/include/ATen/ops/sspaddmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3659210Z copying torch/include/ATen/ops/maximum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3660760Z copying torch/include/ATen/ops/_batch_norm_impl_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3662220Z copying torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3663690Z copying torch/include/ATen/ops/linalg_eigh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3665210Z 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-11-03T15:55:33.3666610Z copying torch/include/ATen/ops/quantized_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3667990Z copying torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3669540Z 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-11-03T15:55:33.3670950Z copying torch/include/ATen/ops/_cummax_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3672320Z copying torch/include/ATen/ops/special_i1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3673770Z copying torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3675220Z copying torch/include/ATen/ops/pow_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3676700Z copying torch/include/ATen/ops/sparse_compressed_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3678160Z copying torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3679650Z copying torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3681120Z copying torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3682340Z copying torch/include/ATen/ops/_cast_Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3683830Z copying torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3685390Z 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-11-03T15:55:33.3686720Z copying torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3688160Z copying torch/include/ATen/ops/elu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3689580Z copying torch/include/ATen/ops/fmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3690950Z copying torch/include/ATen/ops/_to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3692340Z copying torch/include/ATen/ops/addr_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3693770Z copying torch/include/ATen/ops/threshold_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3695150Z copying torch/include/ATen/ops/not_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3696480Z copying torch/include/ATen/ops/xlogy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3697940Z copying torch/include/ATen/ops/special_exp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3699540Z 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-11-03T15:55:33.3700830Z copying torch/include/ATen/ops/special_bessel_j0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3702250Z copying torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3703700Z copying torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3705060Z copying torch/include/ATen/ops/view_as_complex_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3706400Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3707900Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3709250Z copying torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3710670Z copying torch/include/ATen/ops/special_bessel_j1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3711990Z copying torch/include/ATen/ops/_unsafe_index_put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3713440Z copying torch/include/ATen/ops/row_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3714730Z copying torch/include/ATen/ops/multiply_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3716320Z copying torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3717640Z copying torch/include/ATen/ops/_dim_arange_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3719210Z copying torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3720490Z copying torch/include/ATen/ops/to_sparse_csc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3721940Z copying torch/include/ATen/ops/indices_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3723380Z copying torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3724820Z copying torch/include/ATen/ops/upsample_nearest2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3726180Z 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-11-03T15:55:33.3727650Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3729010Z copying torch/include/ATen/ops/equal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3730500Z copying torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3731860Z copying torch/include/ATen/ops/xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3733280Z copying torch/include/ATen/ops/_nnz_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3735070Z copying torch/include/ATen/ops/special_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3736040Z copying torch/include/ATen/ops/scatter_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3737540Z copying torch/include/ATen/ops/slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3739080Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3740450Z copying torch/include/ATen/ops/std_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3741960Z 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-11-03T15:55:33.3743260Z copying torch/include/ATen/ops/_foreach_log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3744740Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3746440Z 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-11-03T15:55:33.3747720Z copying torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3749130Z copying torch/include/ATen/ops/fractional_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3750520Z copying torch/include/ATen/ops/hspmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3751990Z copying torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3753410Z copying torch/include/ATen/ops/take_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3755080Z copying torch/include/ATen/ops/segment_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3756330Z 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-11-03T15:55:33.3757770Z copying torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3759350Z copying torch/include/ATen/ops/squeeze_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3760600Z 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-11-03T15:55:33.3762070Z copying torch/include/ATen/ops/less_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3763440Z copying torch/include/ATen/ops/_shape_as_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3764820Z copying torch/include/ATen/ops/mv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3766320Z 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-11-03T15:55:33.3767740Z copying torch/include/ATen/ops/special_legendre_polynomial_p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3769150Z 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-11-03T15:55:33.3770570Z copying torch/include/ATen/ops/threshold_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3771950Z copying torch/include/ATen/ops/clamp_min_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3773560Z 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-11-03T15:55:33.3774790Z copying torch/include/ATen/ops/mkldnn_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3776280Z copying torch/include/ATen/ops/_mps_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3777610Z copying torch/include/ATen/ops/cat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3779040Z copying torch/include/ATen/ops/swapdims_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3780460Z copying torch/include/ATen/ops/rrelu_with_noise_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3781800Z 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-11-03T15:55:33.3783240Z copying torch/include/ATen/ops/_to_sparse_csc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3785680Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3786660Z copying torch/include/ATen/ops/rnn_tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3788170Z copying torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3789570Z copying torch/include/ATen/ops/special_multigammaln_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3791170Z 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-11-03T15:55:33.3792460Z copying torch/include/ATen/ops/amax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3794010Z copying torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3795270Z copying torch/include/ATen/ops/to_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3796660Z copying torch/include/ATen/ops/reflection_pad3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3798080Z copying torch/include/ATen/ops/nan_to_num_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3799550Z copying torch/include/ATen/ops/_cummin_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3801050Z copying torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3802530Z copying torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3803970Z copying torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3805360Z copying torch/include/ATen/ops/log10_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3806800Z copying torch/include/ATen/ops/_test_parallel_materialize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3808370Z 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-11-03T15:55:33.3809720Z copying torch/include/ATen/ops/bitwise_left_shift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3811100Z copying torch/include/ATen/ops/_pad_circular_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3812590Z copying torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3813950Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3815420Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3816710Z copying torch/include/ATen/ops/frobenius_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3818140Z copying torch/include/ATen/ops/count_nonzero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3819570Z copying torch/include/ATen/ops/rsub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3820890Z copying torch/include/ATen/ops/linalg_qr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3822290Z copying torch/include/ATen/ops/slow_conv_transpose2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3823760Z copying torch/include/ATen/ops/_linalg_det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3825130Z copying torch/include/ATen/ops/tanh_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3826590Z copying torch/include/ATen/ops/_foreach_lgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3828010Z copying torch/include/ATen/ops/isin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3829290Z copying torch/include/ATen/ops/ne_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3830660Z copying torch/include/ATen/ops/_linalg_slogdet_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3832060Z copying torch/include/ATen/ops/multinomial_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3833460Z copying torch/include/ATen/ops/_foreach_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3834860Z copying torch/include/ATen/ops/tan_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3836240Z copying torch/include/ATen/ops/multinomial_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3837620Z copying torch/include/ATen/ops/new_empty_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3839040Z copying torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3840500Z copying torch/include/ATen/ops/all_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3841790Z copying torch/include/ATen/ops/rms_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3843260Z copying torch/include/ATen/ops/to_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3844660Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3846090Z copying torch/include/ATen/ops/flip_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3847390Z copying torch/include/ATen/ops/svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3848770Z copying torch/include/ATen/ops/mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3850210Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3851770Z copying torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3853080Z copying torch/include/ATen/ops/special_polygamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3854460Z copying torch/include/ATen/ops/rshift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3855800Z copying torch/include/ATen/ops/log2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3857210Z copying torch/include/ATen/ops/special_i1e_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3858670Z copying torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3860400Z copying torch/include/ATen/ops/squeeze_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3861440Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3863080Z copying torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3864310Z copying torch/include/ATen/ops/is_leaf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3865670Z copying torch/include/ATen/ops/maximum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3867200Z copying torch/include/ATen/ops/asinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3868480Z copying torch/include/ATen/ops/broadcast_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3869870Z copying torch/include/ATen/ops/_nested_get_lengths_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3871330Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3872810Z copying torch/include/ATen/ops/tril_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3874110Z copying torch/include/ATen/ops/sqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3875500Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3876880Z copying torch/include/ATen/ops/randint_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3878230Z copying torch/include/ATen/ops/slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3879630Z 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-11-03T15:55:33.3881010Z copying torch/include/ATen/ops/_foreach_erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3882470Z copying torch/include/ATen/ops/_functional_assert_scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3883810Z copying torch/include/ATen/ops/_lazy_clone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3885250Z copying torch/include/ATen/ops/mps_convolution_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3886940Z 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-11-03T15:55:33.3888010Z copying torch/include/ATen/ops/equal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3889420Z copying torch/include/ATen/ops/empty_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3890760Z copying torch/include/ATen/ops/special_digamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3892240Z copying torch/include/ATen/ops/fractional_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3893570Z copying torch/include/ATen/ops/unfold_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3895040Z copying torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3896450Z copying torch/include/ATen/ops/all_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3897800Z copying torch/include/ATen/ops/cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3899300Z copying torch/include/ATen/ops/_convolution_double_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3900840Z copying torch/include/ATen/ops/gelu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3902490Z 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-11-03T15:55:33.3904230Z 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-11-03T15:55:33.3905720Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3906940Z copying torch/include/ATen/ops/fmin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3908330Z copying torch/include/ATen/ops/log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3909710Z copying torch/include/ATen/ops/less.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3911200Z copying torch/include/ATen/ops/tensordot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3912670Z copying torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3914260Z copying torch/include/ATen/ops/_sample_dirichlet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3915660Z copying torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3917010Z copying torch/include/ATen/ops/log2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3918470Z copying torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3919870Z copying torch/include/ATen/ops/linalg_cholesky_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3921180Z copying torch/include/ATen/ops/div_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3922780Z copying torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3924150Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3925470Z copying torch/include/ATen/ops/nll_loss_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3926960Z copying torch/include/ATen/ops/bitwise_not_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3928310Z copying torch/include/ATen/ops/_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3929790Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3931280Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3932700Z copying torch/include/ATen/ops/slow_conv_dilated2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3934110Z copying torch/include/ATen/ops/_foreach_acos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3935520Z copying torch/include/ATen/ops/gradient_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3936920Z copying torch/include/ATen/ops/conv_transpose1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3938290Z copying torch/include/ATen/ops/or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3939710Z copying torch/include/ATen/ops/smooth_l1_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3941170Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3942610Z copying torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3943940Z copying torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3945360Z copying torch/include/ATen/ops/median_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3946790Z copying torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3948250Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3949640Z copying torch/include/ATen/ops/atleast_3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3951020Z copying torch/include/ATen/ops/_chunk_cat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3952550Z copying torch/include/ATen/ops/_functional_sym_constrain_range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3953930Z copying torch/include/ATen/ops/im2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3955390Z copying torch/include/ATen/ops/upsample_nearest3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3956820Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3958180Z copying torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3959580Z copying torch/include/ATen/ops/_mps_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3961010Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3962370Z copying torch/include/ATen/ops/retains_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3963950Z 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-11-03T15:55:33.3965280Z copying torch/include/ATen/ops/sign_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3966610Z copying torch/include/ATen/ops/empty_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3968060Z copying torch/include/ATen/ops/gelu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3969460Z copying torch/include/ATen/ops/_scaled_grouped_mm_v2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3970940Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3972320Z copying torch/include/ATen/ops/elu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3973690Z copying torch/include/ATen/ops/output_nr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3975100Z copying torch/include/ATen/ops/sqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3976540Z copying torch/include/ATen/ops/linalg_lstsq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3977900Z copying torch/include/ATen/ops/count_nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3979230Z copying torch/include/ATen/ops/feature_alpha_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3980780Z copying torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3982100Z copying torch/include/ATen/ops/softplus_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3989030Z copying torch/include/ATen/ops/trunc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3989330Z copying torch/include/ATen/ops/_cummin_helper_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3989700Z copying torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3989990Z copying torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3990260Z copying torch/include/ATen/ops/as_strided_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3991140Z copying torch/include/ATen/ops/special_i0e_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3992670Z copying torch/include/ATen/ops/norm_except_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3994250Z copying torch/include/ATen/ops/sort_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3995690Z copying torch/include/ATen/ops/logit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3997090Z copying torch/include/ATen/ops/_stack_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.3998610Z copying torch/include/ATen/ops/fft_hfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4000140Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4001600Z copying torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4003160Z copying torch/include/ATen/ops/view_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4004480Z copying torch/include/ATen/ops/grid_sampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4006020Z copying torch/include/ATen/ops/linalg_lu_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4007410Z copying torch/include/ATen/ops/divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4008830Z copying torch/include/ATen/ops/_unsafe_masked_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4010340Z copying torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4011750Z copying torch/include/ATen/ops/is_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4013190Z copying torch/include/ATen/ops/replication_pad2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4014630Z copying torch/include/ATen/ops/_resize_output_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4016240Z copying torch/include/ATen/ops/_fused_adamw_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4017900Z copying torch/include/ATen/ops/slice_inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4019260Z copying torch/include/ATen/ops/hardswish_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4020880Z copying torch/include/ATen/ops/fft_ihfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4022140Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4023570Z copying torch/include/ATen/ops/values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4024950Z copying torch/include/ATen/ops/feature_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4026400Z copying torch/include/ATen/ops/resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4027730Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4029150Z copying torch/include/ATen/ops/gt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4030600Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4031980Z copying torch/include/ATen/ops/special_xlog1py_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4033320Z copying torch/include/ATen/ops/linalg_inv_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4034790Z copying torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4036190Z copying torch/include/ATen/ops/tril_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4037540Z copying torch/include/ATen/ops/threshold_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4038910Z copying torch/include/ATen/ops/sparse_bsr_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4040310Z copying torch/include/ATen/ops/max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4041680Z copying torch/include/ATen/ops/tensor_split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4043150Z copying torch/include/ATen/ops/diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4044560Z copying torch/include/ATen/ops/std_mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4046060Z copying torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4047540Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4049060Z copying torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4050270Z copying torch/include/ATen/ops/expand_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4051760Z copying torch/include/ATen/ops/adaptive_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4053140Z copying torch/include/ATen/ops/le_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4054660Z copying torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4056130Z 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-11-03T15:55:33.4057750Z copying torch/include/ATen/ops/hardshrink_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4058930Z copying torch/include/ATen/ops/addmv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4060360Z copying torch/include/ATen/ops/to_sparse_bsc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4061830Z copying torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4063430Z copying torch/include/ATen/ops/_sobol_engine_scramble_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4064650Z copying torch/include/ATen/ops/slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4066080Z copying torch/include/ATen/ops/native_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4067460Z copying torch/include/ATen/ops/hardswish_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4068940Z copying torch/include/ATen/ops/lshift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4070310Z copying torch/include/ATen/ops/set_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4071740Z copying torch/include/ATen/ops/_linalg_det_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4073210Z copying torch/include/ATen/ops/sym_is_contiguous_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4074700Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4076000Z copying torch/include/ATen/ops/tril_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4077500Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4079030Z 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-11-03T15:55:33.4080390Z copying torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4081950Z copying torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4083330Z copying torch/include/ATen/ops/sinh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4084640Z copying torch/include/ATen/ops/sub_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4086060Z copying torch/include/ATen/ops/glu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4087490Z copying torch/include/ATen/ops/fmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4088870Z copying torch/include/ATen/ops/_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4090430Z copying torch/include/ATen/ops/cudnn_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4091660Z copying torch/include/ATen/ops/lcm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4093140Z copying torch/include/ATen/ops/atan_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4094630Z 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-11-03T15:55:33.4096100Z copying torch/include/ATen/ops/_unique2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4097610Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4099030Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4100420Z copying torch/include/ATen/ops/new_full_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4101830Z copying torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4103240Z copying torch/include/ATen/ops/logspace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4104950Z copying torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4106320Z copying torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4107710Z copying torch/include/ATen/ops/to_mkldnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4109110Z copying torch/include/ATen/ops/linalg_eigvalsh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4110700Z copying torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4111980Z copying torch/include/ATen/ops/linalg_inv_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4113320Z copying torch/include/ATen/ops/unsqueeze.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4114670Z copying torch/include/ATen/ops/isinf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4116100Z copying torch/include/ATen/ops/_foreach_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4117430Z copying torch/include/ATen/ops/floor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4118800Z copying torch/include/ATen/ops/where_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4120280Z copying torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4121690Z copying torch/include/ATen/ops/special_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4123080Z copying torch/include/ATen/ops/_addmm_activation_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4124380Z copying torch/include/ATen/ops/clamp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4125810Z copying torch/include/ATen/ops/special_hermite_polynomial_h.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4127250Z copying torch/include/ATen/ops/set_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4128630Z copying torch/include/ATen/ops/bucketize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4130150Z copying torch/include/ATen/ops/asinh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4131640Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4133060Z copying torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4134670Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4135780Z copying torch/include/ATen/ops/_conj_physical_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4137210Z copying torch/include/ATen/ops/_sparse_sum_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4138730Z 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-11-03T15:55:33.4140060Z copying torch/include/ATen/ops/alias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4141420Z copying torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4142930Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4144290Z copying torch/include/ATen/ops/fft_fft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4145840Z copying torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4147250Z copying torch/include/ATen/ops/special_i1e_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4149040Z copying torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4150470Z copying torch/include/ATen/ops/poisson.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4151980Z copying torch/include/ATen/ops/special_hermite_polynomial_h_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4153510Z copying torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4155060Z copying torch/include/ATen/ops/replication_pad1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4156780Z copying torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4158330Z copying torch/include/ATen/ops/nan_to_num_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4160040Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4161460Z copying torch/include/ATen/ops/logspace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4162930Z copying torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4164280Z copying torch/include/ATen/ops/conj_physical_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4166770Z copying torch/include/ATen/ops/heaviside.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4168270Z copying torch/include/ATen/ops/arccosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4169890Z copying torch/include/ATen/ops/_mkldnn_reshape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4171630Z copying torch/include/ATen/ops/linalg_slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4172850Z copying torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4174470Z copying torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4176000Z copying torch/include/ATen/ops/addcdiv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4177760Z copying torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4179250Z copying torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4181000Z copying torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4182390Z copying torch/include/ATen/ops/aminmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4183760Z copying torch/include/ATen/ops/hash_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4185380Z copying torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4186630Z copying torch/include/ATen/ops/_linalg_det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4188200Z copying torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4189600Z copying torch/include/ATen/ops/_coalesce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4191180Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4192720Z copying torch/include/ATen/ops/batch_norm_backward_elemt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4193930Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4195360Z copying torch/include/ATen/ops/log_sigmoid_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4196790Z copying torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4198080Z copying torch/include/ATen/ops/special_i1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4199480Z copying torch/include/ATen/ops/index_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4200760Z copying torch/include/ATen/ops/equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4202140Z copying torch/include/ATen/ops/_unique2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4203610Z copying torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4204900Z copying torch/include/ATen/ops/acos_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4206280Z copying torch/include/ATen/ops/heaviside_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4208100Z copying torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4209150Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4210570Z copying torch/include/ATen/ops/heaviside_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4211920Z copying torch/include/ATen/ops/_nested_view_from_jagged_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4213440Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4214660Z copying torch/include/ATen/ops/_fw_primal_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4216060Z copying torch/include/ATen/ops/_nested_tensor_from_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4217530Z copying torch/include/ATen/ops/sparse_bsr_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4218990Z copying torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4220240Z copying torch/include/ATen/ops/sum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4221610Z copying torch/include/ATen/ops/searchsorted.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4223220Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4224480Z copying torch/include/ATen/ops/linalg_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4225870Z copying torch/include/ATen/ops/linalg_solve_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4227220Z copying torch/include/ATen/ops/bitwise_and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4228720Z copying torch/include/ATen/ops/instance_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4230270Z copying torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4231670Z 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-11-03T15:55:33.4233050Z copying torch/include/ATen/ops/_slow_conv2d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4234490Z copying torch/include/ATen/ops/embedding_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4236000Z copying torch/include/ATen/ops/geqrf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4237170Z copying torch/include/ATen/ops/tile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4238590Z 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-11-03T15:55:33.4240100Z copying torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4241370Z copying torch/include/ATen/ops/_foreach_clamp_min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4242720Z copying torch/include/ATen/ops/nanmean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4244180Z copying torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4245700Z copying torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4247080Z 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-11-03T15:55:33.4248650Z 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-11-03T15:55:33.4249970Z copying torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4251440Z copying torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4252870Z copying torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4254560Z copying torch/include/ATen/ops/topk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4255570Z copying torch/include/ATen/ops/tanh_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4256920Z copying torch/include/ATen/ops/xlogy_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4258350Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4259860Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4261190Z copying torch/include/ATen/ops/softplus_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4262640Z copying torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4264240Z copying torch/include/ATen/ops/scalar_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4265700Z copying torch/include/ATen/ops/embedding_bag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4266980Z copying torch/include/ATen/ops/rnn_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4268290Z copying torch/include/ATen/ops/special_i1e_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4269770Z copying torch/include/ATen/ops/adaptive_avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4271160Z copying torch/include/ATen/ops/as_strided_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4272990Z copying torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4274010Z copying torch/include/ATen/ops/ones_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4275450Z copying torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4276820Z copying torch/include/ATen/ops/cholesky_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4278140Z copying torch/include/ATen/ops/triu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4279520Z copying torch/include/ATen/ops/count_nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4280860Z copying torch/include/ATen/ops/eq_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4282330Z copying torch/include/ATen/ops/fft_rfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4283670Z copying torch/include/ATen/ops/reflection_pad2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4285140Z copying torch/include/ATen/ops/hypot_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4286440Z 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-11-03T15:55:33.4287870Z copying torch/include/ATen/ops/feature_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4289140Z copying torch/include/ATen/ops/gelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4290660Z 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-11-03T15:55:33.4291980Z copying torch/include/ATen/ops/q_per_channel_zero_points.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4293460Z 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-11-03T15:55:33.4294870Z copying torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4296490Z copying torch/include/ATen/ops/isclose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4297550Z copying torch/include/ATen/ops/view_as_complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4298880Z copying torch/include/ATen/ops/lstm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4300210Z copying torch/include/ATen/ops/_linalg_eigvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4301630Z copying torch/include/ATen/ops/expm1_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4304020Z copying torch/include/ATen/ops/_mps_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4304480Z copying torch/include/ATen/ops/kthvalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4305870Z copying torch/include/ATen/ops/_euclidean_dist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4307230Z copying torch/include/ATen/ops/replication_pad1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4308550Z copying torch/include/ATen/ops/sin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4309890Z copying torch/include/ATen/ops/unsafe_chunk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4311250Z copying torch/include/ATen/ops/_foreach_minimum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4312820Z 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-11-03T15:55:33.4314170Z copying torch/include/ATen/ops/select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4315610Z copying torch/include/ATen/ops/clamp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4317050Z copying torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4318420Z copying torch/include/ATen/ops/_foreach_maximum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4319770Z copying torch/include/ATen/ops/linalg_cholesky_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4321160Z copying torch/include/ATen/ops/hamming_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4322580Z copying torch/include/ATen/ops/flatten_dense_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4323970Z 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-11-03T15:55:33.4325380Z copying torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4326950Z copying torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4328350Z copying torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4329770Z copying torch/include/ATen/ops/max_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4331250Z 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-11-03T15:55:33.4332700Z copying torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4334030Z copying torch/include/ATen/ops/linalg_lu_factor_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4335700Z copying torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4336910Z copying torch/include/ATen/ops/unique_consecutive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4338450Z copying torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4339970Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4341340Z copying torch/include/ATen/ops/_neg_view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4342680Z copying torch/include/ATen/ops/trapezoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4344060Z copying torch/include/ATen/ops/bitwise_xor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4345540Z copying torch/include/ATen/ops/tanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4346860Z copying torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4348300Z copying torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4349680Z copying torch/include/ATen/ops/logical_not_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4351190Z 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-11-03T15:55:33.4352500Z copying torch/include/ATen/ops/avg_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4353910Z copying torch/include/ATen/ops/tril_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4355520Z copying torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4356820Z copying torch/include/ATen/ops/dsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4358290Z copying torch/include/ATen/ops/is_vulkan_available_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4359610Z copying torch/include/ATen/ops/resolve_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4361030Z copying torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4362350Z copying torch/include/ATen/ops/rad2deg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4363770Z copying torch/include/ATen/ops/_mps_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4365180Z copying torch/include/ATen/ops/_segment_reduce_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4366550Z copying torch/include/ATen/ops/special_logit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4367830Z copying torch/include/ATen/ops/_cummin_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4369380Z copying torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4370890Z copying torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4372300Z copying torch/include/ATen/ops/_foreach_addcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4373630Z copying torch/include/ATen/ops/split_with_sizes_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4375060Z copying torch/include/ATen/ops/nll_loss_nd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4376530Z 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-11-03T15:55:33.4377960Z copying torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4379230Z copying torch/include/ATen/ops/type_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4380630Z copying torch/include/ATen/ops/dot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4382020Z copying torch/include/ATen/ops/hardswish_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4383460Z copying torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4384790Z copying torch/include/ATen/ops/leaky_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4386140Z copying torch/include/ATen/ops/_masked_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4387670Z copying torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4389180Z copying torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4390340Z copying torch/include/ATen/ops/sign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4391700Z copying torch/include/ATen/ops/linalg_tensorsolve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4393110Z copying torch/include/ATen/ops/argwhere_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4394540Z copying torch/include/ATen/ops/erfinv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4395980Z copying torch/include/ATen/ops/resolve_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4397300Z copying torch/include/ATen/ops/scatter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4398770Z copying torch/include/ATen/ops/_triton_multi_head_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4400220Z copying torch/include/ATen/ops/alpha_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4401680Z copying torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4403060Z 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-11-03T15:55:33.4404460Z copying torch/include/ATen/ops/stride_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4405890Z copying torch/include/ATen/ops/soft_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4407260Z copying torch/include/ATen/ops/col2im_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4408540Z copying torch/include/ATen/ops/lift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4409970Z copying torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4411400Z copying torch/include/ATen/ops/atan2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4412790Z copying torch/include/ATen/ops/_sparse_broadcast_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4414160Z copying torch/include/ATen/ops/_foreach_floor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4415500Z copying torch/include/ATen/ops/acos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4416900Z copying torch/include/ATen/ops/_fused_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4418300Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4419820Z copying torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4421360Z copying torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4422600Z copying torch/include/ATen/ops/stride.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4423990Z copying torch/include/ATen/ops/addmv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4425410Z copying torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4426800Z copying torch/include/ATen/ops/log_normal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4428090Z copying torch/include/ATen/ops/align_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4429480Z copying torch/include/ATen/ops/relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4430910Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4432470Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4433740Z copying torch/include/ATen/ops/_sample_dirichlet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4435170Z copying torch/include/ATen/ops/special_ndtr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4436640Z copying torch/include/ATen/ops/special_airy_ai_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4438170Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4439610Z 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-11-03T15:55:33.4440940Z copying torch/include/ATen/ops/clone_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4442430Z 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-11-03T15:55:33.4443820Z copying torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4445300Z copying torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4446480Z copying torch/include/ATen/ops/_to_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4447960Z copying torch/include/ATen/ops/adaptive_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4449330Z copying torch/include/ATen/ops/_nested_view_from_jagged.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4450700Z copying torch/include/ATen/ops/exp_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4452020Z copying torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4453480Z 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-11-03T15:55:33.4454960Z 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-11-03T15:55:33.4456230Z copying torch/include/ATen/ops/_unique2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4457700Z copying torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4459150Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4460410Z copying torch/include/ATen/ops/trunc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4461740Z copying torch/include/ATen/ops/retain_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4463200Z copying torch/include/ATen/ops/max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4464520Z copying torch/include/ATen/ops/histogramdd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4465990Z copying torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4467280Z copying torch/include/ATen/ops/tanh_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4468750Z copying torch/include/ATen/ops/nanquantile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4470190Z copying torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4471440Z copying torch/include/ATen/ops/cumsum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4472840Z copying torch/include/ATen/ops/instance_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4474130Z copying torch/include/ATen/ops/scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4475770Z copying torch/include/ATen/ops/_mixed_dtypes_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4477310Z copying torch/include/ATen/ops/index_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4478620Z copying torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4479870Z copying torch/include/ATen/ops/refine_names_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4481320Z copying torch/include/ATen/ops/_remove_batch_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4483000Z copying torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4484360Z copying torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4485820Z copying torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4487140Z copying torch/include/ATen/ops/acos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4488510Z copying torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4489910Z copying torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4491370Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4492880Z copying torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4494160Z 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-11-03T15:55:33.4495440Z copying torch/include/ATen/ops/chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4497150Z copying torch/include/ATen/ops/_functional_assert_async.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4499250Z copying torch/include/ATen/ops/arange_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4500630Z copying torch/include/ATen/ops/log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4502140Z copying torch/include/ATen/ops/unsqueeze_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4503800Z copying torch/include/ATen/ops/triangular_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4505230Z copying torch/include/ATen/ops/view_as_real_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4506750Z copying torch/include/ATen/ops/native_layer_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4508130Z copying torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4509440Z copying torch/include/ATen/ops/renorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4510880Z copying torch/include/ATen/ops/_local_scalar_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4512240Z copying torch/include/ATen/ops/absolute.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4513640Z copying torch/include/ATen/ops/_assert_async_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4515080Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4517300Z copying torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4518630Z copying torch/include/ATen/ops/mT_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4520330Z copying torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4521540Z copying torch/include/ATen/ops/_amp_update_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4523110Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4524450Z 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-11-03T15:55:33.4525960Z copying torch/include/ATen/ops/index_copy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4527260Z copying torch/include/ATen/ops/_test_ambiguous_defaults_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4528740Z copying torch/include/ATen/ops/mul_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4530960Z copying torch/include/ATen/ops/conv_transpose3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4532030Z copying torch/include/ATen/ops/rrelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4533470Z copying torch/include/ATen/ops/logical_or_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4534880Z copying torch/include/ATen/ops/unsqueeze_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4536280Z copying torch/include/ATen/ops/huber_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4537660Z copying torch/include/ATen/ops/renorm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4539020Z copying torch/include/ATen/ops/record_stream_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4540420Z copying torch/include/ATen/ops/promote_types_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4541920Z copying torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4543390Z 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-11-03T15:55:33.4544920Z copying torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4546120Z copying torch/include/ATen/ops/linalg_vecdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4547550Z copying torch/include/ATen/ops/_sample_dirichlet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4548870Z copying torch/include/ATen/ops/rand_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4550400Z copying torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4551740Z copying torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4553210Z copying torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4554500Z copying torch/include/ATen/ops/special_bessel_y1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4555890Z copying torch/include/ATen/ops/masked_scatter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4557260Z copying torch/include/ATen/ops/to_sparse_csc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4558680Z copying torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4560070Z copying torch/include/ATen/ops/_cummin_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4561460Z copying torch/include/ATen/ops/replication_pad2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4562840Z copying torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4564200Z copying torch/include/ATen/ops/detach_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4565730Z copying torch/include/ATen/ops/cauchy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4567180Z 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-11-03T15:55:33.4568870Z 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-11-03T15:55:33.4570090Z copying torch/include/ATen/ops/row_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4571350Z copying torch/include/ATen/ops/add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4572760Z copying torch/include/ATen/ops/unfold_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4574110Z copying torch/include/ATen/ops/gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4575500Z copying torch/include/ATen/ops/linalg_svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4576880Z copying torch/include/ATen/ops/_fused_sdp_choice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4578420Z copying torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4579760Z copying torch/include/ATen/ops/log2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4581070Z copying torch/include/ATen/ops/selu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4582550Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4584380Z copying torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4585350Z copying torch/include/ATen/ops/_foreach_frac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4586680Z copying torch/include/ATen/ops/vander_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4588260Z copying torch/include/ATen/ops/segment_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4589540Z copying torch/include/ATen/ops/_conv_depthwise2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4591010Z copying torch/include/ATen/ops/linalg_diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4592320Z copying torch/include/ATen/ops/set_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4593770Z copying torch/include/ATen/ops/alpha_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4595110Z copying torch/include/ATen/ops/take_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4596500Z 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-11-03T15:55:33.4598090Z 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-11-03T15:55:33.4599470Z copying torch/include/ATen/ops/adjoint_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4600900Z copying torch/include/ATen/ops/scatter_reduce_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4602400Z copying torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4603780Z copying torch/include/ATen/ops/_cudnn_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4605080Z copying torch/include/ATen/ops/convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4606550Z copying torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4608000Z copying torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4609310Z copying torch/include/ATen/ops/multi_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4610690Z copying torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4612120Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4613440Z copying torch/include/ATen/ops/special_sinc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4614940Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4616400Z copying torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4617770Z copying torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4619180Z copying torch/include/ATen/ops/_foreach_maximum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4620540Z copying torch/include/ATen/ops/_sparse_csr_prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4622080Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4623430Z copying torch/include/ATen/ops/special_gammaln_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4624740Z copying torch/include/ATen/ops/embedding_bag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4626570Z copying torch/include/ATen/ops/silu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4627540Z copying torch/include/ATen/ops/greater_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4628990Z 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-11-03T15:55:33.4630440Z copying torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4631860Z copying torch/include/ATen/ops/sort_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4633280Z copying torch/include/ATen/ops/fill_diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4634640Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4636010Z copying torch/include/ATen/ops/_to_sparse_csc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4637350Z copying torch/include/ATen/ops/zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4638760Z copying torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4640150Z copying torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4641650Z copying torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4643030Z copying torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4644410Z copying torch/include/ATen/ops/fmod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4645770Z copying torch/include/ATen/ops/sigmoid_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4647210Z copying torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4648610Z copying torch/include/ATen/ops/_sobol_engine_draw_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4650050Z copying torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4651460Z copying torch/include/ATen/ops/tril_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4652910Z copying torch/include/ATen/ops/bitwise_left_shift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4654240Z copying torch/include/ATen/ops/arctanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4656300Z copying torch/include/ATen/ops/triu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4657050Z copying torch/include/ATen/ops/reciprocal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4658600Z copying torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4659840Z copying torch/include/ATen/ops/_nnz_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4661290Z copying torch/include/ATen/ops/unfold_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4662680Z copying torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4664200Z copying torch/include/ATen/ops/exp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4665410Z copying torch/include/ATen/ops/_lstm_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4666820Z copying torch/include/ATen/ops/mul_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4668210Z copying torch/include/ATen/ops/hardsigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4669720Z copying torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4671350Z copying torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4672740Z copying torch/include/ATen/ops/_spsolve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4674220Z copying torch/include/ATen/ops/is_set_to_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4675660Z copying torch/include/ATen/ops/log10_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4677120Z copying torch/include/ATen/ops/flip.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4678720Z 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-11-03T15:55:33.4680050Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4681470Z copying torch/include/ATen/ops/roll_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4682970Z copying torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4684270Z copying torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4685780Z copying torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4687150Z copying torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4688670Z copying torch/include/ATen/ops/linalg_lu_factor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4689920Z 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-11-03T15:55:33.4691400Z copying torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4692820Z copying torch/include/ATen/ops/round_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4694160Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4695640Z 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-11-03T15:55:33.4696980Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4698650Z copying torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4699740Z copying torch/include/ATen/ops/as_strided_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4701190Z 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-11-03T15:55:33.4702520Z copying torch/include/ATen/ops/_standard_gamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4704180Z copying torch/include/ATen/ops/neg_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4705360Z 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-11-03T15:55:33.4706670Z copying torch/include/ATen/ops/pinverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4708120Z copying torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4709470Z copying torch/include/ATen/ops/select_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4710900Z copying torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4712660Z copying torch/include/ATen/ops/conv1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4713700Z copying torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4715220Z copying torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4716590Z copying torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4717850Z copying torch/include/ATen/ops/arccosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4719260Z copying torch/include/ATen/ops/gelu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4720630Z copying torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4722190Z copying torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4723460Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4724800Z copying torch/include/ATen/ops/fft_fftfreq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4726190Z copying torch/include/ATen/ops/im2col_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4728020Z copying torch/include/ATen/ops/_sparse_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4729010Z copying torch/include/ATen/ops/narrow_copy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4730330Z copying torch/include/ATen/ops/not_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4731730Z copying torch/include/ATen/ops/prod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4733280Z copying torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4734540Z copying torch/include/ATen/ops/index_select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4735920Z copying torch/include/ATen/ops/special_ndtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4737400Z copying torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4738690Z copying torch/include/ATen/ops/mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4740080Z copying torch/include/ATen/ops/addcmul_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4741450Z copying torch/include/ATen/ops/special_hermite_polynomial_h_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4742820Z copying torch/include/ATen/ops/_convolution_mode_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4744660Z copying torch/include/ATen/ops/embedding_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4745700Z copying torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4747000Z copying torch/include/ATen/ops/mps_convolution_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4748620Z copying torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4756400Z copying torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4756670Z copying torch/include/ATen/ops/special_erfcx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4756960Z copying torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4757220Z copying torch/include/ATen/ops/ge_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4757450Z copying torch/include/ATen/ops/polar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4757930Z 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-11-03T15:55:33.4759870Z copying torch/include/ATen/ops/copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4760840Z copying torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4762200Z copying torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4763620Z copying torch/include/ATen/ops/data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4765120Z copying torch/include/ATen/ops/adaptive_avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4766460Z copying torch/include/ATen/ops/randn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4768590Z copying torch/include/ATen/ops/nll_loss2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4769620Z copying torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4770930Z copying torch/include/ATen/ops/unbind_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4772410Z copying torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4774140Z copying torch/include/ATen/ops/eq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4775840Z copying torch/include/ATen/ops/set_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4777310Z copying torch/include/ATen/ops/_native_multi_head_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4778730Z copying torch/include/ATen/ops/_test_functorch_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4780440Z 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-11-03T15:55:33.4781710Z 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-11-03T15:55:33.4783450Z copying torch/include/ATen/ops/_cufft_clear_plan_cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4784480Z copying torch/include/ATen/ops/_fused_adagrad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4786100Z copying torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4787370Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4788830Z copying torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4790230Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4791610Z copying torch/include/ATen/ops/ger_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4793270Z 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-11-03T15:55:33.4794330Z copying torch/include/ATen/ops/_values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4795850Z 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-11-03T15:55:33.4797170Z copying torch/include/ATen/ops/set_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4798640Z copying torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4800000Z copying torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4801590Z copying torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4802830Z copying torch/include/ATen/ops/max_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4804210Z 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-11-03T15:55:33.4805750Z copying torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4807110Z copying torch/include/ATen/ops/_linalg_det_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4808550Z copying torch/include/ATen/ops/triangular_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4809840Z copying torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4811360Z 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-11-03T15:55:33.4812890Z copying torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4814190Z copying torch/include/ATen/ops/lshift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4815610Z copying torch/include/ATen/ops/empty_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4817010Z copying torch/include/ATen/ops/cudnn_grid_sampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4818550Z copying torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4819950Z 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-11-03T15:55:33.4821460Z copying torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4822930Z copying torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4824290Z copying torch/include/ATen/ops/logical_and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4825750Z 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-11-03T15:55:33.4827050Z copying torch/include/ATen/ops/roll_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4828410Z copying torch/include/ATen/ops/remainder_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4829880Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4831210Z copying torch/include/ATen/ops/log10_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4832780Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4834160Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4835510Z 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-11-03T15:55:33.4836900Z copying torch/include/ATen/ops/convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4838340Z copying torch/include/ATen/ops/kl_div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4839920Z copying torch/include/ATen/ops/roll_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4841540Z copying torch/include/ATen/ops/upsample_bicubic2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4843010Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4844460Z copying torch/include/ATen/ops/amax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4846080Z copying torch/include/ATen/ops/multinomial_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4847470Z copying torch/include/ATen/ops/special_log_ndtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4848920Z copying torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4850800Z copying torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4851690Z copying torch/include/ATen/ops/addmv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4853100Z copying torch/include/ATen/ops/clamp_max_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4854610Z copying torch/include/ATen/ops/_values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4855810Z copying torch/include/ATen/ops/clone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4857270Z 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-11-03T15:55:33.4858660Z copying torch/include/ATen/ops/avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4860120Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4861540Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4862910Z copying torch/include/ATen/ops/reciprocal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4864320Z copying torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4865880Z copying torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4867240Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4868670Z copying torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4869970Z copying torch/include/ATen/ops/logical_or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4871580Z 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-11-03T15:55:33.4872790Z copying torch/include/ATen/ops/values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4874280Z copying torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4875820Z copying torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4877040Z copying torch/include/ATen/ops/swapdims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4878580Z 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-11-03T15:55:33.4880060Z copying torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4881350Z copying torch/include/ATen/ops/cauchy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4882740Z copying torch/include/ATen/ops/reflection_pad1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4884230Z 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-11-03T15:55:33.4885840Z copying torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4887120Z copying torch/include/ATen/ops/huber_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4888560Z copying torch/include/ATen/ops/permute_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4890060Z 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-11-03T15:55:33.4891800Z copying torch/include/ATen/ops/sub_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4892920Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4894200Z copying torch/include/ATen/ops/mm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4895600Z copying torch/include/ATen/ops/sinh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4896960Z copying torch/include/ATen/ops/log2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4898310Z copying torch/include/ATen/ops/glu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4899830Z 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-11-03T15:55:33.4901280Z copying torch/include/ATen/ops/linalg_solve_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4902890Z copying torch/include/ATen/ops/logsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4904080Z copying torch/include/ATen/ops/all.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4905490Z copying torch/include/ATen/ops/_foobar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4907090Z copying torch/include/ATen/ops/cudnn_grid_sampler_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4908440Z 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-11-03T15:55:33.4909840Z copying torch/include/ATen/ops/log_normal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4911180Z copying torch/include/ATen/ops/quantized_lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4912570Z copying torch/include/ATen/ops/mvlgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4914030Z copying torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4915610Z copying torch/include/ATen/ops/glu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4916680Z copying torch/include/ATen/ops/mish_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4918240Z copying torch/include/ATen/ops/_rowwise_prune_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4919440Z copying torch/include/ATen/ops/_foreach_acos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4920820Z copying torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4922350Z 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-11-03T15:55:33.4923650Z copying torch/include/ATen/ops/size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4925190Z copying torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4926560Z copying torch/include/ATen/ops/special_erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4927820Z copying torch/include/ATen/ops/amax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4929200Z copying torch/include/ATen/ops/_foreach_lerp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4930660Z 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-11-03T15:55:33.4932050Z copying torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4933630Z copying torch/include/ATen/ops/nll_loss_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4934740Z copying torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4936180Z 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-11-03T15:55:33.4937550Z copying torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4938880Z copying torch/include/ATen/ops/movedim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4940340Z copying torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4941600Z copying torch/include/ATen/ops/arccos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4943080Z 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-11-03T15:55:33.4944590Z copying torch/include/ATen/ops/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4945800Z copying torch/include/ATen/ops/bucketize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4947210Z copying torch/include/ATen/ops/asinh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4948520Z copying torch/include/ATen/ops/_dim_arange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4949920Z copying torch/include/ATen/ops/special_erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4951350Z copying torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4952720Z copying torch/include/ATen/ops/nll_loss_nd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4954060Z copying torch/include/ATen/ops/tan_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4955410Z copying torch/include/ATen/ops/_cdist_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4956780Z copying torch/include/ATen/ops/hardtanh_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4958200Z copying torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4959810Z copying torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4961350Z copying torch/include/ATen/ops/_prelu_kernel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4962890Z copying torch/include/ATen/ops/gather.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4964310Z copying torch/include/ATen/ops/_reshape_alias_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4965780Z copying torch/include/ATen/ops/logaddexp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4967230Z copying torch/include/ATen/ops/multi_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4968800Z copying torch/include/ATen/ops/_foreach_sin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4970420Z copying torch/include/ATen/ops/fft_rfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4971480Z copying torch/include/ATen/ops/slow_conv3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4972920Z copying torch/include/ATen/ops/leaky_relu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4974350Z 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-11-03T15:55:33.4975750Z copying torch/include/ATen/ops/acosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4977320Z copying torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4978680Z copying torch/include/ATen/ops/addcdiv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4980180Z copying torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4981470Z copying torch/include/ATen/ops/to_sparse_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4982950Z 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-11-03T15:55:33.4984370Z copying torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4985880Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4987230Z 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-11-03T15:55:33.4989130Z 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-11-03T15:55:33.4990350Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4992040Z 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-11-03T15:55:33.4993870Z 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-11-03T15:55:33.4995310Z copying torch/include/ATen/ops/data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4996440Z copying torch/include/ATen/ops/matrix_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4997840Z copying torch/include/ATen/ops/cudnn_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.4999360Z copying torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5000840Z 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-11-03T15:55:33.5002050Z copying torch/include/ATen/ops/gather_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5003500Z copying torch/include/ATen/ops/_cast_Long.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5005070Z 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-11-03T15:55:33.5006830Z copying torch/include/ATen/ops/hardshrink_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5009030Z copying torch/include/ATen/ops/hstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5010240Z copying torch/include/ATen/ops/miopen_convolution_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5011720Z 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-11-03T15:55:33.5013450Z 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-11-03T15:55:33.5014570Z copying torch/include/ATen/ops/gelu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5016180Z 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-11-03T15:55:33.5017380Z copying torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5018780Z copying torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5020250Z copying torch/include/ATen/ops/div_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5021560Z 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-11-03T15:55:33.5022970Z copying torch/include/ATen/ops/deg2rad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5024420Z 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-11-03T15:55:33.5025930Z copying torch/include/ATen/ops/native_group_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5027100Z copying torch/include/ATen/ops/triu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5028600Z copying torch/include/ATen/ops/rename_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5030110Z copying torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5031480Z copying torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5033110Z 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-11-03T15:55:33.5034330Z copying torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5035720Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5037060Z copying torch/include/ATen/ops/tan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5038430Z copying torch/include/ATen/ops/softshrink_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5039890Z copying torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5041200Z copying torch/include/ATen/ops/linalg_lu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5042850Z copying torch/include/ATen/ops/_rowwise_prune.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5043990Z copying torch/include/ATen/ops/rshift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5045570Z copying torch/include/ATen/ops/miopen_depthwise_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5046720Z copying torch/include/ATen/ops/arctan2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5048190Z copying torch/include/ATen/ops/dequantize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5049520Z copying torch/include/ATen/ops/_nested_tensor_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5050940Z 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-11-03T15:55:33.5052360Z copying torch/include/ATen/ops/_local_scalar_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5053780Z copying torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5055280Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5056680Z copying torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5058020Z copying torch/include/ATen/ops/unfold_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5059360Z copying torch/include/ATen/ops/fft_rfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5060700Z copying torch/include/ATen/ops/gru.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5062130Z copying torch/include/ATen/ops/sign_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5063560Z copying torch/include/ATen/ops/atleast_1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5065000Z copying torch/include/ATen/ops/masked_fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5066480Z copying torch/include/ATen/ops/fft_ifft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5067870Z copying torch/include/ATen/ops/isneginf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5069240Z copying torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5070640Z copying torch/include/ATen/ops/nanquantile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5072170Z copying torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5073600Z copying torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5074880Z copying torch/include/ATen/ops/zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5076280Z copying torch/include/ATen/ops/_nested_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5077720Z copying torch/include/ATen/ops/nested_to_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5079070Z copying torch/include/ATen/ops/hardtanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5080500Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5081880Z copying torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5083390Z copying torch/include/ATen/ops/linalg_lu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5084590Z copying torch/include/ATen/ops/fft_irfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5086130Z copying torch/include/ATen/ops/miopen_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5087570Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5089030Z 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-11-03T15:55:33.5090360Z copying torch/include/ATen/ops/scatter_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5091690Z copying torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5093990Z copying torch/include/ATen/ops/_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5094900Z copying torch/include/ATen/ops/adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5096350Z copying torch/include/ATen/ops/relu_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5097780Z copying torch/include/ATen/ops/embedding_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5099180Z copying torch/include/ATen/ops/special_psi_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5100540Z copying torch/include/ATen/ops/hardswish_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5102020Z copying torch/include/ATen/ops/_indices_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5103340Z copying torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5104730Z copying torch/include/ATen/ops/std_mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5106050Z copying torch/include/ATen/ops/softplus_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5107430Z copying torch/include/ATen/ops/special_expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5108790Z copying torch/include/ATen/ops/elu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5110250Z 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-11-03T15:55:33.5111570Z copying torch/include/ATen/ops/_foreach_trunc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5113000Z copying torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5114430Z copying torch/include/ATen/ops/bitwise_not.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5115650Z copying torch/include/ATen/ops/_foreach_mul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5117030Z copying torch/include/ATen/ops/bartlett_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5118620Z copying torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5119980Z copying torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5121360Z copying torch/include/ATen/ops/log_sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5122590Z copying torch/include/ATen/ops/minimum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5123990Z copying torch/include/ATen/ops/ccol_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5125380Z copying torch/include/ATen/ops/scatter_add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5126760Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5128080Z copying torch/include/ATen/ops/std_mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5129470Z copying torch/include/ATen/ops/reciprocal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5130930Z 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-11-03T15:55:33.5132300Z copying torch/include/ATen/ops/cdist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5133770Z copying torch/include/ATen/ops/sparse_sampled_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5135090Z copying torch/include/ATen/ops/_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5136570Z copying torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5138030Z copying torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5139410Z copying torch/include/ATen/ops/randperm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5140880Z copying torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5142220Z 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-11-03T15:55:33.5143790Z copying torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5145070Z copying torch/include/ATen/ops/_nested_sum_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5146400Z copying torch/include/ATen/ops/i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5147820Z copying torch/include/ATen/ops/_foreach_sinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5149180Z copying torch/include/ATen/ops/native_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5150610Z copying torch/include/ATen/ops/_test_functorch_fallback_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5152590Z copying torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5153400Z copying torch/include/ATen/ops/flipud_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5154830Z copying torch/include/ATen/ops/_ctc_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5156450Z copying torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5157990Z copying torch/include/ATen/ops/_int_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5159400Z copying torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5160760Z copying torch/include/ATen/ops/erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5162630Z copying torch/include/ATen/ops/igammac_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5163520Z copying torch/include/ATen/ops/linalg_qr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5165030Z copying torch/include/ATen/ops/_foreach_erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5166250Z copying torch/include/ATen/ops/max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5167650Z copying torch/include/ATen/ops/_cast_Char_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5169130Z copying torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5170560Z copying torch/include/ATen/ops/diag_embed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5171890Z copying torch/include/ATen/ops/_spdiags_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5173720Z copying torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5175200Z copying torch/include/ATen/ops/clone_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5176840Z copying torch/include/ATen/ops/cov_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5178000Z copying torch/include/ATen/ops/q_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5179810Z copying torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5181420Z 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-11-03T15:55:33.5182710Z copying torch/include/ATen/ops/var.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5184100Z copying torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5185560Z copying torch/include/ATen/ops/bitwise_not_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5186840Z copying torch/include/ATen/ops/index_put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5188200Z copying torch/include/ATen/ops/dequantize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5189590Z copying torch/include/ATen/ops/convolution_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5191110Z copying torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5192440Z copying torch/include/ATen/ops/grid_sampler_2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5193780Z copying torch/include/ATen/ops/special_i0e.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5195200Z copying torch/include/ATen/ops/special_log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5196600Z copying torch/include/ATen/ops/logaddexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5198010Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5199320Z copying torch/include/ATen/ops/arange_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5200770Z copying torch/include/ATen/ops/logaddexp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5202170Z copying torch/include/ATen/ops/upsample_nearest3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5203630Z copying torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5204960Z copying torch/include/ATen/ops/index_fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5206260Z copying torch/include/ATen/ops/remainder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5207700Z copying torch/include/ATen/ops/batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5209020Z copying torch/include/ATen/ops/repeat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5210460Z copying torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5211880Z 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-11-03T15:55:33.5213280Z copying torch/include/ATen/ops/avg_pool3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5214630Z copying torch/include/ATen/ops/_foreach_lerp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5216100Z copying torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5217550Z 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-11-03T15:55:33.5218900Z copying torch/include/ATen/ops/indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5220290Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5221830Z copying torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5223190Z copying torch/include/ATen/ops/_cudnn_rnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5224520Z copying torch/include/ATen/ops/amax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5226040Z copying torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5227420Z copying torch/include/ATen/ops/nll_loss2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5228820Z copying torch/include/ATen/ops/linalg_matrix_rank_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5230190Z copying torch/include/ATen/ops/_masked_scale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5231730Z copying torch/include/ATen/ops/_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5232970Z copying torch/include/ATen/ops/histc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5234440Z copying torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5235970Z 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-11-03T15:55:33.5237210Z copying torch/include/ATen/ops/tanh_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5238590Z copying torch/include/ATen/ops/fft_hfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5240080Z copying torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5241460Z copying torch/include/ATen/ops/to_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5242860Z copying torch/include/ATen/ops/fft_fft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5244180Z 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-11-03T15:55:33.5245580Z copying torch/include/ATen/ops/requires_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5246930Z copying torch/include/ATen/ops/gradient.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5248310Z copying torch/include/ATen/ops/fft_ihfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5249750Z 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-11-03T15:55:33.5251250Z copying torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5252650Z copying torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5253980Z copying torch/include/ATen/ops/view_as_real_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5255720Z copying torch/include/ATen/ops/copysign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5256760Z copying torch/include/ATen/ops/values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5258110Z copying torch/include/ATen/ops/_prelu_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5259580Z copying torch/include/ATen/ops/fractional_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5261010Z copying torch/include/ATen/ops/upsample_linear1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5262320Z copying torch/include/ATen/ops/abs_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5263750Z copying torch/include/ATen/ops/_add_batch_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5265680Z copying torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5267210Z copying torch/include/ATen/ops/mH_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5268530Z copying torch/include/ATen/ops/lift_fresh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5269910Z copying torch/include/ATen/ops/ne_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5271510Z copying torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5272960Z copying torch/include/ATen/ops/_scaled_mm_v2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5274400Z copying torch/include/ATen/ops/multinomial_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5275850Z copying torch/include/ATen/ops/special_modified_bessel_k0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5277580Z copying torch/include/ATen/ops/atan2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5278890Z copying torch/include/ATen/ops/_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5280380Z 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-11-03T15:55:33.5281860Z copying torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5283220Z copying torch/include/ATen/ops/unsafe_chunk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5284600Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5286050Z copying torch/include/ATen/ops/native_channel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5287470Z 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-11-03T15:55:33.5289030Z copying torch/include/ATen/ops/addmv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5290170Z copying torch/include/ATen/ops/rshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5291650Z 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-11-03T15:55:33.5293010Z copying torch/include/ATen/ops/special_erfinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5294360Z copying torch/include/ATen/ops/_fused_sdp_choice_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5295760Z copying torch/include/ATen/ops/_copy_from_and_resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5297320Z copying torch/include/ATen/ops/_sparse_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5298790Z copying torch/include/ATen/ops/select_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5300310Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5301710Z copying torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5303090Z copying torch/include/ATen/ops/huber_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5304530Z copying torch/include/ATen/ops/count_nonzero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5305910Z copying torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5307380Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5308730Z copying torch/include/ATen/ops/true_divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5310320Z copying torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5311540Z copying torch/include/ATen/ops/upsample_bilinear2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5312960Z copying torch/include/ATen/ops/ccol_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5314310Z copying torch/include/ATen/ops/addcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5315880Z copying torch/include/ATen/ops/_fused_adagrad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5317120Z copying torch/include/ATen/ops/erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5318580Z copying torch/include/ATen/ops/slow_conv_transpose3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5319980Z copying torch/include/ATen/ops/resolve_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5321360Z copying torch/include/ATen/ops/quantized_gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5322910Z copying torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5324150Z copying torch/include/ATen/ops/_foreach_erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5325660Z copying torch/include/ATen/ops/glu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5327050Z copying torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5328510Z copying torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5329880Z copying torch/include/ATen/ops/cosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5331350Z copying torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5332660Z copying torch/include/ATen/ops/nll_loss_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5334120Z copying torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5335560Z 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-11-03T15:55:33.5336930Z copying torch/include/ATen/ops/addcmul_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5338420Z copying torch/include/ATen/ops/avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5339860Z copying torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5341230Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5342750Z copying torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5343920Z copying torch/include/ATen/ops/fmod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5345460Z copying torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5346760Z copying torch/include/ATen/ops/inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5348110Z copying torch/include/ATen/ops/_foreach_round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5349610Z copying torch/include/ATen/ops/to_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5350940Z copying torch/include/ATen/ops/rshift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5352410Z copying torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5353790Z copying torch/include/ATen/ops/item.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5355250Z 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-11-03T15:55:33.5356650Z 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-11-03T15:55:33.5358220Z copying torch/include/ATen/ops/hypot_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5359500Z copying torch/include/ATen/ops/_foreach_zero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5360810Z copying torch/include/ATen/ops/zeros_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5362330Z copying torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5363680Z copying torch/include/ATen/ops/index_select_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5365080Z copying torch/include/ATen/ops/to_sparse_bsr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5371860Z copying torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5372590Z copying torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5373210Z copying torch/include/ATen/ops/nll_loss_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5373860Z 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-11-03T15:55:33.5374520Z copying torch/include/ATen/ops/linalg_eig_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5375100Z copying torch/include/ATen/ops/sgn_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5375690Z copying torch/include/ATen/ops/replication_pad1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5376270Z copying torch/include/ATen/ops/linalg_eigh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5377590Z copying torch/include/ATen/ops/linalg_matrix_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5378820Z copying torch/include/ATen/ops/lu_unpack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5380240Z copying torch/include/ATen/ops/fmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5381700Z 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-11-03T15:55:33.5383170Z copying torch/include/ATen/ops/linalg_vector_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5384540Z copying torch/include/ATen/ops/native_layer_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5386060Z 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-11-03T15:55:33.5387410Z 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-11-03T15:55:33.5388870Z copying torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5390220Z copying torch/include/ATen/ops/quantized_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5391730Z copying torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5393150Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5394570Z copying torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5395930Z copying torch/include/ATen/ops/matrix_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5397220Z copying torch/include/ATen/ops/sgn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5398600Z copying torch/include/ATen/ops/ne_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5400140Z copying torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5401450Z copying torch/include/ATen/ops/split_with_sizes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5402890Z copying torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5404290Z copying torch/include/ATen/ops/conj_physical_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5405630Z copying torch/include/ATen/ops/_scaled_grouped_mm_v2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5406950Z copying torch/include/ATen/ops/silu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5408420Z copying torch/include/ATen/ops/linalg_matrix_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5409890Z copying torch/include/ATen/ops/unsafe_split_with_sizes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5411370Z 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-11-03T15:55:33.5412810Z 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-11-03T15:55:33.5414320Z 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-11-03T15:55:33.5415680Z copying torch/include/ATen/ops/frac_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5417080Z copying torch/include/ATen/ops/less_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5418400Z copying torch/include/ATen/ops/rrelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5419910Z 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-11-03T15:55:33.5421230Z copying torch/include/ATen/ops/rnn_tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5422610Z copying torch/include/ATen/ops/upsample_nearest1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5424090Z copying torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5425370Z copying torch/include/ATen/ops/mean_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5426800Z copying torch/include/ATen/ops/new_empty_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5428220Z 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-11-03T15:55:33.5429610Z copying torch/include/ATen/ops/pow_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5431400Z copying torch/include/ATen/ops/channel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5432890Z copying torch/include/ATen/ops/log_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5434340Z copying torch/include/ATen/ops/unique_consecutive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5435890Z copying torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5437300Z copying torch/include/ATen/ops/alpha_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5438610Z copying torch/include/ATen/ops/_foreach_abs_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5439990Z copying torch/include/ATen/ops/replication_pad2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5441390Z copying torch/include/ATen/ops/kaiser_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5442950Z copying torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5444170Z copying torch/include/ATen/ops/nansum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5445670Z copying torch/include/ATen/ops/threshold_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5447030Z copying torch/include/ATen/ops/soft_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5448430Z copying torch/include/ATen/ops/det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5449790Z copying torch/include/ATen/ops/_foreach_sin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5451350Z copying torch/include/ATen/ops/addr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5452730Z copying torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5454150Z copying torch/include/ATen/ops/split_with_sizes_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5455660Z 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-11-03T15:55:33.5457070Z copying torch/include/ATen/ops/log_sigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5459140Z copying torch/include/ATen/ops/_foreach_div_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5460430Z copying torch/include/ATen/ops/prelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5461900Z copying torch/include/ATen/ops/maximum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5463510Z copying torch/include/ATen/ops/grid_sampler_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5465310Z copying torch/include/ATen/ops/_cslt_compress_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5466830Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5468390Z copying torch/include/ATen/ops/_foreach_ceil_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5469800Z copying torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5471220Z copying torch/include/ATen/ops/fmod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5472770Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5474100Z 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-11-03T15:55:33.5475620Z copying torch/include/ATen/ops/_unsafe_index_put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5476980Z copying torch/include/ATen/ops/logical_not_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5478500Z copying torch/include/ATen/ops/crow_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5479860Z copying torch/include/ATen/ops/logspace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5481400Z 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-11-03T15:55:33.5482880Z 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-11-03T15:55:33.5484150Z copying torch/include/ATen/ops/_fused_sgd_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5485690Z copying torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5487100Z copying torch/include/ATen/ops/lift_fresh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5488630Z 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-11-03T15:55:33.5490220Z copying torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5491440Z copying torch/include/ATen/ops/sym_stride_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5493320Z copying torch/include/ATen/ops/isreal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5494400Z copying torch/include/ATen/ops/unbind_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5495860Z copying torch/include/ATen/ops/_spdiags_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5497190Z copying torch/include/ATen/ops/_pad_enum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5498650Z copying torch/include/ATen/ops/equal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5500040Z copying torch/include/ATen/ops/_autocast_to_reduced_precision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5501460Z copying torch/include/ATen/ops/mse_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5502860Z copying torch/include/ATen/ops/_addmm_activation_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5504260Z copying torch/include/ATen/ops/pin_memory_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5505870Z copying torch/include/ATen/ops/max_unpool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5507440Z copying torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5509120Z copying torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5510870Z copying torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5512180Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5513550Z copying torch/include/ATen/ops/einsum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5515250Z copying torch/include/ATen/ops/_ctc_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5516480Z copying torch/include/ATen/ops/xlogy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5518000Z copying torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5519290Z copying torch/include/ATen/ops/is_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5520820Z 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-11-03T15:55:33.5522150Z copying torch/include/ATen/ops/miopen_convolution_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5523520Z copying torch/include/ATen/ops/permute_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5524870Z copying torch/include/ATen/ops/multiply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5526340Z copying torch/include/ATen/ops/batch_norm_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5527750Z copying torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5529040Z copying torch/include/ATen/ops/silu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5530600Z 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-11-03T15:55:33.5532100Z copying torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5533380Z copying torch/include/ATen/ops/trapezoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5534680Z copying torch/include/ATen/ops/prelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5536190Z copying torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5537570Z copying torch/include/ATen/ops/_nested_tensor_strides_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5538860Z copying torch/include/ATen/ops/q_zero_point.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5540280Z copying torch/include/ATen/ops/_resize_output_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5541740Z copying torch/include/ATen/ops/isfinite_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5543050Z copying torch/include/ATen/ops/masked_fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5544390Z copying torch/include/ATen/ops/sparse_resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5545800Z copying torch/include/ATen/ops/unfold_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5547220Z copying torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5548640Z copying torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5549900Z copying torch/include/ATen/ops/addcdiv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5551580Z copying torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5552820Z copying torch/include/ATen/ops/_sparse_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5554260Z copying torch/include/ATen/ops/mkldnn_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5555720Z 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-11-03T15:55:33.5557510Z copying torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5558640Z 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-11-03T15:55:33.5560090Z copying torch/include/ATen/ops/_nested_from_padded_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5561320Z copying torch/include/ATen/ops/isin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5562770Z 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-11-03T15:55:33.5564330Z 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-11-03T15:55:33.5565680Z 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-11-03T15:55:33.5567320Z copying torch/include/ATen/ops/linalg_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5568450Z copying torch/include/ATen/ops/_embedding_bag_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5569970Z 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-11-03T15:55:33.5571310Z copying torch/include/ATen/ops/special_bessel_y1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5572860Z copying torch/include/ATen/ops/reciprocal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5574070Z copying torch/include/ATen/ops/tril_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5575420Z copying torch/include/ATen/ops/isposinf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5576790Z copying torch/include/ATen/ops/_nested_get_max_seqlen_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5578260Z copying torch/include/ATen/ops/gcd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5579530Z copying torch/include/ATen/ops/_convolution_double_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5580960Z copying torch/include/ATen/ops/softshrink_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5582280Z copying torch/include/ATen/ops/_sparse_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5583790Z copying torch/include/ATen/ops/_cudnn_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5585100Z copying torch/include/ATen/ops/_foreach_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5586520Z copying torch/include/ATen/ops/leaky_relu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5588040Z copying torch/include/ATen/ops/nested_to_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5589300Z copying torch/include/ATen/ops/_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5590780Z copying torch/include/ATen/ops/round_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5592000Z copying torch/include/ATen/ops/resolve_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5593430Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5594850Z copying torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5596170Z copying torch/include/ATen/ops/ones_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5597530Z copying torch/include/ATen/ops/_foreach_clamp_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5598930Z copying torch/include/ATen/ops/log_sigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5600280Z copying torch/include/ATen/ops/_slow_conv2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5601620Z copying torch/include/ATen/ops/neg_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5603130Z 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-11-03T15:55:33.5604510Z 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-11-03T15:55:33.5605940Z copying torch/include/ATen/ops/replication_pad2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5607230Z copying torch/include/ATen/ops/lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5608620Z copying torch/include/ATen/ops/exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5610010Z copying torch/include/ATen/ops/is_set_to_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5611450Z copying torch/include/ATen/ops/logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5612910Z copying torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5614180Z copying torch/include/ATen/ops/_pad_packed_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5615510Z copying torch/include/ATen/ops/round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5616950Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5618540Z copying torch/include/ATen/ops/roll_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5620080Z copying torch/include/ATen/ops/i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5621510Z copying torch/include/ATen/ops/alias_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5622900Z copying torch/include/ATen/ops/mish_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5624570Z copying torch/include/ATen/ops/replication_pad2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5625720Z copying torch/include/ATen/ops/addcmul_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5627140Z copying torch/include/ATen/ops/std_mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5628520Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5629900Z copying torch/include/ATen/ops/prod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5631340Z copying torch/include/ATen/ops/pow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5632660Z copying torch/include/ATen/ops/resize_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5634040Z copying torch/include/ATen/ops/gcd_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5635640Z copying torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5637060Z copying torch/include/ATen/ops/_to_sparse_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5638540Z copying torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5639820Z copying torch/include/ATen/ops/_foreach_log10.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5641190Z copying torch/include/ATen/ops/select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5642680Z copying torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5644180Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5645600Z copying torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5647080Z copying torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5648410Z copying torch/include/ATen/ops/scalar_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5649840Z copying torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5651280Z copying torch/include/ATen/ops/nonzero_static.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5652580Z copying torch/include/ATen/ops/im2col_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5653970Z copying torch/include/ATen/ops/special_spherical_bessel_j0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5655410Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5657210Z copying torch/include/ATen/ops/im2col_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5658270Z copying torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5659710Z copying torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5661130Z copying torch/include/ATen/ops/_sparse_broadcast_to_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5662650Z copying torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5664080Z copying torch/include/ATen/ops/copysign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5665390Z copying torch/include/ATen/ops/_reshape_from_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5666850Z copying torch/include/ATen/ops/_fw_primal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5668370Z copying torch/include/ATen/ops/qscheme_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5670080Z copying torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5671220Z copying torch/include/ATen/ops/_print.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5672850Z 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-11-03T15:55:33.5674260Z copying torch/include/ATen/ops/set_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5675900Z copying torch/include/ATen/ops/is_coalesced_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5677280Z copying torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5679340Z copying torch/include/ATen/ops/_cudnn_init_dropout_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5681010Z copying torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5682440Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5683820Z copying torch/include/ATen/ops/polygamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5685410Z copying torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5686910Z 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-11-03T15:55:33.5688260Z copying torch/include/ATen/ops/upsample_bilinear2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5689820Z copying torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5691150Z copying torch/include/ATen/ops/swapaxes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5692540Z 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-11-03T15:55:33.5694020Z 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-11-03T15:55:33.5695400Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5696900Z copying torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5698200Z copying torch/include/ATen/ops/quantile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5699770Z copying torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5701130Z copying torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5702510Z copying torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5703880Z copying torch/include/ATen/ops/convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5705270Z copying torch/include/ATen/ops/masked_scatter_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5706740Z copying torch/include/ATen/ops/_nnpack_available.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5708090Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5709560Z copying torch/include/ATen/ops/new_zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5711010Z copying torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5712460Z copying torch/include/ATen/ops/replication_pad1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5713840Z copying torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5715310Z copying torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5716650Z copying torch/include/ATen/ops/uniform_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5718180Z copying torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5719490Z copying torch/include/ATen/ops/_log_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5720890Z copying torch/include/ATen/ops/_foreach_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5722260Z copying torch/include/ATen/ops/mT_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5723610Z copying torch/include/ATen/ops/nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5725040Z copying torch/include/ATen/ops/_pack_padded_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5726390Z copying torch/include/ATen/ops/_foreach_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5727870Z copying torch/include/ATen/ops/linalg_multi_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5729210Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5730650Z copying torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5732000Z copying torch/include/ATen/ops/arange_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5733560Z copying torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5734830Z copying torch/include/ATen/ops/ne.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5736230Z copying torch/include/ATen/ops/threshold_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5737690Z copying torch/include/ATen/ops/rrelu_with_noise_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5739140Z 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-11-03T15:55:33.5740600Z copying torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5741950Z copying torch/include/ATen/ops/lu_unpack_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5743300Z copying torch/include/ATen/ops/special_erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5744660Z copying torch/include/ATen/ops/_nested_sum_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5746110Z copying torch/include/ATen/ops/quantized_max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5747470Z copying torch/include/ATen/ops/linalg_lstsq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5748850Z copying torch/include/ATen/ops/ormqr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5750520Z 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-11-03T15:55:33.5751780Z copying torch/include/ATen/ops/is_nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5753230Z copying torch/include/ATen/ops/glu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5754600Z copying torch/include/ATen/ops/_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5768320Z copying torch/include/ATen/ops/bitwise_xor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5769570Z copying torch/include/ATen/ops/sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5770970Z copying torch/include/ATen/ops/_foreach_cos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5772350Z copying torch/include/ATen/ops/randn_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5773780Z copying torch/include/ATen/ops/_slow_conv2d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5775150Z copying torch/include/ATen/ops/subtract_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5776550Z copying torch/include/ATen/ops/sparse_compressed_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5777920Z copying torch/include/ATen/ops/_foreach_ceil_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5779270Z copying torch/include/ATen/ops/div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5780690Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5782090Z copying torch/include/ATen/ops/_foreach_div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5788640Z copying torch/include/ATen/ops/logical_or_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5789280Z 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-11-03T15:55:33.5789920Z copying torch/include/ATen/ops/mul_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5790660Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5791320Z copying torch/include/ATen/ops/swapaxes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5791860Z copying torch/include/ATen/ops/divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5792510Z copying torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5793180Z copying torch/include/ATen/ops/sub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5794620Z copying torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5796060Z copying torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5797440Z copying torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5798750Z copying torch/include/ATen/ops/rrelu_with_noise_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5800120Z copying torch/include/ATen/ops/_fft_r2c_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5801510Z copying torch/include/ATen/ops/special_entr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5802910Z copying torch/include/ATen/ops/conv1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5804220Z copying torch/include/ATen/ops/view_as_real_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5805780Z copying torch/include/ATen/ops/linalg_svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5807000Z copying torch/include/ATen/ops/native_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5808550Z copying torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5809900Z copying torch/include/ATen/ops/constant_pad_nd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5811300Z copying torch/include/ATen/ops/index_copy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5812680Z copying torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5814420Z copying torch/include/ATen/ops/quantized_lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5815500Z copying torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5816780Z copying torch/include/ATen/ops/linalg_lu_factor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5818390Z copying torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5819650Z copying torch/include/ATen/ops/is_leaf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5821040Z copying torch/include/ATen/ops/binomial_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5822460Z 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-11-03T15:55:33.5824010Z copying torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5825300Z copying torch/include/ATen/ops/log2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5826730Z 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-11-03T15:55:33.5828100Z copying torch/include/ATen/ops/resolve_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5829650Z 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-11-03T15:55:33.5830950Z copying torch/include/ATen/ops/row_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5832260Z copying torch/include/ATen/ops/_foreach_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5833740Z copying torch/include/ATen/ops/layer_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5835030Z copying torch/include/ATen/ops/sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5842530Z copying torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5843620Z copying torch/include/ATen/ops/_sparse_mask_projection_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5845240Z 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-11-03T15:55:33.5846960Z copying torch/include/ATen/ops/special_zeta_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5848430Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5849840Z copying torch/include/ATen/ops/special_log_ndtr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5851360Z copying torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5852830Z copying torch/include/ATen/ops/copy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5854220Z copying torch/include/ATen/ops/linalg_lu_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5855720Z copying torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5857050Z copying torch/include/ATen/ops/linalg_eigvalsh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5858470Z copying torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5859940Z copying torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5861980Z copying torch/include/ATen/ops/argmin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5870710Z copying torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5871770Z copying torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5873160Z copying torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5874580Z copying torch/include/ATen/ops/special_zeta_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5875950Z copying torch/include/ATen/ops/is_complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5877340Z copying torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5878760Z copying torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5880060Z copying torch/include/ATen/ops/add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5881560Z copying torch/include/ATen/ops/diagonal_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5882920Z copying torch/include/ATen/ops/_linalg_check_errors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5884350Z copying torch/include/ATen/ops/angle_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5885750Z copying torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5887070Z copying torch/include/ATen/ops/_nested_get_min_seqlen_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5888560Z copying torch/include/ATen/ops/_nested_get_values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5889830Z copying torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5891260Z copying torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5892770Z 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-11-03T15:55:33.5893990Z copying torch/include/ATen/ops/sort_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5895420Z copying torch/include/ATen/ops/_lazy_clone_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5896800Z copying torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5898160Z copying torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5899530Z copying torch/include/ATen/ops/thnn_conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5900940Z copying torch/include/ATen/ops/baddbmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5902650Z copying torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5903990Z copying torch/include/ATen/ops/embedding_renorm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5905450Z copying torch/include/ATen/ops/avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5906850Z copying torch/include/ATen/ops/multilabel_margin_loss_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5908180Z copying torch/include/ATen/ops/reciprocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5909540Z copying torch/include/ATen/ops/contiguous_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5911070Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5912390Z copying torch/include/ATen/ops/sparse_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5913840Z 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-11-03T15:55:33.5915350Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5916710Z copying torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5918140Z copying torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5919410Z copying torch/include/ATen/ops/tril_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5928790Z copying torch/include/ATen/ops/logical_not_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5929960Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5931440Z 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-11-03T15:55:33.5932870Z copying torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5934280Z copying torch/include/ATen/ops/arcsin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5935630Z copying torch/include/ATen/ops/qr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5937070Z copying torch/include/ATen/ops/view_as_real_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5938500Z copying torch/include/ATen/ops/copy_sparse_to_sparse_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5939910Z copying torch/include/ATen/ops/softshrink_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5941240Z copying torch/include/ATen/ops/frac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5942760Z 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-11-03T15:55:33.5944180Z copying torch/include/ATen/ops/miopen_rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5945560Z copying torch/include/ATen/ops/_native_multi_head_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5946910Z copying torch/include/ATen/ops/_segment_reduce_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5948370Z copying torch/include/ATen/ops/_linalg_eigvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5949720Z copying torch/include/ATen/ops/_test_string_default_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5951170Z copying torch/include/ATen/ops/sparse_csr_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5952470Z copying torch/include/ATen/ops/logaddexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5953910Z copying torch/include/ATen/ops/grid_sampler_2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5955420Z copying torch/include/ATen/ops/pairwise_distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5956830Z copying torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5958160Z copying torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5959490Z copying torch/include/ATen/ops/_cast_Long_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5960930Z copying torch/include/ATen/ops/nll_loss2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5962270Z copying torch/include/ATen/ops/fft_ifftshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5963690Z copying torch/include/ATen/ops/_scaled_grouped_mm_v2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5965080Z copying torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5966510Z 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-11-03T15:55:33.5967800Z copying torch/include/ATen/ops/cos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5969140Z copying torch/include/ATen/ops/adaptive_max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5970490Z copying torch/include/ATen/ops/_mkldnn_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5972230Z copying torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5973410Z 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-11-03T15:55:33.5974800Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5976120Z copying torch/include/ATen/ops/cudnn_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5977530Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5978860Z copying torch/include/ATen/ops/atleast_2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5980210Z copying torch/include/ATen/ops/choose_qparams_optimized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5981910Z copying torch/include/ATen/ops/_linalg_slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5982990Z copying torch/include/ATen/ops/_slow_conv2d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5984410Z copying torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5985740Z copying torch/include/ATen/ops/special_bessel_y1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5987640Z copying torch/include/ATen/ops/slice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5989090Z copying torch/include/ATen/ops/_nested_tensor_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5990570Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5992090Z copying torch/include/ATen/ops/_spdiags.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5993470Z copying torch/include/ATen/ops/linalg_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5995030Z copying torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5996340Z copying torch/include/ATen/ops/_neg_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5997850Z copying torch/include/ATen/ops/unsafe_split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.5999190Z copying torch/include/ATen/ops/sign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6000640Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6002060Z copying torch/include/ATen/ops/logaddexp2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6003490Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6004850Z copying torch/include/ATen/ops/div_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6006320Z copying torch/include/ATen/ops/trace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6008010Z copying torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6009480Z copying torch/include/ATen/ops/fft_hfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6010970Z copying torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6012450Z copying torch/include/ATen/ops/linear_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6014060Z copying torch/include/ATen/ops/nll_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6015540Z copying torch/include/ATen/ops/_nested_tensor_strides_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6016950Z copying torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6018340Z copying torch/include/ATen/ops/fft_ifft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6019830Z copying torch/include/ATen/ops/value_selecting_reduction_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6021210Z copying torch/include/ATen/ops/triplet_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6022580Z copying torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6024050Z copying torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6025500Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6026970Z 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-11-03T15:55:33.6028320Z copying torch/include/ATen/ops/col2im_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6029780Z copying torch/include/ATen/ops/_fft_c2r_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6031150Z copying torch/include/ATen/ops/arcsinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6032480Z copying torch/include/ATen/ops/type_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6033900Z copying torch/include/ATen/ops/linalg_eigvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6035410Z copying torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6036870Z copying torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6038570Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6039890Z copying torch/include/ATen/ops/_safe_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6041340Z copying torch/include/ATen/ops/_copy_from_and_resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6042670Z copying torch/include/ATen/ops/linalg_ldl_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6044010Z copying torch/include/ATen/ops/logdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6045360Z copying torch/include/ATen/ops/align_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6046820Z copying torch/include/ATen/ops/tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6048210Z copying torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6049630Z copying torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6050930Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6052370Z copying torch/include/ATen/ops/tanh_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6053700Z copying torch/include/ATen/ops/_unsafe_masked_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6055030Z copying torch/include/ATen/ops/trunc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6056370Z copying torch/include/ATen/ops/_cholesky_solve_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6057860Z copying torch/include/ATen/ops/special_laguerre_polynomial_l.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6059600Z copying torch/include/ATen/ops/mv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6060680Z copying torch/include/ATen/ops/logit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6061940Z copying torch/include/ATen/ops/min_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6063350Z copying torch/include/ATen/ops/isnan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6064710Z copying torch/include/ATen/ops/_unique2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6066220Z copying torch/include/ATen/ops/_mkldnn_reshape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6067590Z 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-11-03T15:55:33.6068870Z copying torch/include/ATen/ops/_pack_padded_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6070340Z copying torch/include/ATen/ops/upsample_trilinear3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6071610Z copying torch/include/ATen/ops/normal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6073250Z copying torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6074530Z copying torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6075890Z copying torch/include/ATen/ops/smm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6077280Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6078620Z copying torch/include/ATen/ops/less_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6079970Z copying torch/include/ATen/ops/new_ones_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6081430Z copying torch/include/ATen/ops/nonzero_static_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6082800Z copying torch/include/ATen/ops/sinc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6084300Z copying torch/include/ATen/ops/binary_cross_entropy_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6085620Z copying torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6087040Z copying torch/include/ATen/ops/expand_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6088490Z copying torch/include/ATen/ops/complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6089900Z copying torch/include/ATen/ops/_weight_norm_interface_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6091370Z copying torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6092850Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6094170Z copying torch/include/ATen/ops/isin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6095500Z copying torch/include/ATen/ops/special_i1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6096910Z copying torch/include/ATen/ops/pinverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6098290Z copying torch/include/ATen/ops/_foreach_atan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6099800Z copying torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6101150Z copying torch/include/ATen/ops/lstm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6102620Z copying torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6104060Z copying torch/include/ATen/ops/xlogy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6105330Z copying torch/include/ATen/ops/expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6106710Z copying torch/include/ATen/ops/dist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6108170Z copying torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6109520Z copying torch/include/ATen/ops/maximum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6110910Z copying torch/include/ATen/ops/remainder_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6112170Z copying torch/include/ATen/ops/ones.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6113850Z 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-11-03T15:55:33.6115250Z copying torch/include/ATen/ops/_foreach_maximum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6116570Z copying torch/include/ATen/ops/slow_conv3d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6118000Z copying torch/include/ATen/ops/aminmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6121750Z copying torch/include/ATen/ops/special_modified_bessel_i1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6122190Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6122510Z copying torch/include/ATen/ops/mse_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6124690Z copying torch/include/ATen/ops/_cummax_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6125470Z copying torch/include/ATen/ops/pad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6126870Z copying torch/include/ATen/ops/linalg_cross_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6128090Z copying torch/include/ATen/ops/_resize_output_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6129610Z copying torch/include/ATen/ops/gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6130860Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6132190Z copying torch/include/ATen/ops/std_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6133690Z copying torch/include/ATen/ops/round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6134920Z copying torch/include/ATen/ops/_to_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6136420Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6137770Z copying torch/include/ATen/ops/fft_irfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6139240Z copying torch/include/ATen/ops/block_diag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6140620Z copying torch/include/ATen/ops/_nested_get_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6142210Z copying torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6144320Z copying torch/include/ATen/ops/atanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6145890Z copying torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6147360Z copying torch/include/ATen/ops/to_sparse_bsc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6148840Z copying torch/include/ATen/ops/exponential_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6150490Z copying torch/include/ATen/ops/miopen_depthwise_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6151760Z copying torch/include/ATen/ops/gather_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6153280Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6154580Z copying torch/include/ATen/ops/geqrf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6156010Z copying torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6157410Z copying torch/include/ATen/ops/bitwise_xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6159160Z 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-11-03T15:55:33.6160400Z copying torch/include/ATen/ops/_fused_rms_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6161890Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6163300Z copying torch/include/ATen/ops/_aminmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6164690Z copying torch/include/ATen/ops/native_layer_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6166150Z copying torch/include/ATen/ops/sym_constrain_range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6167610Z copying torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6168960Z copying torch/include/ATen/ops/frexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6170540Z copying torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6171920Z copying torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6173380Z copying torch/include/ATen/ops/linalg_vander_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6175030Z 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-11-03T15:55:33.6176650Z 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-11-03T15:55:33.6178120Z copying torch/include/ATen/ops/split_with_sizes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6179630Z copying torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6181060Z copying torch/include/ATen/ops/special_i1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6182340Z copying torch/include/ATen/ops/sum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6183920Z copying torch/include/ATen/ops/vdot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6185380Z copying torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6186670Z copying torch/include/ATen/ops/pinverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6188450Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6189800Z copying torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6191070Z copying torch/include/ATen/ops/add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6192790Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6194210Z copying torch/include/ATen/ops/_cummax_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6195700Z copying torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6197060Z copying torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6198440Z copying torch/include/ATen/ops/eq_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6199900Z copying torch/include/ATen/ops/_batch_norm_impl_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6201440Z copying torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6202830Z copying torch/include/ATen/ops/cholesky_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6204150Z copying torch/include/ATen/ops/upsample_nearest1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6205750Z 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-11-03T15:55:33.6206970Z copying torch/include/ATen/ops/sort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6208400Z copying torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6209910Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6211300Z 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-11-03T15:55:33.6212740Z copying torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6214240Z 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-11-03T15:55:33.6215530Z copying torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6217060Z copying torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6218330Z copying torch/include/ATen/ops/max_pool1d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6219620Z copying torch/include/ATen/ops/special_erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6220990Z copying torch/include/ATen/ops/avg_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6222360Z copying torch/include/ATen/ops/upsample_nearest1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6223710Z copying torch/include/ATen/ops/sin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6225060Z copying torch/include/ATen/ops/sum_to_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6226490Z copying torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6227950Z copying torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6229320Z copying torch/include/ATen/ops/special_hermite_polynomial_he_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6230660Z copying torch/include/ATen/ops/gradient_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6232090Z copying torch/include/ATen/ops/_cslt_compress.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6233410Z 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-11-03T15:55:33.6234780Z copying torch/include/ATen/ops/fractional_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6236230Z 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-11-03T15:55:33.6237550Z copying torch/include/ATen/ops/_test_optional_intlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6238930Z copying torch/include/ATen/ops/log_normal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6240460Z copying torch/include/ATen/ops/hypot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6241630Z copying torch/include/ATen/ops/hypot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6243010Z copying torch/include/ATen/ops/nll_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6244360Z copying torch/include/ATen/ops/_nested_tensor_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6245890Z copying torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6247540Z 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-11-03T15:55:33.6248770Z copying torch/include/ATen/ops/linalg_qr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6250210Z copying torch/include/ATen/ops/_nnz_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6251710Z copying torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6253200Z copying torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6254470Z copying torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6255850Z copying torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6257240Z copying torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6258650Z copying torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6260100Z 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-11-03T15:55:33.6261390Z copying torch/include/ATen/ops/linalg_cross_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6262780Z copying torch/include/ATen/ops/special_bessel_j0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6264120Z copying torch/include/ATen/ops/rsub_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6265510Z copying torch/include/ATen/ops/sort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6266860Z copying torch/include/ATen/ops/sparse_resize_and_clear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6268370Z copying torch/include/ATen/ops/_grouped_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6269590Z copying torch/include/ATen/ops/put_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6271080Z copying torch/include/ATen/ops/eq_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6272470Z 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-11-03T15:55:33.6273900Z 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-11-03T15:55:33.6275220Z copying torch/include/ATen/ops/_foreach_floor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6276800Z 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-11-03T15:55:33.6278170Z copying torch/include/ATen/ops/signbit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6279540Z copying torch/include/ATen/ops/erfinv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6281070Z copying torch/include/ATen/ops/diag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6282350Z copying torch/include/ATen/ops/_functional_sym_constrain_range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6283770Z 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-11-03T15:55:33.6285100Z copying torch/include/ATen/ops/_logcumsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6286450Z copying torch/include/ATen/ops/fractional_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6287790Z copying torch/include/ATen/ops/_scaled_mm_v2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6289210Z copying torch/include/ATen/ops/logical_or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6290590Z copying torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6292110Z copying torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6293440Z copying torch/include/ATen/ops/_pdist_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6294840Z copying torch/include/ATen/ops/empty_permuted_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6296180Z copying torch/include/ATen/ops/topk_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6297680Z copying torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6299060Z copying torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6300310Z copying torch/include/ATen/ops/bincount_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6301700Z copying torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6303040Z copying torch/include/ATen/ops/i0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6304520Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6305700Z copying torch/include/ATen/ops/asinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6307300Z copying torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6308490Z copying torch/include/ATen/ops/resize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6309910Z copying torch/include/ATen/ops/logcumsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6311220Z copying torch/include/ATen/ops/ravel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6312700Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6314180Z copying torch/include/ATen/ops/bitwise_and_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6315680Z 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-11-03T15:55:33.6316910Z copying torch/include/ATen/ops/_index_put_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6318300Z copying torch/include/ATen/ops/isin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6319960Z copying torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6321120Z copying torch/include/ATen/ops/_cast_Short.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6323260Z copying torch/include/ATen/ops/_sparse_broadcast_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6325210Z copying torch/include/ATen/ops/select_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6327650Z copying torch/include/ATen/ops/fmod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6328780Z copying torch/include/ATen/ops/masked_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6330150Z 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-11-03T15:55:33.6331490Z copying torch/include/ATen/ops/hardtanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6333010Z copying torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6335030Z copying torch/include/ATen/ops/index_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6335860Z copying torch/include/ATen/ops/_linalg_solve_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6338620Z 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-11-03T15:55:33.6339940Z copying torch/include/ATen/ops/std_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6340880Z copying torch/include/ATen/ops/vsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6341960Z copying torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6343480Z copying torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6344800Z copying torch/include/ATen/ops/linalg_lu_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6346110Z copying torch/include/ATen/ops/_sparse_csr_sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6347820Z copying torch/include/ATen/ops/view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6348910Z copying torch/include/ATen/ops/ccol_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6350470Z copying torch/include/ATen/ops/resize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6352230Z copying torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6353390Z copying torch/include/ATen/ops/constant_pad_nd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6354750Z copying torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6356150Z copying torch/include/ATen/ops/silu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6364200Z copying torch/include/ATen/ops/choose_qparams_optimized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6364440Z copying torch/include/ATen/ops/log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6364900Z 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-11-03T15:55:33.6365220Z copying torch/include/ATen/ops/_foreach_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6365460Z copying torch/include/ATen/ops/_version_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6365750Z copying torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6367180Z copying torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6368730Z copying torch/include/ATen/ops/corrcoef_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6370450Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6371770Z copying torch/include/ATen/ops/_to_sparse_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6373300Z copying torch/include/ATen/ops/sin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6374530Z copying torch/include/ATen/ops/_cast_Half_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6376050Z copying torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6377440Z copying torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6378840Z copying torch/include/ATen/ops/zeros_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6380170Z copying torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6381700Z copying torch/include/ATen/ops/hardswish_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6383040Z 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-11-03T15:55:33.6384450Z copying torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6385830Z copying torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6387190Z copying torch/include/ATen/ops/_flash_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6388910Z copying torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6390000Z 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-11-03T15:55:33.6391350Z copying torch/include/ATen/ops/hardsigmoid_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6392750Z copying torch/include/ATen/ops/linalg_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6394130Z copying torch/include/ATen/ops/_to_sparse_bsr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6395590Z copying torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6396860Z copying torch/include/ATen/ops/_pad_circular.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6398300Z copying torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6399740Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6401060Z copying torch/include/ATen/ops/_foreach_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6402590Z copying torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6404060Z 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-11-03T15:55:33.6405380Z copying torch/include/ATen/ops/to_sparse_bsr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6406790Z copying torch/include/ATen/ops/bmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6408110Z copying torch/include/ATen/ops/conv3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6409540Z copying torch/include/ATen/ops/addcdiv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6410860Z copying torch/include/ATen/ops/add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6412280Z copying torch/include/ATen/ops/multi_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6413620Z copying torch/include/ATen/ops/bitwise_xor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6415050Z copying torch/include/ATen/ops/exp2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6416380Z copying torch/include/ATen/ops/_nested_from_padded.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6417890Z copying torch/include/ATen/ops/sparse_bsr_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6419180Z copying torch/include/ATen/ops/combinations_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6420570Z copying torch/include/ATen/ops/fmod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6421940Z copying torch/include/ATen/ops/broadcast_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6423500Z 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-11-03T15:55:33.6424790Z copying torch/include/ATen/ops/hardswish_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6426230Z 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-11-03T15:55:33.6427610Z copying torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6428920Z copying torch/include/ATen/ops/linalg_lu_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6430280Z copying torch/include/ATen/ops/bitwise_or_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6431700Z copying torch/include/ATen/ops/special_i0e_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6433160Z 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-11-03T15:55:33.6434570Z copying torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6436010Z copying torch/include/ATen/ops/vdot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6437270Z copying torch/include/ATen/ops/_conj_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6438640Z copying torch/include/ATen/ops/gt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6440130Z copying torch/include/ATen/ops/diag_embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6441390Z copying torch/include/ATen/ops/sqrt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6442800Z copying torch/include/ATen/ops/nan_to_num_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6444220Z copying torch/include/ATen/ops/conv2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6445620Z copying torch/include/ATen/ops/_batch_norm_with_update.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6446970Z copying torch/include/ATen/ops/_foreach_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6448700Z 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-11-03T15:55:33.6449860Z copying torch/include/ATen/ops/hardshrink_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6451150Z copying torch/include/ATen/ops/heaviside_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6452450Z copying torch/include/ATen/ops/pdist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6453870Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6455270Z copying torch/include/ATen/ops/cholesky_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6456710Z copying torch/include/ATen/ops/is_signed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6458030Z 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-11-03T15:55:33.6459360Z copying torch/include/ATen/ops/ne_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6460710Z copying torch/include/ATen/ops/index_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6462040Z copying torch/include/ATen/ops/logit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6463470Z copying torch/include/ATen/ops/linalg_multi_dot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6465370Z 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-11-03T15:55:33.6466480Z copying torch/include/ATen/ops/rad2deg_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6467850Z copying torch/include/ATen/ops/linalg_eig_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6469190Z copying torch/include/ATen/ops/special_i1e_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6470590Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6471940Z copying torch/include/ATen/ops/_conj_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6473260Z copying torch/include/ATen/ops/randperm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6474770Z copying torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6476050Z copying torch/include/ATen/ops/_fused_adamw_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6477560Z copying torch/include/ATen/ops/rand_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6478850Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6480160Z copying torch/include/ATen/ops/_foreach_cosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6481560Z copying torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6482900Z copying torch/include/ATen/ops/rename_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6484340Z copying torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6485750Z copying torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6487120Z copying torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6488520Z copying torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6489990Z copying torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6491240Z copying torch/include/ATen/ops/_is_zerotensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6492700Z copying torch/include/ATen/ops/exp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6493980Z copying torch/include/ATen/ops/multilabel_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6495440Z copying torch/include/ATen/ops/_test_check_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6496800Z copying torch/include/ATen/ops/embedding_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6498230Z 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-11-03T15:55:33.6499570Z copying torch/include/ATen/ops/_cast_Float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6500940Z copying torch/include/ATen/ops/_neg_view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6502320Z copying torch/include/ATen/ops/acosh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6503850Z 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-11-03T15:55:33.6505230Z copying torch/include/ATen/ops/_assert_tensor_metadata_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6506820Z copying torch/include/ATen/ops/sigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6509400Z copying torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6510670Z copying torch/include/ATen/ops/index_fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6512190Z copying torch/include/ATen/ops/pad_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6513660Z copying torch/include/ATen/ops/unsafe_split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6515230Z copying torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6521810Z copying torch/include/ATen/ops/mish_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6522980Z copying torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6529250Z copying torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6530100Z copying torch/include/ATen/ops/addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6531580Z 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-11-03T15:55:33.6538320Z copying torch/include/ATen/ops/_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6539380Z copying torch/include/ATen/ops/atan2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6546880Z copying torch/include/ATen/ops/bucketize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6549250Z copying torch/include/ATen/ops/native_layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6554560Z copying torch/include/ATen/ops/tan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6555730Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6557210Z 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-11-03T15:55:33.6558490Z copying torch/include/ATen/ops/ge_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6563630Z copying torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6564910Z copying torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6572070Z copying torch/include/ATen/ops/lu_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6573630Z copying torch/include/ATen/ops/conv_tbc_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6580150Z copying torch/include/ATen/ops/_log_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6581160Z 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-11-03T15:55:33.6582520Z copying torch/include/ATen/ops/_sobol_engine_draw_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6587880Z copying torch/include/ATen/ops/hardtanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6589450Z copying torch/include/ATen/ops/bitwise_and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6595420Z copying torch/include/ATen/ops/masked_select_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6596990Z copying torch/include/ATen/ops/lerp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6598520Z copying torch/include/ATen/ops/matrix_exp_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6604800Z copying torch/include/ATen/ops/special_erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6606030Z copying torch/include/ATen/ops/cosh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6613700Z copying torch/include/ATen/ops/linalg_cross_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6614210Z copying torch/include/ATen/ops/index_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6621180Z copying torch/include/ATen/ops/linalg_multi_dot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6622980Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6624530Z copying torch/include/ATen/ops/_cslt_sparse_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6627930Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6630070Z copying torch/include/ATen/ops/index_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6635200Z copying torch/include/ATen/ops/lt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6636380Z copying torch/include/ATen/ops/max_pool2d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6638620Z copying torch/include/ATen/ops/nonzero_static_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6644230Z copying torch/include/ATen/ops/exponential_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6645510Z copying torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6651430Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6652650Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6659000Z copying torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6660080Z copying torch/include/ATen/ops/cummin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6661630Z copying torch/include/ATen/ops/quantize_per_channel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6668260Z copying torch/include/ATen/ops/cauchy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6669250Z copying torch/include/ATen/ops/rsqrt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6675900Z copying torch/include/ATen/ops/linspace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6677170Z copying torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6684400Z copying torch/include/ATen/ops/special_modified_bessel_i1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6685560Z copying torch/include/ATen/ops/frac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6687390Z copying torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6692350Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6693470Z copying torch/include/ATen/ops/select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6699650Z copying torch/include/ATen/ops/_nested_sum_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6700760Z copying torch/include/ATen/ops/_foreach_log_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6702360Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6707460Z copying torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6709060Z copying torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6715400Z copying torch/include/ATen/ops/inner_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6717140Z copying torch/include/ATen/ops/_triton_scaled_dot_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6719200Z copying torch/include/ATen/ops/is_coalesced.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6724930Z copying torch/include/ATen/ops/native_group_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6726050Z copying torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6732390Z copying torch/include/ATen/ops/fft_fftfreq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6733840Z 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-11-03T15:55:33.6740290Z copying torch/include/ATen/ops/max_pool2d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6741440Z copying torch/include/ATen/ops/_standard_gamma_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6742890Z copying torch/include/ATen/ops/linalg_inv_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6748570Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6749620Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6756100Z copying torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6757100Z copying torch/include/ATen/ops/hinge_embedding_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6758510Z copying torch/include/ATen/ops/nanmedian_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6764080Z copying torch/include/ATen/ops/dot_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6765220Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6772200Z copying torch/include/ATen/ops/stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6773760Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6780180Z copying torch/include/ATen/ops/smooth_l1_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6781710Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6783130Z copying torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6789830Z copying torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6790980Z 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-11-03T15:55:33.6797840Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6798950Z copying torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6800310Z copying torch/include/ATen/ops/index_put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6805180Z 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-11-03T15:55:33.6806550Z copying torch/include/ATen/ops/glu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6807920Z copying torch/include/ATen/ops/view_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6814720Z copying torch/include/ATen/ops/_foreach_sign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6815800Z copying torch/include/ATen/ops/index_add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6822640Z copying torch/include/ATen/ops/native_layer_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6823760Z copying torch/include/ATen/ops/to_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6829950Z copying torch/include/ATen/ops/is_set_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6831140Z copying torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6832540Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6837600Z copying torch/include/ATen/ops/concatenate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6839150Z copying torch/include/ATen/ops/logaddexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6847320Z copying torch/include/ATen/ops/batch_norm_backward_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6848680Z copying torch/include/ATen/ops/_linalg_eigvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6854570Z copying torch/include/ATen/ops/qscheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6855610Z copying torch/include/ATen/ops/silu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6861450Z copying torch/include/ATen/ops/movedim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6863150Z copying torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6869460Z copying torch/include/ATen/ops/lu_unpack_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6870520Z copying torch/include/ATen/ops/thnn_conv2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6872150Z copying torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6876980Z copying torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6878410Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6885190Z copying torch/include/ATen/ops/sparse_sampled_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6886330Z copying torch/include/ATen/ops/igammac_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6892530Z copying torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6893650Z copying torch/include/ATen/ops/quantized_max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6894920Z copying torch/include/ATen/ops/special_airy_ai_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6900040Z copying torch/include/ATen/ops/addcdiv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6901430Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6907740Z copying torch/include/ATen/ops/_nested_get_max_seqlen_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6910500Z copying torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6915210Z copying torch/include/ATen/ops/addcdiv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6916550Z copying torch/include/ATen/ops/rsqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6918200Z 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-11-03T15:55:33.6924710Z copying torch/include/ATen/ops/_foreach_lgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6925880Z copying torch/include/ATen/ops/argmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6932900Z 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-11-03T15:55:33.6933980Z 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-11-03T15:55:33.6940430Z copying torch/include/ATen/ops/erfc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6941420Z copying torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6942960Z copying torch/include/ATen/ops/threshold_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6947950Z copying torch/include/ATen/ops/svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6949670Z copying torch/include/ATen/ops/addmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6955500Z copying torch/include/ATen/ops/lift_fresh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6957000Z copying torch/include/ATen/ops/_foreach_zero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6958590Z copying torch/include/ATen/ops/flatten_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6963340Z copying torch/include/ATen/ops/linalg_lu_factor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6964820Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6970810Z copying torch/include/ATen/ops/where_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6973250Z copying torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6978950Z copying torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6980060Z copying torch/include/ATen/ops/_pad_enum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6981590Z copying torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6987760Z copying torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6988900Z copying torch/include/ATen/ops/from_file.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6995130Z copying torch/include/ATen/ops/row_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.6996710Z copying torch/include/ATen/ops/clamp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7003720Z 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-11-03T15:55:33.7005020Z copying torch/include/ATen/ops/celu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7006570Z copying torch/include/ATen/ops/matrix_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7012000Z copying torch/include/ATen/ops/special_logit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7013350Z copying torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7015080Z copying torch/include/ATen/ops/lstm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7020430Z copying torch/include/ATen/ops/atan2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7021430Z copying torch/include/ATen/ops/cummaxmin_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7028770Z copying torch/include/ATen/ops/_functional_sym_constrain_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7030120Z copying torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7036990Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7038350Z copying torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7039740Z copying torch/include/ATen/ops/zero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7045270Z copying torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7047720Z copying torch/include/ATen/ops/row_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7053670Z copying torch/include/ATen/ops/slow_conv_transpose3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7055160Z copying torch/include/ATen/ops/miopen_convolution_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7057020Z copying torch/include/ATen/ops/max_pool2d_with_indices_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7061950Z copying torch/include/ATen/ops/real.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7062960Z copying torch/include/ATen/ops/replication_pad1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7069810Z copying torch/include/ATen/ops/pairwise_distance_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7071000Z copying torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7077080Z copying torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7078010Z copying torch/include/ATen/ops/_make_dual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7079460Z copying torch/include/ATen/ops/_make_dual_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7085620Z 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-11-03T15:55:33.7087210Z copying torch/include/ATen/ops/renorm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7092500Z copying torch/include/ATen/ops/relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7094640Z 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-11-03T15:55:33.7097000Z copying torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7100400Z copying torch/include/ATen/ops/avg_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7101710Z copying torch/include/ATen/ops/_foreach_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7108860Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7110080Z copying torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7116080Z copying torch/include/ATen/ops/ceil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7117880Z 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-11-03T15:55:33.7119350Z copying torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7124240Z copying torch/include/ATen/ops/sqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7125470Z copying torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7131830Z copying torch/include/ATen/ops/min_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7133380Z copying torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7140930Z copying torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7142050Z copying torch/include/ATen/ops/_nnpack_available_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7143570Z copying torch/include/ATen/ops/bitwise_right_shift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7147640Z copying torch/include/ATen/ops/threshold_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7150870Z copying torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7155830Z 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-11-03T15:55:33.7156760Z copying torch/include/ATen/ops/_autocast_to_full_precision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7159930Z copying torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7164220Z copying torch/include/ATen/ops/_nested_get_min_seqlen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7165510Z copying torch/include/ATen/ops/remainder_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7170410Z copying torch/include/ATen/ops/linalg_det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7173610Z copying torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7177700Z copying torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7178870Z copying torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7182230Z 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-11-03T15:55:33.7186500Z copying torch/include/ATen/ops/randint_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7190350Z copying torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7191490Z copying torch/include/ATen/ops/nested_to_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7196570Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7199400Z copying torch/include/ATen/ops/resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7203970Z copying torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7205020Z copying torch/include/ATen/ops/isclose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7208730Z copying torch/include/ATen/ops/resize_as_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7213280Z copying torch/include/ATen/ops/view_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7216860Z copying torch/include/ATen/ops/replication_pad1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7220710Z 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-11-03T15:55:33.7221740Z copying torch/include/ATen/ops/triu_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7225790Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7229440Z copying torch/include/ATen/ops/_scaled_grouped_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7233530Z copying torch/include/ATen/ops/mish_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7234520Z copying torch/include/ATen/ops/atleast_2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7238870Z copying torch/include/ATen/ops/_nested_get_lengths.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7241940Z 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-11-03T15:55:33.7246300Z copying torch/include/ATen/ops/renorm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7247780Z copying torch/include/ATen/ops/native_group_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7254340Z copying torch/include/ATen/ops/floor_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7255510Z copying torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7262630Z copying torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7263660Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7270830Z copying torch/include/ATen/ops/take_along_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7271990Z copying torch/include/ATen/ops/_reshape_from_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7273440Z copying torch/include/ATen/ops/hsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7278160Z copying torch/include/ATen/ops/gather_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7279930Z 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-11-03T15:55:33.7286120Z copying torch/include/ATen/ops/threshold_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7287110Z copying torch/include/ATen/ops/t_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7288520Z copying torch/include/ATen/ops/triu_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7293850Z copying torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7295910Z copying torch/include/ATen/ops/absolute_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7300960Z copying torch/include/ATen/ops/isnan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7303370Z copying torch/include/ATen/ops/fft_hfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7308870Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7309790Z copying torch/include/ATen/ops/atanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7312460Z 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-11-03T15:55:33.7317350Z copying torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7318500Z copying torch/include/ATen/ops/fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7321680Z copying torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7327400Z copying torch/include/ATen/ops/batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7329890Z copying torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7335340Z copying torch/include/ATen/ops/tanh_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7336480Z copying torch/include/ATen/ops/sparse_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7338130Z copying torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7344850Z copying torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7351750Z copying torch/include/ATen/ops/rsub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7353160Z 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-11-03T15:55:33.7358880Z copying torch/include/ATen/ops/sinc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7360580Z copying torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7362200Z copying torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7366620Z 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-11-03T15:55:33.7367960Z copying torch/include/ATen/ops/_nested_from_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7374800Z copying torch/include/ATen/ops/randint_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7375860Z 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-11-03T15:55:33.7381950Z copying torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7383460Z copying torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7384920Z copying torch/include/ATen/ops/abs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7391080Z copying torch/include/ATen/ops/isin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7392330Z copying torch/include/ATen/ops/huber_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7398800Z copying torch/include/ATen/ops/retain_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7400300Z copying torch/include/ATen/ops/sparse_resize_and_clear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7407030Z copying torch/include/ATen/ops/kron_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7407860Z copying torch/include/ATen/ops/log1p_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7409330Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7414510Z copying torch/include/ATen/ops/_batch_norm_no_update_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7415570Z copying torch/include/ATen/ops/copy_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7421770Z copying torch/include/ATen/ops/bucketize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7423340Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7424720Z copying torch/include/ATen/ops/logaddexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7431840Z copying torch/include/ATen/ops/gather_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7433070Z copying torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7439880Z copying torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7441390Z copying torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7447570Z copying torch/include/ATen/ops/clip_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7448880Z copying torch/include/ATen/ops/bernoulli_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7450830Z copying torch/include/ATen/ops/_local_scalar_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7455270Z copying torch/include/ATen/ops/_cslt_sparse_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7456740Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7462970Z copying torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7464050Z 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-11-03T15:55:33.7465390Z copying torch/include/ATen/ops/max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7471050Z copying torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7472370Z copying torch/include/ATen/ops/special_erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7478740Z copying torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7480630Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7482160Z copying torch/include/ATen/ops/mm_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7486480Z copying torch/include/ATen/ops/pow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7488190Z copying torch/include/ATen/ops/_cast_Double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7495370Z copying torch/include/ATen/ops/frobenius_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7496460Z copying torch/include/ATen/ops/sinc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7502180Z copying torch/include/ATen/ops/softplus.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7503950Z copying torch/include/ATen/ops/_foreach_pow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7505540Z copying torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7510080Z copying torch/include/ATen/ops/kthvalue_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7511180Z copying torch/include/ATen/ops/_is_any_true.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7517790Z copying torch/include/ATen/ops/reshape_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7520330Z 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-11-03T15:55:33.7525430Z copying torch/include/ATen/ops/special_bessel_y0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7526460Z copying torch/include/ATen/ops/crow_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7528880Z copying torch/include/ATen/ops/_weight_int8pack_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7533770Z copying torch/include/ATen/ops/uniform_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7535000Z copying torch/include/ATen/ops/_embedding_bag_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7538880Z copying torch/include/ATen/ops/_cudnn_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7542970Z copying torch/include/ATen/ops/to_sparse_csc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7547240Z copying torch/include/ATen/ops/reshape_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7550490Z copying torch/include/ATen/ops/_fused_rms_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7552000Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7556810Z copying torch/include/ATen/ops/replication_pad1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7559740Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7564300Z copying torch/include/ATen/ops/_safe_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7565420Z copying torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7569070Z copying torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7574130Z copying torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7577070Z copying torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7578300Z copying torch/include/ATen/ops/set_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7583540Z copying torch/include/ATen/ops/numpy_T.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7586260Z copying torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7591460Z copying torch/include/ATen/ops/miopen_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7593630Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7594970Z copying torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7600380Z copying torch/include/ATen/ops/float_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7601510Z copying torch/include/ATen/ops/narrow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7607850Z 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-11-03T15:55:33.7609540Z copying torch/include/ATen/ops/unique_consecutive_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7615550Z copying torch/include/ATen/ops/rot90.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7616880Z copying torch/include/ATen/ops/t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7618570Z copying torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7623580Z copying torch/include/ATen/ops/squeeze_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7624730Z copying torch/include/ATen/ops/clamp_min_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7631190Z copying torch/include/ATen/ops/greater.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7632550Z copying torch/include/ATen/ops/swapaxes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7639460Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7640510Z copying torch/include/ATen/ops/avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7642340Z copying torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7647150Z copying torch/include/ATen/ops/_cudnn_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7648190Z copying torch/include/ATen/ops/_foreach_sign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7654380Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7656730Z copying torch/include/ATen/ops/_linalg_svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7662040Z copying torch/include/ATen/ops/from_blob.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7663470Z copying torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7664930Z 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-11-03T15:55:33.7670530Z copying torch/include/ATen/ops/exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7671920Z copying torch/include/ATen/ops/index_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7678610Z copying torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7680720Z copying torch/include/ATen/ops/linspace_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7686890Z copying torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7688140Z copying torch/include/ATen/ops/special_ndtri_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7689710Z copying torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7694650Z copying torch/include/ATen/ops/put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7695990Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7697350Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7703920Z copying torch/include/ATen/ops/linalg_lu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7705440Z copying torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7712400Z copying torch/include/ATen/ops/log1p_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7713440Z copying torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7721090Z copying torch/include/ATen/ops/tril_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7722420Z 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-11-03T15:55:33.7722730Z copying torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7727610Z copying torch/include/ATen/ops/_compute_linear_combination_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7729150Z copying torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7732480Z copying torch/include/ATen/ops/put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7734890Z copying torch/include/ATen/ops/special_airy_ai_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7738990Z copying torch/include/ATen/ops/unique_dim_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7740090Z copying torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7741630Z copying torch/include/ATen/ops/reflection_pad1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7745980Z copying torch/include/ATen/ops/eq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7748400Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7753430Z copying torch/include/ATen/ops/im2col_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7761560Z 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-11-03T15:55:33.7762910Z copying torch/include/ATen/ops/cumprod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7769590Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7770520Z copying torch/include/ATen/ops/fill_diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7772180Z copying torch/include/ATen/ops/lgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7776930Z copying torch/include/ATen/ops/equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7778550Z copying torch/include/ATen/ops/linalg_eigvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7785010Z copying torch/include/ATen/ops/_flash_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7786470Z 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-11-03T15:55:33.7788060Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7794590Z copying torch/include/ATen/ops/sparse_resize_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7796070Z copying torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7802560Z 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-11-03T15:55:33.7803610Z copying torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7810540Z copying torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7811950Z copying torch/include/ATen/ops/value_selecting_reduction_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7813060Z copying torch/include/ATen/ops/_unpack_dual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7818750Z copying torch/include/ATen/ops/special_log_ndtr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7819860Z 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-11-03T15:55:33.7826610Z copying torch/include/ATen/ops/sparse_csc_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7827600Z copying torch/include/ATen/ops/log1p_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7829110Z 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-11-03T15:55:33.7834040Z copying torch/include/ATen/ops/flatten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7835620Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7841370Z copying torch/include/ATen/ops/sym_numel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7842800Z copying torch/include/ATen/ops/linalg_svdvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7844410Z copying torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7850760Z copying torch/include/ATen/ops/masked_select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7851750Z copying torch/include/ATen/ops/unfold_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7859270Z copying torch/include/ATen/ops/special_airy_ai.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7860250Z copying torch/include/ATen/ops/min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7867380Z copying torch/include/ATen/ops/fmin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7868620Z copying torch/include/ATen/ops/logit_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7869950Z 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-11-03T15:55:33.7874790Z copying torch/include/ATen/ops/view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7876310Z copying torch/include/ATen/ops/threshold_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7882530Z copying torch/include/ATen/ops/mkldnn_rnn_layer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7883580Z copying torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7884970Z copying torch/include/ATen/ops/_efficient_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7890720Z copying torch/include/ATen/ops/slice_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7892190Z copying torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7898860Z copying torch/include/ATen/ops/polar_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7900230Z copying torch/include/ATen/ops/linspace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7907030Z copying torch/include/ATen/ops/linalg_matrix_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7908180Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7909620Z copying torch/include/ATen/ops/softplus_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7915010Z copying torch/include/ATen/ops/arccos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7916480Z copying torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7923460Z copying torch/include/ATen/ops/silu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7924480Z copying torch/include/ATen/ops/digamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7925860Z copying torch/include/ATen/ops/cudnn_is_acceptable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7931480Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7934880Z copying torch/include/ATen/ops/_embedding_bag_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7940940Z copying torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7942130Z 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-11-03T15:55:33.7948980Z copying torch/include/ATen/ops/deg2rad_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7950060Z copying torch/include/ATen/ops/special_erfcx_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7956350Z copying torch/include/ATen/ops/_cdist_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7957540Z copying torch/include/ATen/ops/mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7959160Z copying torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7964180Z copying torch/include/ATen/ops/_foreach_mul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7966990Z copying torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7971380Z copying torch/include/ATen/ops/round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7972980Z copying torch/include/ATen/ops/moveaxis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7974590Z copying torch/include/ATen/ops/_efficient_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7980350Z copying torch/include/ATen/ops/mul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7981570Z 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-11-03T15:55:33.7988020Z copying torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7989140Z copying torch/include/ATen/ops/select_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7995210Z copying torch/include/ATen/ops/acos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7996920Z copying torch/include/ATen/ops/nansum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.7998800Z copying torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8004150Z copying torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8005250Z copying torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8006910Z copying torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8013190Z copying torch/include/ATen/ops/diag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8015690Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8021430Z copying torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8022650Z 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-11-03T15:55:33.8024770Z copying torch/include/ATen/ops/_embedding_bag_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8031390Z copying torch/include/ATen/ops/mean_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8033190Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8040100Z 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-11-03T15:55:33.8041240Z copying torch/include/ATen/ops/_cudnn_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8042970Z copying torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8047440Z copying torch/include/ATen/ops/trunc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8049140Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8055870Z copying torch/include/ATen/ops/detach.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8056950Z copying torch/include/ATen/ops/special_hermite_polynomial_he.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8058580Z copying torch/include/ATen/ops/logaddexp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8063150Z 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-11-03T15:55:33.8064710Z copying torch/include/ATen/ops/random_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8071710Z copying torch/include/ATen/ops/_aminmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8072750Z copying torch/include/ATen/ops/gelu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8078930Z copying torch/include/ATen/ops/masked_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8080550Z copying torch/include/ATen/ops/row_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8082060Z copying torch/include/ATen/ops/expand.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8086790Z copying torch/include/ATen/ops/asinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8087850Z copying torch/include/ATen/ops/atanh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8094320Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8095880Z copying torch/include/ATen/ops/sub_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8101770Z copying torch/include/ATen/ops/affine_grid_generator_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8103550Z copying torch/include/ATen/ops/rnn_tanh_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8105080Z copying torch/include/ATen/ops/ger_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8111050Z copying torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8112360Z copying torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8119970Z copying torch/include/ATen/ops/upsample_linear1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8121220Z 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-11-03T15:55:33.8122540Z copying torch/include/ATen/ops/result_type_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8125490Z copying torch/include/ATen/ops/_prelu_kernel_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8129180Z copying torch/include/ATen/ops/ormqr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8130510Z copying torch/include/ATen/ops/floor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8132950Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8134830Z 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-11-03T15:55:33.8142660Z copying torch/include/ATen/ops/slice_inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8145700Z 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-11-03T15:55:33.8150240Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8151320Z copying torch/include/ATen/ops/threshold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8154710Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8159420Z 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-11-03T15:55:33.8163860Z 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-11-03T15:55:33.8166820Z copying torch/include/ATen/ops/special_ndtri_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8168030Z copying torch/include/ATen/ops/_sparse_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8172970Z copying torch/include/ATen/ops/special_xlogy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8175380Z copying torch/include/ATen/ops/_grouped_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8181110Z copying torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8182230Z copying torch/include/ATen/ops/is_floating_point_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8185310Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8190640Z copying torch/include/ATen/ops/_foreach_pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8193780Z copying torch/include/ATen/ops/fft_irfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8198360Z copying torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8199630Z copying torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8202620Z copying torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8207760Z 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-11-03T15:55:33.8210760Z copying torch/include/ATen/ops/median_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8211840Z copying torch/include/ATen/ops/fft_ifft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8217320Z copying torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8218960Z copying torch/include/ATen/ops/ceil_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8224680Z copying torch/include/ATen/ops/leaky_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8225660Z copying torch/include/ATen/ops/full_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8227080Z copying torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8234310Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8235410Z copying torch/include/ATen/ops/rad2deg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8241490Z copying torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8243790Z copying torch/include/ATen/ops/fmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8248880Z copying torch/include/ATen/ops/refine_names.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8249850Z copying torch/include/ATen/ops/linalg_cond_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8251500Z 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-11-03T15:55:33.8258010Z copying torch/include/ATen/ops/native_dropout_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8259180Z copying torch/include/ATen/ops/embedding_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8266450Z copying torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8267420Z copying torch/include/ATen/ops/tensordot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8274200Z 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-11-03T15:55:33.8275120Z 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-11-03T15:55:33.8276510Z copying torch/include/ATen/ops/clamp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8282040Z copying torch/include/ATen/ops/_foreach_sqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8283540Z 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-11-03T15:55:33.8290240Z copying torch/include/ATen/ops/glu_jvp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8291020Z copying torch/include/ATen/ops/batch_norm_elemt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8292600Z copying torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8298660Z copying torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8299690Z copying torch/include/ATen/ops/special_erfcx_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8306900Z copying torch/include/ATen/ops/nextafter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8308050Z copying torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8309420Z copying torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8316090Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8317120Z copying torch/include/ATen/ops/batch_norm_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8324070Z copying torch/include/ATen/ops/conv_tbc_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8325040Z copying torch/include/ATen/ops/mkldnn_linear_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8326440Z copying torch/include/ATen/ops/_assert_tensor_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8332070Z copying torch/include/ATen/ops/slice_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8333040Z copying torch/include/ATen/ops/add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8334350Z copying torch/include/ATen/ops/rnn_tanh_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8341390Z 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-11-03T15:55:33.8342780Z 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-11-03T15:55:33.8348340Z copying torch/include/ATen/ops/expand_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8349720Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8356170Z 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-11-03T15:55:33.8357450Z copying torch/include/ATen/ops/masked_scatter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8359060Z 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-11-03T15:55:33.8363950Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8364960Z copying torch/include/ATen/ops/_aminmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8371680Z copying torch/include/ATen/ops/istft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8373210Z copying torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8380190Z copying torch/include/ATen/ops/max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8381340Z copying torch/include/ATen/ops/special_expit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8382720Z copying torch/include/ATen/ops/_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8388210Z copying torch/include/ATen/ops/fliplr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8389610Z copying torch/include/ATen/ops/acos_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8395650Z copying torch/include/ATen/ops/log10_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8396930Z copying torch/include/ATen/ops/argmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8398390Z copying torch/include/ATen/ops/triu_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8403880Z copying torch/include/ATen/ops/sparse_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8405270Z copying torch/include/ATen/ops/bitwise_and_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8411480Z copying torch/include/ATen/ops/atan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8412940Z copying torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8414440Z copying torch/include/ATen/ops/prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8420670Z copying torch/include/ATen/ops/mul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8422000Z copying torch/include/ATen/ops/is_pinned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8428100Z copying torch/include/ATen/ops/index_add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8429710Z copying torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8436300Z 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-11-03T15:55:33.8437250Z copying torch/include/ATen/ops/unfold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8438780Z 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-11-03T15:55:33.8443480Z copying torch/include/ATen/ops/rrelu_with_noise_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8444890Z copying torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8450900Z copying torch/include/ATen/ops/upsample_trilinear3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8452240Z copying torch/include/ATen/ops/linalg_householder_product.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8459380Z copying torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8460420Z copying torch/include/ATen/ops/aminmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8461720Z copying torch/include/ATen/ops/view_as_real.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8467120Z copying torch/include/ATen/ops/_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8468830Z copying torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8474870Z copying torch/include/ATen/ops/huber_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8476460Z copying torch/include/ATen/ops/_native_batch_norm_legit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8478060Z 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-11-03T15:55:33.8484190Z copying torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8485130Z copying torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8491160Z 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-11-03T15:55:33.8492810Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8498480Z copying torch/include/ATen/ops/diagflat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8499590Z copying torch/include/ATen/ops/amax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8500900Z copying torch/include/ATen/ops/addr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8507090Z copying torch/include/ATen/ops/special_i1e.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8508590Z copying torch/include/ATen/ops/_embedding_bag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8514300Z 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-11-03T15:55:33.8515800Z copying torch/include/ATen/ops/zero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8522010Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8523090Z copying torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8524500Z 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-11-03T15:55:33.8530500Z copying torch/include/ATen/ops/arange_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8531950Z copying torch/include/ATen/ops/mish_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8538680Z copying torch/include/ATen/ops/chalf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8539700Z copying torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8547240Z copying torch/include/ATen/ops/linalg_svdvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8548270Z copying torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8549750Z copying torch/include/ATen/ops/special_spherical_bessel_j0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8554260Z copying torch/include/ATen/ops/_weight_int4pack_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8555790Z copying torch/include/ATen/ops/expm1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8561670Z 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-11-03T15:55:33.8563150Z copying torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8565220Z 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-11-03T15:55:33.8570650Z copying torch/include/ATen/ops/std_mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8571620Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8578370Z copying torch/include/ATen/ops/_linalg_eigh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8579690Z copying torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8585810Z copying torch/include/ATen/ops/smooth_l1_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8587150Z copying torch/include/ATen/ops/igamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8588610Z copying torch/include/ATen/ops/_embedding_bag_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8594220Z copying torch/include/ATen/ops/remainder_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8595360Z copying torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8601790Z 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-11-03T15:55:33.8603310Z copying torch/include/ATen/ops/masked_select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8609460Z copying torch/include/ATen/ops/_sparse_sum_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8610800Z copying torch/include/ATen/ops/empty.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8612380Z copying torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8618280Z copying torch/include/ATen/ops/baddbmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8619230Z copying torch/include/ATen/ops/poisson_nll_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8625260Z copying torch/include/ATen/ops/baddbmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8627660Z copying torch/include/ATen/ops/ger.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8634140Z copying torch/include/ATen/ops/_conv_depthwise2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8635420Z 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-11-03T15:55:33.8637040Z copying torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8642180Z 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-11-03T15:55:33.8643250Z copying torch/include/ATen/ops/lift_fresh_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8644910Z copying torch/include/ATen/ops/nll_loss2d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8650280Z copying torch/include/ATen/ops/imag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8658960Z copying torch/include/ATen/ops/full_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8659980Z copying torch/include/ATen/ops/_cast_Float_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8666900Z copying torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8667870Z copying torch/include/ATen/ops/upsample_nearest3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8669380Z copying torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8675010Z copying torch/include/ATen/ops/lt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8676300Z copying torch/include/ATen/ops/copysign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8683680Z copying torch/include/ATen/ops/_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8684760Z copying torch/include/ATen/ops/replication_pad3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8686220Z copying torch/include/ATen/ops/index_fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8691890Z copying torch/include/ATen/ops/conv_tbc_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8693000Z copying torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8700180Z copying torch/include/ATen/ops/logical_xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8701190Z copying torch/include/ATen/ops/logit_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8702590Z copying torch/include/ATen/ops/softplus_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8708150Z copying torch/include/ATen/ops/upsample_nearest3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8709310Z copying torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8716270Z copying torch/include/ATen/ops/ceil_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8717270Z 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-11-03T15:55:33.8718640Z copying torch/include/ATen/ops/nanquantile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8724410Z copying torch/include/ATen/ops/_make_dep_token_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8725500Z 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-11-03T15:55:33.8732510Z copying torch/include/ATen/ops/batch_norm_backward_elemt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8733500Z copying torch/include/ATen/ops/sinh_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8734900Z copying torch/include/ATen/ops/special_round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8740170Z copying torch/include/ATen/ops/_reshape_alias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8741620Z copying torch/include/ATen/ops/le_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8748020Z copying torch/include/ATen/ops/softshrink_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8749440Z copying torch/include/ATen/ops/resolve_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8755910Z 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-11-03T15:55:33.8756880Z copying torch/include/ATen/ops/binomial_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8758240Z copying torch/include/ATen/ops/mvlgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8763630Z copying torch/include/ATen/ops/lshift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8764660Z 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-11-03T15:55:33.8771650Z copying torch/include/ATen/ops/_efficient_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8772730Z copying torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8779620Z copying torch/include/ATen/ops/special_gammaincc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8780850Z copying torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8782140Z copying torch/include/ATen/ops/cosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8787560Z copying torch/include/ATen/ops/clamp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8788620Z copying torch/include/ATen/ops/binary_cross_entropy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8795370Z copying torch/include/ATen/ops/concat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8796700Z copying torch/include/ATen/ops/mul_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8803680Z 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-11-03T15:55:33.8804800Z copying torch/include/ATen/ops/special_multigammaln.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8806250Z copying torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8811900Z copying torch/include/ATen/ops/fft_ifftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8813010Z copying torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8820010Z copying torch/include/ATen/ops/nonzero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8820900Z copying torch/include/ATen/ops/nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8822330Z copying torch/include/ATen/ops/fliplr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8827200Z copying torch/include/ATen/ops/negative_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8829630Z copying torch/include/ATen/ops/fft_fftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8835010Z copying torch/include/ATen/ops/native_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8837140Z copying torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8838670Z copying torch/include/ATen/ops/new_empty_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8844550Z copying torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8845630Z copying torch/include/ATen/ops/scatter_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8851700Z copying torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8853030Z copying torch/include/ATen/ops/eye_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8858310Z copying torch/include/ATen/ops/cartesian_prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8861320Z 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-11-03T15:55:33.8867190Z 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-11-03T15:55:33.8868510Z copying torch/include/ATen/ops/conv_transpose2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8875650Z copying torch/include/ATen/ops/as_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8876600Z copying torch/include/ATen/ops/geometric_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8884000Z copying torch/include/ATen/ops/cosh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8885050Z copying torch/include/ATen/ops/copysign_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8886490Z copying torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8893010Z copying torch/include/ATen/ops/output_nr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8894280Z copying torch/include/ATen/ops/argsort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8901270Z copying torch/include/ATen/ops/fft_hfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8902230Z copying torch/include/ATen/ops/sinh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8903650Z copying torch/include/ATen/ops/_foreach_sin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8909110Z copying torch/include/ATen/ops/_unique_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8910100Z copying torch/include/ATen/ops/sin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8912300Z copying torch/include/ATen/ops/range_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8917780Z copying torch/include/ATen/ops/special_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8923930Z copying torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8926330Z copying torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8931420Z copying torch/include/ATen/ops/argmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8932850Z copying torch/include/ATen/ops/detach_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8934260Z copying torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8940890Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8941890Z copying torch/include/ATen/ops/isnan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8947350Z copying torch/include/ATen/ops/special_xlogy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8949780Z 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-11-03T15:55:33.8954640Z copying torch/include/ATen/ops/all_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8956240Z 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-11-03T15:55:33.8958400Z copying torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8962840Z copying torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8964180Z copying torch/include/ATen/ops/cumsum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8971010Z copying torch/include/ATen/ops/as_strided_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8972380Z copying torch/include/ATen/ops/scatter_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8979240Z copying torch/include/ATen/ops/_weight_int8pack_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8980320Z copying torch/include/ATen/ops/_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8981810Z copying torch/include/ATen/ops/_linalg_det_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8986560Z copying torch/include/ATen/ops/sin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8987930Z copying torch/include/ATen/ops/random_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8994200Z copying torch/include/ATen/ops/_pdist_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.8996680Z copying torch/include/ATen/ops/nll_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9002140Z copying torch/include/ATen/ops/tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9003150Z copying torch/include/ATen/ops/cumprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9004820Z copying torch/include/ATen/ops/special_entr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9011090Z copying torch/include/ATen/ops/_foreach_lgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9012310Z copying torch/include/ATen/ops/any_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9019320Z copying torch/include/ATen/ops/_add_batch_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9020550Z copying torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9028410Z copying torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9029690Z copying torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9031160Z copying torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9036700Z copying torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9037920Z copying torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9039290Z copying torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9044360Z copying torch/include/ATen/ops/linalg_cholesky_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9046040Z 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-11-03T15:55:33.9047810Z 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-11-03T15:55:33.9054260Z copying torch/include/ATen/ops/geqrf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9055320Z copying torch/include/ATen/ops/fft_rfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9061470Z copying torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9062900Z copying torch/include/ATen/ops/special_entr_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9070050Z copying torch/include/ATen/ops/empty_like_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9071100Z copying torch/include/ATen/ops/slow_conv3d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9075510Z copying torch/include/ATen/ops/qr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9078690Z copying torch/include/ATen/ops/linalg_cholesky.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9082470Z copying torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9083840Z copying torch/include/ATen/ops/lerp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9089720Z copying torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9092040Z copying torch/include/ATen/ops/masked_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9097460Z copying torch/include/ATen/ops/flip_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9098900Z copying torch/include/ATen/ops/topk_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9105500Z copying torch/include/ATen/ops/_neg_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9106500Z copying torch/include/ATen/ops/silu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9108030Z copying torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9114210Z copying torch/include/ATen/ops/col_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9115420Z 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-11-03T15:55:33.9122460Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9123370Z copying torch/include/ATen/ops/rand_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9130180Z copying torch/include/ATen/ops/_foobar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9131200Z copying torch/include/ATen/ops/histogram_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9132610Z copying torch/include/ATen/ops/all_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9137580Z copying torch/include/ATen/ops/native_channel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9139110Z copying torch/include/ATen/ops/vdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9145660Z copying torch/include/ATen/ops/_grouped_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9147050Z copying torch/include/ATen/ops/slow_conv_dilated3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9148460Z copying torch/include/ATen/ops/any_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9154190Z 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-11-03T15:55:33.9155450Z copying torch/include/ATen/ops/_sparse_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9161770Z copying torch/include/ATen/ops/avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9163280Z copying torch/include/ATen/ops/_dirichlet_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9169730Z copying torch/include/ATen/ops/_coalesced_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9171020Z copying torch/include/ATen/ops/baddbmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9172530Z 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-11-03T15:55:33.9177500Z copying torch/include/ATen/ops/trace_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9179930Z copying torch/include/ATen/ops/nextafter_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9181370Z 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-11-03T15:55:33.9187750Z copying torch/include/ATen/ops/softshrink_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9188730Z copying torch/include/ATen/ops/native_dropout_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9195250Z copying torch/include/ATen/ops/_native_multi_head_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9196380Z 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-11-03T15:55:33.9203390Z copying torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9204240Z copying torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9205810Z 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-11-03T15:55:33.9210920Z copying torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9211950Z copying torch/include/ATen/ops/renorm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9219060Z 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-11-03T15:55:33.9220060Z copying torch/include/ATen/ops/t_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9227040Z copying torch/include/ATen/ops/unsafe_split_with_sizes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9228000Z copying torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9229360Z copying torch/include/ATen/ops/fmin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9234250Z copying torch/include/ATen/ops/_sparse_sum_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9236500Z copying torch/include/ATen/ops/special_sinc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9241930Z copying torch/include/ATen/ops/nll_loss_nd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9243020Z copying torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9244440Z copying torch/include/ATen/ops/_softmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9250620Z copying torch/include/ATen/ops/miopen_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9251910Z copying torch/include/ATen/ops/angle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9258610Z copying torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9259540Z copying torch/include/ATen/ops/gather_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9267010Z copying torch/include/ATen/ops/reflection_pad3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9267960Z copying torch/include/ATen/ops/relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9269530Z copying torch/include/ATen/ops/poisson_nll_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9272190Z copying torch/include/ATen/ops/bitwise_not_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9280630Z copying torch/include/ATen/ops/item_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9282270Z copying torch/include/ATen/ops/_native_batch_norm_legit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9286220Z copying torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9290040Z copying torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9293050Z copying torch/include/ATen/ops/special_legendre_polynomial_p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9294490Z copying torch/include/ATen/ops/cudnn_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9298790Z 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-11-03T15:55:33.9301750Z 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-11-03T15:55:33.9304800Z copying torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9308090Z 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-11-03T15:55:33.9309040Z copying torch/include/ATen/ops/pixel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9312770Z copying torch/include/ATen/ops/rshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9316260Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9318750Z copying torch/include/ATen/ops/batch_norm_update_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9326120Z copying torch/include/ATen/ops/squeeze_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9330240Z copying torch/include/ATen/ops/special_i0e_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9331600Z 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-11-03T15:55:33.9335570Z copying torch/include/ATen/ops/mish.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9339540Z copying torch/include/ATen/ops/subtract.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9342620Z copying torch/include/ATen/ops/trunc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9344220Z copying torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9349130Z copying torch/include/ATen/ops/amin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9351490Z copying torch/include/ATen/ops/amin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9356040Z copying torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9358400Z copying torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9363630Z copying torch/include/ATen/ops/miopen_convolution_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9364930Z copying torch/include/ATen/ops/indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9371320Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9372370Z copying torch/include/ATen/ops/_reshape_from_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9379480Z copying torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9380660Z copying torch/include/ATen/ops/blackman_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9382060Z copying torch/include/ATen/ops/batch_norm_elemt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9386980Z 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-11-03T15:55:33.9388420Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9393990Z copying torch/include/ATen/ops/_sobol_engine_ff_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9396540Z copying torch/include/ATen/ops/dense_dim_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9402000Z copying torch/include/ATen/ops/sort_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9403060Z copying torch/include/ATen/ops/logit_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9404440Z copying torch/include/ATen/ops/_cummax_helper_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9410510Z copying torch/include/ATen/ops/cat_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9411860Z copying torch/include/ATen/ops/le_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9418690Z copying torch/include/ATen/ops/mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9420080Z copying torch/include/ATen/ops/is_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9426740Z copying torch/include/ATen/ops/fft_ihfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9427630Z copying torch/include/ATen/ops/mode_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9429100Z copying torch/include/ATen/ops/segment_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9434640Z copying torch/include/ATen/ops/detach_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9435690Z copying torch/include/ATen/ops/_triton_multi_head_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9443120Z copying torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9443830Z copying torch/include/ATen/ops/corrcoef_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9451060Z copying torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9452190Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9453530Z copying torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9458610Z copying torch/include/ATen/ops/unflatten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9459970Z copying torch/include/ATen/ops/avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9466670Z copying torch/include/ATen/ops/ldexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9468100Z copying torch/include/ATen/ops/special_log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9469530Z copying torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9475550Z copying torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9476440Z copying torch/include/ATen/ops/le_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9481080Z copying torch/include/ATen/ops/threshold_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9486110Z copying torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9490880Z copying torch/include/ATen/ops/align_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9493080Z copying torch/include/ATen/ops/linspace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9494360Z copying torch/include/ATen/ops/_nested_get_ragged_idx_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9500800Z 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-11-03T15:55:33.9501680Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9507430Z copying torch/include/ATen/ops/narrow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9508940Z copying torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9515280Z copying torch/include/ATen/ops/hspmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9516650Z copying torch/include/ATen/ops/_saturate_weight_to_fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9518110Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9523270Z copying torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9524630Z copying torch/include/ATen/ops/var_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9530310Z copying torch/include/ATen/ops/erfinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9537450Z copying torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9538670Z 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-11-03T15:55:33.9540020Z copying torch/include/ATen/ops/dot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9541420Z copying torch/include/ATen/ops/sparse_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9547900Z copying torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9549050Z copying torch/include/ATen/ops/resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9555860Z 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-11-03T15:55:33.9556920Z copying torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9563470Z copying torch/include/ATen/ops/erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9564510Z copying torch/include/ATen/ops/logical_not_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9565970Z 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-11-03T15:55:33.9570630Z copying torch/include/ATen/ops/to_sparse_bsr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9573080Z copying torch/include/ATen/ops/digamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9578470Z copying torch/include/ATen/ops/lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9579390Z copying torch/include/ATen/ops/digamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9581230Z copying torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9587170Z copying torch/include/ATen/ops/col_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9588350Z copying torch/include/ATen/ops/tile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9594980Z copying torch/include/ATen/ops/mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9596470Z copying torch/include/ATen/ops/movedim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9602800Z copying torch/include/ATen/ops/bincount_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9603920Z copying torch/include/ATen/ops/tril_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9605290Z copying torch/include/ATen/ops/logical_xor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9610720Z copying torch/include/ATen/ops/_nested_view_from_jagged_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9611700Z copying torch/include/ATen/ops/matrix_H_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9618480Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9619810Z copying torch/include/ATen/ops/bitwise_not_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9626580Z copying torch/include/ATen/ops/_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9627480Z copying torch/include/ATen/ops/addbmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9628910Z copying torch/include/ATen/ops/sym_storage_offset_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9633540Z copying torch/include/ATen/ops/ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9634850Z copying torch/include/ATen/ops/quantized_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9640760Z copying torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9642180Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9648340Z copying torch/include/ATen/ops/eq_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9649590Z copying torch/include/ATen/ops/angle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9651080Z copying torch/include/ATen/ops/take_along_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9658350Z copying torch/include/ATen/ops/_dimI_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9659520Z copying torch/include/ATen/ops/atan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9666080Z copying torch/include/ATen/ops/unfold_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9667090Z copying torch/include/ATen/ops/_sparse_sparse_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9674430Z copying torch/include/ATen/ops/_debug_has_internal_overlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9675660Z 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-11-03T15:55:33.9677040Z copying torch/include/ATen/ops/special_ndtri_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9683150Z 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-11-03T15:55:33.9684140Z copying torch/include/ATen/ops/resize_as_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9692780Z copying torch/include/ATen/ops/to_mkldnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9693880Z copying torch/include/ATen/ops/le.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9695220Z copying torch/include/ATen/ops/fft_ihfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9697640Z copying torch/include/ATen/ops/lstm_mps_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9702370Z copying torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9703340Z copying torch/include/ATen/ops/transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9707010Z copying torch/include/ATen/ops/meshgrid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9710760Z 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-11-03T15:55:33.9711810Z copying torch/include/ATen/ops/_cudnn_rnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9716770Z copying torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9724400Z copying torch/include/ATen/ops/_fused_adam_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9725740Z copying torch/include/ATen/ops/copy_sparse_to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9728340Z copying torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9733630Z copying torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9737150Z copying torch/include/ATen/ops/special_gammainc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9740880Z copying torch/include/ATen/ops/embedding_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9742140Z copying torch/include/ATen/ops/adaptive_max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9746140Z copying torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9749880Z copying torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9753720Z copying torch/include/ATen/ops/fft_hfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9754740Z copying torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9759210Z copying torch/include/ATen/ops/split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9762380Z copying torch/include/ATen/ops/empty_permuted.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9766770Z copying torch/include/ATen/ops/smm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9767850Z copying torch/include/ATen/ops/_foreach_expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9772030Z copying torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9776290Z copying torch/include/ATen/ops/is_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9780630Z copying torch/include/ATen/ops/fft_fftshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9783930Z copying torch/include/ATen/ops/_convolution_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9784910Z copying torch/include/ATen/ops/diagonal_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9790030Z 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-11-03T15:55:33.9792450Z copying torch/include/ATen/ops/_unique_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9797730Z copying torch/include/ATen/ops/cdist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9799090Z copying torch/include/ATen/ops/conv_tbc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9801400Z copying torch/include/ATen/ops/triangular_solve_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9806620Z copying torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9807600Z copying torch/include/ATen/ops/unique_dim_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9814490Z copying torch/include/ATen/ops/searchsorted_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9815480Z copying torch/include/ATen/ops/logspace_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9822610Z copying torch/include/ATen/ops/record_stream_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9823620Z copying torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9825100Z copying torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9830220Z copying torch/include/ATen/ops/zero_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9831640Z copying torch/include/ATen/ops/frac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9837970Z copying torch/include/ATen/ops/binomial_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9839190Z copying torch/include/ATen/ops/fft_ihfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9845770Z copying torch/include/ATen/ops/amin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9847080Z copying torch/include/ATen/ops/hamming_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9848650Z copying torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9853700Z 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-11-03T15:55:33.9854640Z copying torch/include/ATen/ops/indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9860840Z copying torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9863310Z copying torch/include/ATen/ops/bitwise_and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9868500Z copying torch/include/ATen/ops/searchsorted_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9869390Z copying torch/include/ATen/ops/histc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9871880Z copying torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9878310Z copying torch/include/ATen/ops/is_pinned_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9879260Z copying torch/include/ATen/ops/empty_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9886040Z copying torch/include/ATen/ops/cholesky_inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9887040Z 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-11-03T15:55:33.9891630Z 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-11-03T15:55:33.9893480Z copying torch/include/ATen/ops/arctanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9894710Z copying torch/include/ATen/ops/alias_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9901250Z copying torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9902450Z copying torch/include/ATen/ops/linalg_pinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9908700Z copying torch/include/ATen/ops/instance_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9910260Z copying torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9916790Z copying torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9917740Z copying torch/include/ATen/ops/erf_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9919230Z copying torch/include/ATen/ops/scatter_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9925350Z copying torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9926250Z copying torch/include/ATen/ops/kron_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9933350Z copying torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9934280Z copying torch/include/ATen/ops/arctan2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9935680Z copying torch/include/ATen/ops/eye.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9941180Z copying torch/include/ATen/ops/_foreach_log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9942150Z copying torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9949400Z copying torch/include/ATen/ops/_foreach_sqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9950510Z copying torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9951760Z copying torch/include/ATen/ops/silu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9957570Z 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-11-03T15:55:33.9958980Z copying torch/include/ATen/ops/nll_loss2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9965720Z copying torch/include/ATen/ops/rnn_relu_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9967030Z copying torch/include/ATen/ops/bitwise_or_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9968470Z copying torch/include/ATen/ops/bartlett_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9973300Z copying torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9974820Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9980880Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9982440Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9989070Z 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-11-03T15:55:33.9989840Z copying torch/include/ATen/ops/empty_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9991270Z copying torch/include/ATen/ops/_linalg_check_errors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9997390Z copying torch/include/ATen/ops/cudnn_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:33.9998310Z copying torch/include/ATen/ops/_gather_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0004720Z copying torch/include/ATen/ops/empty_strided_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0006350Z copying torch/include/ATen/ops/view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0012610Z copying torch/include/ATen/ops/special_entr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0013610Z copying torch/include/ATen/ops/sinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0015060Z copying torch/include/ATen/ops/_nested_from_padded_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0020010Z copying torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0021050Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0027990Z 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-11-03T15:55:34.0029410Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0035970Z copying torch/include/ATen/ops/frac_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0037000Z copying torch/include/ATen/ops/special_i1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0038510Z 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-11-03T15:55:34.0043520Z copying torch/include/ATen/ops/_foreach_tan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0044480Z copying torch/include/ATen/ops/tan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0050750Z copying torch/include/ATen/ops/frobenius_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0053110Z copying torch/include/ATen/ops/linalg_matrix_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0058680Z copying torch/include/ATen/ops/sgn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0059750Z copying torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0061420Z copying torch/include/ATen/ops/_trilinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0068360Z copying torch/include/ATen/ops/glu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0069610Z copying torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0077890Z copying torch/include/ATen/ops/cudnn_convolution_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0079100Z copying torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0086310Z copying torch/include/ATen/ops/as_strided_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0087350Z copying torch/include/ATen/ops/_test_optional_floatlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0088790Z 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-11-03T15:55:34.0090190Z copying torch/include/ATen/ops/sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0091660Z copying torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0094140Z copying torch/include/ATen/ops/special_xlog1py.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0097980Z 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-11-03T15:55:34.0101810Z copying torch/include/ATen/ops/inner_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0102850Z copying torch/include/ATen/ops/elu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0106260Z copying torch/include/ATen/ops/_foreach_round_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0110820Z copying torch/include/ATen/ops/equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0116260Z copying torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0120320Z copying torch/include/ATen/ops/linalg_lu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0124620Z copying torch/include/ATen/ops/unbind_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0129940Z copying torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0132330Z copying torch/include/ATen/ops/_to_sparse_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0137960Z copying torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0138890Z copying torch/include/ATen/ops/_pin_memory_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0140800Z copying torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0147540Z copying torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0148490Z copying torch/include/ATen/ops/linalg_det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0154970Z copying torch/include/ATen/ops/chalf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0156620Z copying torch/include/ATen/ops/_sobol_engine_scramble_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0162690Z copying torch/include/ATen/ops/floor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0163830Z copying torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0165160Z copying torch/include/ATen/ops/special_polygamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0169820Z copying torch/include/ATen/ops/values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0171280Z copying torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0178030Z 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-11-03T15:55:34.0179440Z copying torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0186100Z copying torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0187350Z copying torch/include/ATen/ops/gelu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0188410Z copying torch/include/ATen/ops/adaptive_avg_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0194000Z copying torch/include/ATen/ops/cumsum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0195000Z copying torch/include/ATen/ops/bernoulli_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0201020Z copying torch/include/ATen/ops/_assert_async_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0203410Z copying torch/include/ATen/ops/isposinf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0209150Z 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-11-03T15:55:34.0210190Z copying torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0211640Z copying torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0216420Z copying torch/include/ATen/ops/special_i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0217880Z copying torch/include/ATen/ops/linalg_cond_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0224160Z copying torch/include/ATen/ops/to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0226360Z copying torch/include/ATen/ops/_linalg_svd_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0231610Z copying torch/include/ATen/ops/angle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0233150Z copying torch/include/ATen/ops/softplus_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0234850Z copying torch/include/ATen/ops/allclose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0240580Z copying torch/include/ATen/ops/special_i1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0241430Z copying torch/include/ATen/ops/_embedding_bag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0247880Z copying torch/include/ATen/ops/kaiser_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0249370Z copying torch/include/ATen/ops/_unpack_dual_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0255510Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0256800Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0258240Z 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-11-03T15:55:34.0263550Z copying torch/include/ATen/ops/clamp_min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0264890Z copying torch/include/ATen/ops/expand_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0271640Z 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-11-03T15:55:34.0274090Z copying torch/include/ATen/ops/binary_cross_entropy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0279790Z 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-11-03T15:55:34.0281180Z copying torch/include/ATen/ops/_debug_has_internal_overlap_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0282580Z copying torch/include/ATen/ops/values_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0288230Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0289220Z copying torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0295850Z copying torch/include/ATen/ops/soft_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0296690Z copying torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0298230Z 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-11-03T15:55:34.0304710Z copying torch/include/ATen/ops/special_modified_bessel_k1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0305900Z copying torch/include/ATen/ops/rsqrt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0312190Z copying torch/include/ATen/ops/to_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0313600Z copying torch/include/ATen/ops/fmin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0320370Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0321590Z copying torch/include/ATen/ops/scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0323070Z copying torch/include/ATen/ops/scaled_dot_product_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0328490Z copying torch/include/ATen/ops/mode_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0329860Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0336000Z copying torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0337570Z copying torch/include/ATen/ops/masked_select_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0339150Z copying torch/include/ATen/ops/_foreach_rsqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0344540Z copying torch/include/ATen/ops/_test_ambiguous_defaults.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0345720Z copying torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0351960Z copying torch/include/ATen/ops/mul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0353580Z copying torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0359870Z copying torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0361250Z 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-11-03T15:55:34.0362810Z copying torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0367720Z copying torch/include/ATen/ops/_nested_from_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0369480Z copying torch/include/ATen/ops/upsample_nearest2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0375930Z copying torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0376920Z copying torch/include/ATen/ops/sparse_csc_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0378300Z copying torch/include/ATen/ops/gcd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0383610Z copying torch/include/ATen/ops/_dimV.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0385020Z copying torch/include/ATen/ops/batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0392330Z 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-11-03T15:55:34.0393360Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0394740Z copying torch/include/ATen/ops/native_layer_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0399510Z copying torch/include/ATen/ops/special_ndtr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0401650Z copying torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0407120Z copying torch/include/ATen/ops/retain_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0408560Z copying torch/include/ATen/ops/asin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0415590Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0416930Z copying torch/include/ATen/ops/column_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0418430Z copying torch/include/ATen/ops/_weight_int8pack_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0423020Z copying torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0425030Z copying torch/include/ATen/ops/_flash_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0430440Z 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-11-03T15:55:34.0432540Z copying torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0438860Z copying torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0439810Z copying torch/include/ATen/ops/logit_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0441430Z copying torch/include/ATen/ops/log_normal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0447420Z copying torch/include/ATen/ops/qr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0448980Z copying torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0455390Z copying torch/include/ATen/ops/trunc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0456420Z copying torch/include/ATen/ops/miopen_rnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0463090Z 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-11-03T15:55:34.0464100Z copying torch/include/ATen/ops/_foreach_sub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0465530Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0471780Z copying torch/include/ATen/ops/_wrapped_linear_prepack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0472730Z copying torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0481740Z copying torch/include/ATen/ops/clamp_min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0482730Z copying torch/include/ATen/ops/is_leaf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0484290Z 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-11-03T15:55:34.0486160Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0489050Z copying torch/include/ATen/ops/ldexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0490470Z copying torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0492010Z 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-11-03T15:55:34.0497960Z copying torch/include/ATen/ops/upsample_nearest3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0503390Z copying torch/include/ATen/ops/bmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0505460Z copying torch/include/ATen/ops/linalg_inv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0511990Z copying torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0513190Z copying torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0514580Z 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-11-03T15:55:34.0521670Z copying torch/include/ATen/ops/_pack_padded_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0534660Z copying torch/include/ATen/ops/randperm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0538020Z copying torch/include/ATen/ops/index_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0539710Z copying torch/include/ATen/ops/lu_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0542270Z copying torch/include/ATen/ops/dense_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0543320Z copying torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0544670Z copying torch/include/ATen/ops/exp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0546280Z copying torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0547650Z copying torch/include/ATen/ops/margin_ranking_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0549940Z copying torch/include/ATen/ops/bitwise_right_shift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0551090Z copying torch/include/ATen/ops/sparse_csr_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0556610Z 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-11-03T15:55:34.0557330Z copying torch/include/ATen/ops/sqrt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0562650Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0564000Z copying torch/include/ATen/ops/index_fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0569820Z copying torch/include/ATen/ops/maximum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0571570Z copying torch/include/ATen/ops/asinh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0576130Z copying torch/include/ATen/ops/bitwise_not_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0578490Z copying torch/include/ATen/ops/random_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0584570Z copying torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0586340Z copying torch/include/ATen/ops/_foreach_expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0591170Z copying torch/include/ATen/ops/special_spherical_bessel_j0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0592180Z copying torch/include/ATen/ops/special_entr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0597530Z copying torch/include/ATen/ops/upsample_bilinear2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0598980Z copying torch/include/ATen/ops/erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0604730Z copying torch/include/ATen/ops/_cast_Char.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0606030Z copying torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0607370Z copying torch/include/ATen/ops/trace_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0613800Z copying torch/include/ATen/ops/hinge_embedding_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0614980Z copying torch/include/ATen/ops/bartlett_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0622080Z copying torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0623430Z copying torch/include/ATen/ops/indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0629050Z 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-11-03T15:55:34.0630170Z copying torch/include/ATen/ops/unsafe_chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0631900Z 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-11-03T15:55:34.0636780Z copying torch/include/ATen/ops/_dirichlet_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0637920Z copying torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0643510Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0645090Z copying torch/include/ATen/ops/glu_backward_jvp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0650510Z copying torch/include/ATen/ops/igammac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0652580Z 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-11-03T15:55:34.0657830Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0658970Z copying torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0661040Z copying torch/include/ATen/ops/reflection_pad3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0667070Z copying torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0670520Z copying torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0674700Z copying torch/include/ATen/ops/gt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0676290Z copying torch/include/ATen/ops/_nnpack_available_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0678520Z copying torch/include/ATen/ops/fft_fft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0683580Z 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-11-03T15:55:34.0686200Z copying torch/include/ATen/ops/relu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0687540Z copying torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0692610Z copying torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0695610Z copying torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0699860Z copying torch/include/ATen/ops/_shape_as_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0701340Z copying torch/include/ATen/ops/logical_and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0705490Z copying torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0709390Z copying torch/include/ATen/ops/diff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0714350Z copying torch/include/ATen/ops/round_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0716700Z copying torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0718140Z copying torch/include/ATen/ops/softplus_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0723690Z copying torch/include/ATen/ops/bincount_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0724800Z copying torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0731120Z copying torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0732120Z copying torch/include/ATen/ops/_mkldnn_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0738550Z copying torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0739580Z copying torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0746540Z copying torch/include/ATen/ops/grid_sampler_2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0747770Z copying torch/include/ATen/ops/hash_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0749190Z copying torch/include/ATen/ops/special_digamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0754860Z copying torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0755970Z 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-11-03T15:55:34.0762530Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0764000Z copying torch/include/ATen/ops/isposinf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0770590Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0771540Z 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-11-03T15:55:34.0772250Z copying torch/include/ATen/ops/floor_divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0777880Z copying torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0779540Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0786720Z copying torch/include/ATen/ops/_cast_Char_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0787890Z copying torch/include/ATen/ops/embedding_renorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0789290Z copying torch/include/ATen/ops/promote_types_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0795100Z 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-11-03T15:55:34.0796130Z copying torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0803270Z copying torch/include/ATen/ops/_to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0804120Z copying torch/include/ATen/ops/cov_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0805610Z copying torch/include/ATen/ops/greater_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0810480Z copying torch/include/ATen/ops/gather_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0813110Z copying torch/include/ATen/ops/scaled_dot_product_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0817770Z copying torch/include/ATen/ops/_is_all_true_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0819070Z copying torch/include/ATen/ops/nonzero_numpy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0821910Z copying torch/include/ATen/ops/masked_scatter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0827180Z copying torch/include/ATen/ops/hardsigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0828440Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0834120Z copying torch/include/ATen/ops/msort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0835880Z copying torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0841880Z copying torch/include/ATen/ops/hstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0843050Z copying torch/include/ATen/ops/_unique2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0844500Z copying torch/include/ATen/ops/divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0850780Z copying torch/include/ATen/ops/randn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0852020Z copying torch/include/ATen/ops/var_mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0858750Z copying torch/include/ATen/ops/special_xlog1py_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0859830Z copying torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0867660Z copying torch/include/ATen/ops/hardsigmoid_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0868820Z copying torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0870170Z copying torch/include/ATen/ops/_linalg_svd_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0871580Z copying torch/include/ATen/ops/_sparse_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0874810Z copying torch/include/ATen/ops/q_per_channel_axis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0878090Z copying torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0879690Z copying torch/include/ATen/ops/_fused_adamw_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0883110Z copying torch/include/ATen/ops/complex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0886050Z copying torch/include/ATen/ops/fix_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0888580Z copying torch/include/ATen/ops/upsample_bicubic2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0891600Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0900780Z copying torch/include/ATen/ops/cat_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0902270Z copying torch/include/ATen/ops/_empty_affine_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0908760Z copying torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0909690Z copying torch/include/ATen/ops/to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0911190Z copying torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0917190Z copying torch/include/ATen/ops/_foreach_div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0918350Z 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-11-03T15:55:34.0925360Z copying torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0926430Z copying torch/include/ATen/ops/segment_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0933630Z copying torch/include/ATen/ops/cos_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0935150Z copying torch/include/ATen/ops/linalg_tensorinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0936270Z copying torch/include/ATen/ops/fft_ifft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0942220Z 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-11-03T15:55:34.0943410Z copying torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0950590Z 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-11-03T15:55:34.0951780Z 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-11-03T15:55:34.0953230Z copying torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0958490Z copying torch/include/ATen/ops/sym_stride.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0960120Z copying torch/include/ATen/ops/special_hermite_polynomial_h_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0966780Z copying torch/include/ATen/ops/tan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0968130Z copying torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0970260Z 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-11-03T15:55:34.0974360Z copying torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0975750Z copying torch/include/ATen/ops/triu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0982160Z copying torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0983270Z copying torch/include/ATen/ops/hardshrink_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0984590Z copying torch/include/ATen/ops/argmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0990160Z copying torch/include/ATen/ops/softshrink_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0991610Z copying torch/include/ATen/ops/randn_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0997910Z copying torch/include/ATen/ops/histogram_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.0999550Z copying torch/include/ATen/ops/dstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1006060Z copying torch/include/ATen/ops/_to_sparse_csc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1007330Z copying torch/include/ATen/ops/binary_cross_entropy_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1008720Z copying torch/include/ATen/ops/_int_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1013890Z copying torch/include/ATen/ops/_lu_with_info_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1015480Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1021950Z 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-11-03T15:55:34.1023190Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1024450Z copying torch/include/ATen/ops/trace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1030860Z copying torch/include/ATen/ops/matrix_exp_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1032070Z copying torch/include/ATen/ops/indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1038390Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1039970Z 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-11-03T15:55:34.1046210Z copying torch/include/ATen/ops/_grouped_mm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1047350Z copying torch/include/ATen/ops/gru_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1048860Z copying torch/include/ATen/ops/_cudnn_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1054640Z copying torch/include/ATen/ops/elu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1056030Z copying torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1061750Z 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-11-03T15:55:34.1063410Z copying torch/include/ATen/ops/_test_warn_in_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1070030Z copying torch/include/ATen/ops/arcsin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1071390Z 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-11-03T15:55:34.1072810Z copying torch/include/ATen/ops/adaptive_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1077990Z copying torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1079440Z 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-11-03T15:55:34.1085900Z copying torch/include/ATen/ops/atleast_3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1087320Z copying torch/include/ATen/ops/kthvalue_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1088910Z copying torch/include/ATen/ops/_spsolve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1093770Z copying torch/include/ATen/ops/_foreach_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1094860Z copying torch/include/ATen/ops/smooth_l1_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1101420Z copying torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1103020Z copying torch/include/ATen/ops/to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1109610Z copying torch/include/ATen/ops/mkldnn_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1110890Z 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-11-03T15:55:34.1112160Z copying torch/include/ATen/ops/trapz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1116860Z copying torch/include/ATen/ops/_trilinear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1118670Z copying torch/include/ATen/ops/native_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1124260Z copying torch/include/ATen/ops/linear_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1126700Z copying torch/include/ATen/ops/_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1127880Z copying torch/include/ATen/ops/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1134440Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1135630Z copying torch/include/ATen/ops/randperm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1142940Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1150540Z copying torch/include/ATen/ops/less_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1151780Z copying torch/include/ATen/ops/mse_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1153100Z copying torch/include/ATen/ops/nll_loss2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1157860Z copying torch/include/ATen/ops/qscheme_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1159410Z copying torch/include/ATen/ops/cumprod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1167080Z copying torch/include/ATen/ops/bmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1174130Z copying torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1181540Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1189310Z copying torch/include/ATen/ops/blackman_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1190530Z copying torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1191950Z copying torch/include/ATen/ops/elu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1197420Z copying torch/include/ATen/ops/triu_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1198740Z copying torch/include/ATen/ops/conv_transpose3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1201430Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1207040Z copying torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1209910Z copying torch/include/ATen/ops/gelu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1215480Z copying torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1216630Z copying torch/include/ATen/ops/index_select_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1219550Z copying torch/include/ATen/ops/dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1224170Z copying torch/include/ATen/ops/lstm_mps_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1227090Z copying torch/include/ATen/ops/cartesian_prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1228440Z 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-11-03T15:55:34.1233860Z copying torch/include/ATen/ops/_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1236450Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1241390Z copying torch/include/ATen/ops/ormqr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1242840Z copying torch/include/ATen/ops/hardshrink_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1244810Z 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-11-03T15:55:34.1251030Z copying torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1252250Z copying torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1259630Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1261250Z copying torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1262830Z copying torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1264910Z copying torch/include/ATen/ops/channel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1266690Z 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-11-03T15:55:34.1270830Z copying torch/include/ATen/ops/indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1274770Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1275800Z copying torch/include/ATen/ops/ge_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1280070Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1282540Z copying torch/include/ATen/ops/minimum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1287760Z copying torch/include/ATen/ops/_dimI_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1288750Z copying torch/include/ATen/ops/resize_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1291550Z copying torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1297430Z copying torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1298440Z copying torch/include/ATen/ops/or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1305350Z copying torch/include/ATen/ops/is_same_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1306350Z copying torch/include/ATen/ops/cumsum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1313280Z copying torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1314220Z copying torch/include/ATen/ops/set_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1315630Z copying torch/include/ATen/ops/exponential_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1321330Z 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-11-03T15:55:34.1322440Z copying torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1329690Z copying torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1330470Z copying torch/include/ATen/ops/copysign_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1331800Z copying torch/include/ATen/ops/asin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1338330Z copying torch/include/ATen/ops/upsample_nearest3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1346170Z copying torch/include/ATen/ops/mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1347530Z copying torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1349600Z copying torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1354530Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1356740Z copying torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1358460Z copying torch/include/ATen/ops/_foreach_sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1363160Z copying torch/include/ATen/ops/alias_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1364610Z copying torch/include/ATen/ops/ormqr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1367590Z copying torch/include/ATen/ops/hash_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1372220Z copying torch/include/ATen/ops/hsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1376710Z copying torch/include/ATen/ops/hash_tensor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1380380Z copying torch/include/ATen/ops/heaviside_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1381460Z copying torch/include/ATen/ops/kaiser_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1386180Z copying torch/include/ATen/ops/fft_fftfreq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1388830Z copying torch/include/ATen/ops/greater_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1394030Z copying torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1395170Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1400870Z copying torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1402690Z 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-11-03T15:55:34.1408490Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1409630Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1411050Z copying torch/include/ATen/ops/asin_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1417810Z copying torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1419080Z copying torch/include/ATen/ops/special_modified_bessel_k0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1424890Z copying torch/include/ATen/ops/vsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1426390Z copying torch/include/ATen/ops/_linalg_eigh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1433130Z copying torch/include/ATen/ops/special_modified_bessel_i1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1434570Z copying torch/include/ATen/ops/nanmedian_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1435810Z copying torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1440880Z copying torch/include/ATen/ops/addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1441980Z copying torch/include/ATen/ops/atan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1448350Z copying torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1449930Z copying torch/include/ATen/ops/channel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1451440Z copying torch/include/ATen/ops/glu_jvp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1456440Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1458880Z copying torch/include/ATen/ops/mkldnn_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1464840Z copying torch/include/ATen/ops/_is_all_true.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1466270Z copying torch/include/ATen/ops/le_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1469240Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1474150Z copying torch/include/ATen/ops/polygamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1475490Z copying torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1477990Z copying torch/include/ATen/ops/index_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1483880Z copying torch/include/ATen/ops/max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1486540Z copying torch/include/ATen/ops/special_hermite_polynomial_he_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1491640Z copying torch/include/ATen/ops/_nested_get_values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1492620Z copying torch/include/ATen/ops/addmv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1494270Z copying torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1500480Z copying torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1501860Z 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-11-03T15:55:34.1507630Z copying torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1509740Z copying torch/include/ATen/ops/as_strided_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1515160Z 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-11-03T15:55:34.1516020Z copying torch/include/ATen/ops/embedding_bag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1518390Z copying torch/include/ATen/ops/flatten_dense_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1523140Z copying torch/include/ATen/ops/fft_hfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1524490Z copying torch/include/ATen/ops/mvlgamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1530630Z copying torch/include/ATen/ops/_cudnn_rnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1532190Z copying torch/include/ATen/ops/isreal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1538170Z copying torch/include/ATen/ops/cumprod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1539710Z copying torch/include/ATen/ops/logical_xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1541200Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1547320Z copying torch/include/ATen/ops/_unsafe_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1548640Z copying torch/include/ATen/ops/_conj_physical_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1554450Z copying torch/include/ATen/ops/cos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1555940Z copying torch/include/ATen/ops/fft_fftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1562240Z copying torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1563410Z copying torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1564830Z copying torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1571100Z copying torch/include/ATen/ops/rnn_tanh_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1572390Z copying torch/include/ATen/ops/_embedding_bag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1579120Z copying torch/include/ATen/ops/_weight_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1580330Z copying torch/include/ATen/ops/eq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1587010Z copying torch/include/ATen/ops/_efficient_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1588350Z copying torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1589660Z copying torch/include/ATen/ops/cumprod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1595540Z 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-11-03T15:55:34.1596630Z copying torch/include/ATen/ops/fmod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1603620Z copying torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1604740Z copying torch/include/ATen/ops/_fft_c2c.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1606760Z copying torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1611480Z copying torch/include/ATen/ops/_to_sparse_bsc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1612590Z copying torch/include/ATen/ops/pad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1618900Z copying torch/include/ATen/ops/special_modified_bessel_i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1620470Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1621900Z copying torch/include/ATen/ops/arcsinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1626870Z copying torch/include/ATen/ops/addr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1629340Z copying torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1634550Z copying torch/include/ATen/ops/cudnn_convolution_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1637030Z 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-11-03T15:55:34.1638770Z copying torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1643450Z copying torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1644930Z copying torch/include/ATen/ops/_fused_rms_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1646380Z copying torch/include/ATen/ops/lu_unpack_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1652100Z copying torch/include/ATen/ops/_coalesced_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1655750Z copying torch/include/ATen/ops/_scaled_grouped_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1658190Z copying torch/include/ATen/ops/special_erfcx_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1660370Z copying torch/include/ATen/ops/var_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1665680Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1668610Z copying torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1672450Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1674210Z copying torch/include/ATen/ops/_triton_multi_head_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1677930Z copying torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1681580Z copying torch/include/ATen/ops/var_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1687190Z copying torch/include/ATen/ops/tanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1688800Z copying torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1695750Z copying torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1696800Z copying torch/include/ATen/ops/lgamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1698330Z copying torch/include/ATen/ops/_scaled_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1703050Z copying torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1704470Z copying torch/include/ATen/ops/to_mkldnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1711260Z copying torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1712370Z 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-11-03T15:55:34.1719580Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1720670Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1722040Z copying torch/include/ATen/ops/replication_pad3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1732270Z copying torch/include/ATen/ops/bmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1732870Z copying torch/include/ATen/ops/_to_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1734230Z copying torch/include/ATen/ops/batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1735640Z copying torch/include/ATen/ops/log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1742710Z copying torch/include/ATen/ops/igamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1744000Z 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-11-03T15:55:34.1745300Z copying torch/include/ATen/ops/new_full.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1750000Z copying torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1752150Z copying torch/include/ATen/ops/embedding_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1758130Z copying torch/include/ATen/ops/linalg_slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1759310Z copying torch/include/ATen/ops/fft_rfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1761800Z copying torch/include/ATen/ops/_foreach_atan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1767120Z copying torch/include/ATen/ops/clip.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1768510Z copying torch/include/ATen/ops/reshape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1774860Z copying torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1776570Z copying torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1782760Z copying torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1784010Z copying torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1785400Z copying torch/include/ATen/ops/_cslt_sparse_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1790100Z copying torch/include/ATen/ops/isneginf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1791660Z copying torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1798740Z 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-11-03T15:55:34.1799860Z copying torch/include/ATen/ops/view_as_complex_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1805900Z copying torch/include/ATen/ops/mvlgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1807120Z copying torch/include/ATen/ops/permute_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1808590Z copying torch/include/ATen/ops/sgn_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1813140Z copying torch/include/ATen/ops/sign_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1816270Z 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-11-03T15:55:34.1820940Z copying torch/include/ATen/ops/atan_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1822070Z copying torch/include/ATen/ops/reflection_pad2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1825560Z copying torch/include/ATen/ops/_foreach_minimum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1830510Z copying torch/include/ATen/ops/int_repr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1831660Z copying torch/include/ATen/ops/heaviside_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1834760Z copying torch/include/ATen/ops/column_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1839530Z copying torch/include/ATen/ops/scatter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1843160Z copying torch/include/ATen/ops/minimum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1847240Z copying torch/include/ATen/ops/to_sparse_bsc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1848640Z copying torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1851670Z copying torch/include/ATen/ops/from_file_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1856090Z copying torch/include/ATen/ops/miopen_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1859950Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1863220Z copying torch/include/ATen/ops/sinc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1864560Z copying torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1869610Z copying torch/include/ATen/ops/real_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1872110Z copying torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1877420Z 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-11-03T15:55:34.1878630Z copying torch/include/ATen/ops/align_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1881190Z copying torch/include/ATen/ops/acos_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1887330Z copying torch/include/ATen/ops/minimum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1889280Z copying torch/include/ATen/ops/special_bessel_y0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1895100Z copying torch/include/ATen/ops/sspaddmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1896400Z 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-11-03T15:55:34.1898090Z copying torch/include/ATen/ops/logdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1903930Z copying torch/include/ATen/ops/cauchy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1906370Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1911520Z copying torch/include/ATen/ops/is_vulkan_available_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1912860Z copying torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1914170Z copying torch/include/ATen/ops/gt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1950730Z copying torch/include/ATen/ops/ccol_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1951960Z copying torch/include/ATen/ops/normal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1956810Z copying torch/include/ATen/ops/cudnn_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1958320Z copying torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1959950Z 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-11-03T15:55:34.1962080Z copying torch/include/ATen/ops/_to_sparse_bsc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1962970Z copying torch/include/ATen/ops/linalg_eigh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1964570Z copying torch/include/ATen/ops/upsample_bilinear2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1966130Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1967600Z copying torch/include/ATen/ops/rnn_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1969130Z copying torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1970840Z copying torch/include/ATen/ops/replication_pad1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1972350Z copying torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1973830Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1975370Z copying torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1976790Z copying torch/include/ATen/ops/sym_constrain_range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1978450Z copying torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1979850Z copying torch/include/ATen/ops/leaky_relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1981490Z copying torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1983040Z 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-11-03T15:55:34.1984700Z copying torch/include/ATen/ops/linalg_ldl_factor_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1988840Z copying torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1991930Z copying torch/include/ATen/ops/heaviside_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1995200Z copying torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.1999160Z copying torch/include/ATen/ops/histc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2002260Z copying torch/include/ATen/ops/_pad_packed_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2006150Z 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-11-03T15:55:34.2007450Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2010920Z copying torch/include/ATen/ops/square.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2014380Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2019160Z copying torch/include/ATen/ops/diagflat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2021960Z copying torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2026160Z 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-11-03T15:55:34.2027240Z copying torch/include/ATen/ops/prod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2033080Z copying torch/include/ATen/ops/cdist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2034320Z copying torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2040560Z copying torch/include/ATen/ops/special_expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2041420Z copying torch/include/ATen/ops/atleast_1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2049060Z copying torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2050390Z copying torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2053450Z copying torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2055710Z copying torch/include/ATen/ops/conv_transpose1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2057240Z copying torch/include/ATen/ops/_assert_async_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2058390Z copying torch/include/ATen/ops/fft_rfftfreq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2062060Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2063500Z copying torch/include/ATen/ops/cummax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2069580Z copying torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2071090Z copying torch/include/ATen/ops/normal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2077130Z copying torch/include/ATen/ops/leaky_relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2078650Z copying torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2084490Z copying torch/include/ATen/ops/cumsum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2085700Z copying torch/include/ATen/ops/reflection_pad2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2087250Z copying torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2093750Z copying torch/include/ATen/ops/histogram_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2094970Z copying torch/include/ATen/ops/_foreach_acos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2101610Z copying torch/include/ATen/ops/softshrink_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2103290Z 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-11-03T15:55:34.2108910Z copying torch/include/ATen/ops/amin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2110530Z copying torch/include/ATen/ops/_foreach_log_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2111980Z copying torch/include/ATen/ops/linalg_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2116100Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2117550Z copying torch/include/ATen/ops/linalg_matrix_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2123630Z copying torch/include/ATen/ops/avg_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2125200Z copying torch/include/ATen/ops/unfold_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2131260Z copying torch/include/ATen/ops/_batch_norm_no_update_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2132450Z copying torch/include/ATen/ops/sigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2133910Z copying torch/include/ATen/ops/clamp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2140580Z copying torch/include/ATen/ops/norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2141700Z copying torch/include/ATen/ops/trunc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2147930Z copying torch/include/ATen/ops/linalg_qr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2149670Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2156620Z copying torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2157470Z 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-11-03T15:55:34.2158920Z copying torch/include/ATen/ops/avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2163940Z copying torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2165200Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2170990Z copying torch/include/ATen/ops/lt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2172370Z copying torch/include/ATen/ops/scatter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2174570Z copying torch/include/ATen/ops/crow_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2180730Z copying torch/include/ATen/ops/to_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2181690Z copying torch/include/ATen/ops/minimum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2188010Z copying torch/include/ATen/ops/pixel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2190530Z 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-11-03T15:55:34.2195160Z copying torch/include/ATen/ops/view_as_complex_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2197320Z copying torch/include/ATen/ops/_foreach_clamp_min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2198790Z copying torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2203350Z 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-11-03T15:55:34.2204930Z copying torch/include/ATen/ops/special_expit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2210990Z copying torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2212090Z copying torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2218670Z copying torch/include/ATen/ops/lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2219690Z copying torch/include/ATen/ops/binary_cross_entropy_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2226730Z copying torch/include/ATen/ops/elu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2227760Z 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-11-03T15:55:34.2229070Z copying torch/include/ATen/ops/rename.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2233930Z copying torch/include/ATen/ops/addbmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2235530Z copying torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2242200Z 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-11-03T15:55:34.2243690Z 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-11-03T15:55:34.2245150Z copying torch/include/ATen/ops/xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2249930Z 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-11-03T15:55:34.2251350Z copying torch/include/ATen/ops/max_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2257810Z copying torch/include/ATen/ops/log2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2259240Z copying torch/include/ATen/ops/sub_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2266390Z copying torch/include/ATen/ops/view_as_real_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2267410Z copying torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2268950Z copying torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2274400Z copying torch/include/ATen/ops/norm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2275390Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2282000Z 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-11-03T15:55:34.2283390Z copying torch/include/ATen/ops/empty_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2289360Z 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-11-03T15:55:34.2290650Z copying torch/include/ATen/ops/native_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2292060Z copying torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2297570Z copying torch/include/ATen/ops/_is_zerotensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2298940Z copying torch/include/ATen/ops/_log_softmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2305810Z copying torch/include/ATen/ops/col_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2306800Z copying torch/include/ATen/ops/diagonal_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2313750Z copying torch/include/ATen/ops/index_select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2314620Z copying torch/include/ATen/ops/gt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2316080Z copying torch/include/ATen/ops/vander.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2321460Z 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-11-03T15:55:34.2323890Z copying torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2329100Z copying torch/include/ATen/ops/_unsafe_masked_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2330140Z copying torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2331600Z copying torch/include/ATen/ops/native_norm_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2337240Z 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-11-03T15:55:34.2338270Z copying torch/include/ATen/ops/signbit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2344820Z copying torch/include/ATen/ops/_foreach_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2347240Z copying torch/include/ATen/ops/add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2352940Z copying torch/include/ATen/ops/_addmm_activation_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2354360Z copying torch/include/ATen/ops/maximum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2355930Z copying torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2360710Z copying torch/include/ATen/ops/elu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2361750Z copying torch/include/ATen/ops/quantized_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2368500Z copying torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2369810Z copying torch/include/ATen/ops/tril_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2376560Z copying torch/include/ATen/ops/special_bessel_j0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2377960Z copying torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2379390Z copying torch/include/ATen/ops/_test_optional_floatlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2384670Z copying torch/include/ATen/ops/_lazy_clone_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2386140Z copying torch/include/ATen/ops/silu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2392290Z copying torch/include/ATen/ops/_slow_conv2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2393820Z copying torch/include/ATen/ops/avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2395320Z copying torch/include/ATen/ops/result_type_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2400810Z copying torch/include/ATen/ops/lcm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2401870Z copying torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2408620Z 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-11-03T15:55:34.2409940Z copying torch/include/ATen/ops/special_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2416630Z 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-11-03T15:55:34.2417600Z copying torch/include/ATen/ops/_make_dep_token_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2419010Z copying torch/include/ATen/ops/special_zeta_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2424390Z copying torch/include/ATen/ops/poisson_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2425730Z copying torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2432750Z copying torch/include/ATen/ops/_pad_packed_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2434140Z copying torch/include/ATen/ops/fft_irfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2441270Z copying torch/include/ATen/ops/softshrink_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2442100Z copying torch/include/ATen/ops/sum_to_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2443570Z copying torch/include/ATen/ops/trunc_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2448920Z copying torch/include/ATen/ops/transpose_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2449940Z copying torch/include/ATen/ops/trace_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2456500Z copying torch/include/ATen/ops/fft_rfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2457940Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2459500Z copying torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2464500Z copying torch/include/ATen/ops/one_hot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2466080Z copying torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2473140Z copying torch/include/ATen/ops/_to_sparse_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2473970Z copying torch/include/ATen/ops/atleast_2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2475490Z copying torch/include/ATen/ops/argmin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2480840Z copying torch/include/ATen/ops/_nested_from_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2482210Z copying torch/include/ATen/ops/randint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2488490Z 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-11-03T15:55:34.2490970Z copying torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2492000Z copying torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2497960Z copying torch/include/ATen/ops/smooth_l1_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2499000Z copying torch/include/ATen/ops/broadcast_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2504960Z copying torch/include/ATen/ops/mkldnn_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2505910Z copying torch/include/ATen/ops/sym_constrain_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2507450Z copying torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2514290Z copying torch/include/ATen/ops/fft_fftshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2515240Z copying torch/include/ATen/ops/glu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2521890Z copying torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2523220Z copying torch/include/ATen/ops/diag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2529630Z copying torch/include/ATen/ops/mse_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2530700Z copying torch/include/ATen/ops/gather_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2532080Z copying torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2537320Z copying torch/include/ATen/ops/median.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2538460Z copying torch/include/ATen/ops/rnn_relu_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2545900Z copying torch/include/ATen/ops/cummin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2547370Z copying torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2554340Z copying torch/include/ATen/ops/cummax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2555370Z copying torch/include/ATen/ops/native_layer_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2556720Z copying torch/include/ATen/ops/view_as_complex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2562240Z copying torch/include/ATen/ops/igammac_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2563760Z copying torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2565340Z copying torch/include/ATen/ops/linalg_qr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2569760Z 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-11-03T15:55:34.2572080Z copying torch/include/ATen/ops/celu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2578620Z copying torch/include/ATen/ops/_functional_assert_scalar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2580060Z copying torch/include/ATen/ops/addr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2581410Z copying torch/include/ATen/ops/where.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2586460Z copying torch/include/ATen/ops/empty_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2588210Z copying torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2594150Z copying torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2596540Z copying torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2601730Z copying torch/include/ATen/ops/hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2603150Z 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-11-03T15:55:34.2604550Z copying torch/include/ATen/ops/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2611160Z copying torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2612140Z copying torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2619350Z copying torch/include/ATen/ops/sym_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2620310Z copying torch/include/ATen/ops/fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2626590Z copying torch/include/ATen/ops/relu6.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2627530Z copying torch/include/ATen/ops/_coalesce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2629080Z copying torch/include/ATen/ops/bitwise_right_shift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2635620Z copying torch/include/ATen/ops/nextafter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2636650Z copying torch/include/ATen/ops/reflection_pad3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2643030Z copying torch/include/ATen/ops/nonzero_static_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2644400Z copying torch/include/ATen/ops/_sobol_engine_initialize_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2645820Z copying torch/include/ATen/ops/range_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2651110Z copying torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2652210Z copying torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2658250Z copying torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2659660Z copying torch/include/ATen/ops/bmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2661220Z 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-11-03T15:55:34.2667960Z copying torch/include/ATen/ops/_add_relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2668850Z copying torch/include/ATen/ops/triu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2676030Z copying torch/include/ATen/ops/negative.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2677060Z copying torch/include/ATen/ops/linalg_lstsq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2684220Z copying torch/include/ATen/ops/empty_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2685120Z copying torch/include/ATen/ops/argmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2686450Z copying torch/include/ATen/ops/_to_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2692800Z copying torch/include/ATen/ops/native_group_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2694090Z copying torch/include/ATen/ops/upsample_bicubic2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2699960Z copying torch/include/ATen/ops/arcsinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2701270Z copying torch/include/ATen/ops/q_per_channel_scales.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2707450Z copying torch/include/ATen/ops/tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2708930Z copying torch/include/ATen/ops/_test_optional_intlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2715640Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2716880Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2718360Z copying torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2724010Z copying torch/include/ATen/ops/pdist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2724980Z copying torch/include/ATen/ops/_test_string_default.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2731860Z copying torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2732930Z copying torch/include/ATen/ops/narrow_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2740440Z copying torch/include/ATen/ops/_sparse_semi_structured_tile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2746500Z copying torch/include/ATen/ops/argmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2747570Z copying torch/include/ATen/ops/_fused_sdp_choice_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2749060Z copying torch/include/ATen/ops/is_signed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2753100Z copying torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2754380Z copying torch/include/ATen/ops/_test_optional_intlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2756020Z 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-11-03T15:55:34.2759810Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2761400Z 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-11-03T15:55:34.2763740Z copying torch/include/ATen/ops/_weight_norm_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2768360Z copying torch/include/ATen/ops/atanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2772100Z copying torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2776460Z copying torch/include/ATen/ops/var_mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2779610Z copying torch/include/ATen/ops/polar_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2780730Z copying torch/include/ATen/ops/square_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2785480Z copying torch/include/ATen/ops/argsort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2787550Z copying torch/include/ATen/ops/slice_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2793380Z copying torch/include/ATen/ops/erf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2794480Z copying torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2800690Z copying torch/include/ATen/ops/linalg_cholesky_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2802050Z copying torch/include/ATen/ops/_sparse_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2808250Z 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-11-03T15:55:34.2809150Z copying torch/include/ATen/ops/norm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2810750Z 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-11-03T15:55:34.2817090Z copying torch/include/ATen/ops/mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2818260Z copying torch/include/ATen/ops/_assert_tensor_metadata_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2825680Z copying torch/include/ATen/ops/_sparse_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2827110Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2833580Z copying torch/include/ATen/ops/empty_strided_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2834710Z 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-11-03T15:55:34.2836030Z copying torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2841210Z copying torch/include/ATen/ops/chalf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2842400Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2848490Z copying torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2849430Z 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-11-03T15:55:34.2850900Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2857490Z copying torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2858680Z copying torch/include/ATen/ops/_amp_update_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2864410Z copying torch/include/ATen/ops/hardswish_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2865940Z copying torch/include/ATen/ops/pow_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2871790Z copying torch/include/ATen/ops/frexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2872810Z copying torch/include/ATen/ops/cholesky_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2874120Z copying torch/include/ATen/ops/_dim_arange_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2880680Z copying torch/include/ATen/ops/median_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2881800Z copying torch/include/ATen/ops/sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2888610Z copying torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2889550Z 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-11-03T15:55:34.2896900Z 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-11-03T15:55:34.2898170Z 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-11-03T15:55:34.2899170Z copying torch/include/ATen/ops/bernoulli_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2904340Z copying torch/include/ATen/ops/_nested_get_values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2905720Z copying torch/include/ATen/ops/masked_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2912530Z copying torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2913650Z copying torch/include/ATen/ops/_foreach_sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2915070Z copying torch/include/ATen/ops/logical_and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2920170Z 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-11-03T15:55:34.2921600Z copying torch/include/ATen/ops/cudnn_is_acceptable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2927800Z copying torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2929110Z copying torch/include/ATen/ops/conv1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2935650Z copying torch/include/ATen/ops/lcm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2936630Z copying torch/include/ATen/ops/rrelu_with_noise_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2938110Z copying torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2943660Z copying torch/include/ATen/ops/special_modified_bessel_i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2945080Z copying torch/include/ATen/ops/empty_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2950740Z copying torch/include/ATen/ops/_make_dep_token.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2952910Z copying torch/include/ATen/ops/complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2954080Z copying torch/include/ATen/ops/max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2960690Z copying torch/include/ATen/ops/count_nonzero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2961750Z copying torch/include/ATen/ops/dense_dim_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2968830Z copying torch/include/ATen/ops/logaddexp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2969910Z copying torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2977060Z 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-11-03T15:55:34.2978040Z copying torch/include/ATen/ops/adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2980140Z copying torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2992030Z copying torch/include/ATen/ops/special_modified_bessel_i1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2993470Z copying torch/include/ATen/ops/nansum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.2995040Z copying torch/include/ATen/ops/cholesky_inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3002530Z copying torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3003820Z copying torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3010700Z copying torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3011780Z 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-11-03T15:55:34.3013310Z copying torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3018540Z copying torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3019470Z copying torch/include/ATen/ops/scatter_reduce_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3026120Z copying torch/include/ATen/ops/floor_divide_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3027630Z copying torch/include/ATen/ops/_efficientzerotensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3029580Z copying torch/include/ATen/ops/_softmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3030720Z copying torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3034370Z copying torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3038670Z copying torch/include/ATen/ops/polygamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3039690Z copying torch/include/ATen/ops/lgamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3043590Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3046710Z copying torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3051190Z copying torch/include/ATen/ops/cholesky_inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3056290Z copying torch/include/ATen/ops/max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3059940Z copying torch/include/ATen/ops/rsqrt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3063830Z 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-11-03T15:55:34.3064790Z copying torch/include/ATen/ops/row_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3069010Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3072740Z copying torch/include/ATen/ops/segment_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3077360Z copying torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3078380Z copying torch/include/ATen/ops/empty_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3083300Z copying torch/include/ATen/ops/_embedding_bag_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3086430Z copying torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3090930Z copying torch/include/ATen/ops/abs_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3091900Z copying torch/include/ATen/ops/moveaxis_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3095160Z copying torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3100440Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3103560Z copying torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3107610Z copying torch/include/ATen/ops/conj_physical.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3108730Z copying torch/include/ATen/ops/_foreach_asin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3112200Z copying torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3116680Z 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-11-03T15:55:34.3120930Z copying torch/include/ATen/ops/deg2rad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3121990Z copying torch/include/ATen/ops/median_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3127770Z 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-11-03T15:55:34.3130220Z copying torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3134920Z copying torch/include/ATen/ops/polygamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3135920Z copying torch/include/ATen/ops/_linalg_solve_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3137420Z copying torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3143150Z copying torch/include/ATen/ops/batch_norm_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3144490Z copying torch/include/ATen/ops/baddbmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3151290Z 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-11-03T15:55:34.3152710Z 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-11-03T15:55:34.3158670Z copying torch/include/ATen/ops/_linalg_solve_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3159990Z 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-11-03T15:55:34.3161590Z 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-11-03T15:55:34.3167520Z copying torch/include/ATen/ops/unfold_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3168580Z copying torch/include/ATen/ops/view_as_complex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3174940Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3175940Z copying torch/include/ATen/ops/huber_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3182120Z copying torch/include/ATen/ops/_ctc_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3183740Z copying torch/include/ATen/ops/norm_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3185120Z copying torch/include/ATen/ops/pin_memory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3191450Z copying torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3192500Z copying torch/include/ATen/ops/logaddexp2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3198950Z copying torch/include/ATen/ops/stft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3200030Z 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-11-03T15:55:34.3201550Z copying torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3207310Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3208770Z 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-11-03T15:55:34.3215200Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3216670Z copying torch/include/ATen/ops/linalg_slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3218550Z copying torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3226110Z copying torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3227570Z 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-11-03T15:55:34.3234110Z copying torch/include/ATen/ops/special_ndtri_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3236100Z copying torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3243770Z copying torch/include/ATen/ops/logit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3250200Z copying torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3251510Z copying torch/include/ATen/ops/nanmean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3253540Z copying torch/include/ATen/ops/to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3257960Z copying torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3259190Z copying torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3265440Z 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-11-03T15:55:34.3266750Z copying torch/include/ATen/ops/polygamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3272300Z copying torch/include/ATen/ops/normal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3273830Z copying torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3275480Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3280820Z copying torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3281680Z copying torch/include/ATen/ops/add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3289150Z 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-11-03T15:55:34.3290090Z copying torch/include/ATen/ops/special_gammainc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3296810Z copying torch/include/ATen/ops/batch_norm_gather_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3298150Z 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-11-03T15:55:34.3299570Z copying torch/include/ATen/ops/sspaddmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3304790Z copying torch/include/ATen/ops/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3307190Z copying torch/include/ATen/ops/isin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3317670Z copying torch/include/ATen/ops/multi_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3318200Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3318440Z copying torch/include/ATen/ops/svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3319910Z copying torch/include/ATen/ops/sparse_bsc_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3321320Z copying torch/include/ATen/ops/hspmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3325290Z copying torch/include/ATen/ops/conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3330380Z copying torch/include/ATen/ops/linalg_lu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3333490Z copying torch/include/ATen/ops/addmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3338550Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3339610Z copying torch/include/ATen/ops/clone_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3342220Z copying torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3346720Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3349400Z copying torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3350830Z 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-11-03T15:55:34.3356830Z 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-11-03T15:55:34.3357720Z copying torch/include/ATen/ops/linalg_eigvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3364570Z copying torch/include/ATen/ops/linalg_vander_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3373900Z copying torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3380900Z copying torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3381930Z copying torch/include/ATen/ops/conv_tbc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3387980Z copying torch/include/ATen/ops/isposinf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3397340Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3398440Z 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-11-03T15:55:34.3399830Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3405340Z copying torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3406260Z copying torch/include/ATen/ops/triu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3407720Z copying torch/include/ATen/ops/scatter_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3414610Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3415500Z copying torch/include/ATen/ops/miopen_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3423310Z copying torch/include/ATen/ops/fill_diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3424310Z copying torch/include/ATen/ops/special_digamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3425890Z 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-11-03T15:55:34.3431970Z copying torch/include/ATen/ops/_test_serialization_subcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3432890Z copying torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3434260Z copying torch/include/ATen/ops/_nested_get_values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3440320Z 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-11-03T15:55:34.3441090Z copying torch/include/ATen/ops/_scaled_mm_v2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3442550Z copying torch/include/ATen/ops/neg_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3447820Z copying torch/include/ATen/ops/linalg_tensorinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3450400Z copying torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3455200Z copying torch/include/ATen/ops/sparse_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3456870Z 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-11-03T15:55:34.3458900Z 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-11-03T15:55:34.3464400Z copying torch/include/ATen/ops/linalg_matrix_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3465760Z copying torch/include/ATen/ops/_copy_from_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3468700Z copying torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3474000Z copying torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3474910Z copying torch/include/ATen/ops/linalg_vector_norm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3481930Z 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-11-03T15:55:34.3482940Z copying torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3489190Z 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-11-03T15:55:34.3490740Z 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-11-03T15:55:34.3492050Z copying torch/include/ATen/ops/dequantize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3497290Z copying torch/include/ATen/ops/erfinv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3498350Z copying torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3504700Z copying torch/include/ATen/ops/sign_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3506300Z copying torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3512240Z copying torch/include/ATen/ops/_dimV_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3513410Z copying torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3514930Z copying torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3520020Z copying torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3521070Z copying torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3528230Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3529250Z copying torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3536610Z copying torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3537470Z copying torch/include/ATen/ops/_prelu_kernel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3539040Z copying torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3543190Z copying torch/include/ATen/ops/relu6_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3545680Z copying torch/include/ATen/ops/special_modified_bessel_k1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3550770Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3554430Z copying torch/include/ATen/ops/expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3559600Z copying torch/include/ATen/ops/kron.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3561040Z 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-11-03T15:55:34.3565320Z copying torch/include/ATen/ops/cat_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3572990Z copying torch/include/ATen/ops/_linalg_check_errors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3576640Z copying torch/include/ATen/ops/triplet_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3577660Z copying torch/include/ATen/ops/tril.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3582270Z copying torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3586020Z copying torch/include/ATen/ops/fft_rfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3590170Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3591520Z copying torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3595400Z copying torch/include/ATen/ops/_remove_batch_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3599200Z copying torch/include/ATen/ops/linalg_cholesky_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3604100Z copying torch/include/ATen/ops/quantized_rnn_relu_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3605660Z copying torch/include/ATen/ops/silu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3607140Z copying torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3614750Z copying torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3615830Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3622370Z copying torch/include/ATen/ops/_to_sparse_semi_structured_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3623350Z copying torch/include/ATen/ops/hardshrink_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3624800Z 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-11-03T15:55:34.3629450Z copying torch/include/ATen/ops/sym_stride_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3631850Z copying torch/include/ATen/ops/_make_dual_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3637580Z 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-11-03T15:55:34.3638480Z copying torch/include/ATen/ops/hardswish_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3645370Z copying torch/include/ATen/ops/elu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3646880Z copying torch/include/ATen/ops/miopen_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3653190Z copying torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3654090Z copying torch/include/ATen/ops/abs_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3655610Z copying torch/include/ATen/ops/conv_transpose1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3661000Z copying torch/include/ATen/ops/isneginf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3661990Z copying torch/include/ATen/ops/adaptive_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3668770Z copying torch/include/ATen/ops/poisson_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3670210Z copying torch/include/ATen/ops/embedding_renorm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3676690Z copying torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3677990Z copying torch/include/ATen/ops/max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3679370Z copying torch/include/ATen/ops/minimum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3684310Z copying torch/include/ATen/ops/kthvalue_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3685380Z copying torch/include/ATen/ops/log_sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3691790Z copying torch/include/ATen/ops/_sobol_engine_ff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3692870Z copying torch/include/ATen/ops/native_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3694290Z copying torch/include/ATen/ops/block_diag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3700570Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3701810Z 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-11-03T15:55:34.3708530Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3709990Z copying torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3716310Z copying torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3717240Z copying torch/include/ATen/ops/acosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3718670Z copying torch/include/ATen/ops/roll_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3724240Z copying torch/include/ATen/ops/_copy_from_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3725130Z copying torch/include/ATen/ops/_foreach_log2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3732670Z 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-11-03T15:55:34.3733950Z copying torch/include/ATen/ops/linear_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3740770Z copying torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3742040Z copying torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3743440Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3748860Z copying torch/include/ATen/ops/native_batch_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3749820Z copying torch/include/ATen/ops/digamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3751380Z 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-11-03T15:55:34.3757390Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3758710Z copying torch/include/ATen/ops/native_dropout_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3765370Z copying torch/include/ATen/ops/conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3766490Z 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-11-03T15:55:34.3772890Z copying torch/include/ATen/ops/native_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3774110Z copying torch/include/ATen/ops/_unsafe_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3781390Z copying torch/include/ATen/ops/cosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3782520Z copying torch/include/ATen/ops/_nested_get_jagged_dummy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3788470Z copying torch/include/ATen/ops/record_stream_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3790870Z copying torch/include/ATen/ops/cudnn_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3796580Z copying torch/include/ATen/ops/_unique2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3797780Z copying torch/include/ATen/ops/special_i1e_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3799140Z copying torch/include/ATen/ops/_foreach_log2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3804020Z copying torch/include/ATen/ops/native_dropout_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3805090Z copying torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3808530Z copying torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3813520Z copying torch/include/ATen/ops/_to_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3816650Z copying torch/include/ATen/ops/empty_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3822670Z copying torch/include/ATen/ops/_test_parallel_materialize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3825090Z copying torch/include/ATen/ops/bernoulli.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3826660Z copying torch/include/ATen/ops/_pad_circular_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3830800Z copying torch/include/ATen/ops/diagonal_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3831920Z copying torch/include/ATen/ops/index_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3836550Z copying torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3839000Z copying torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3840160Z copying torch/include/ATen/ops/size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3845290Z copying torch/include/ATen/ops/_log_softmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3846690Z copying torch/include/ATen/ops/replication_pad3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3854390Z copying torch/include/ATen/ops/special_psi.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3855510Z copying torch/include/ATen/ops/_log_softmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3861950Z copying torch/include/ATen/ops/addcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3862970Z copying torch/include/ATen/ops/sigmoid_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3869520Z copying torch/include/ATen/ops/select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3870430Z copying torch/include/ATen/ops/special_multigammaln_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3871750Z copying torch/include/ATen/ops/exp2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3876620Z copying torch/include/ATen/ops/_foreach_addcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3878030Z copying torch/include/ATen/ops/addmv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3885350Z copying torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3886350Z copying torch/include/ATen/ops/type_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3892980Z copying torch/include/ATen/ops/linalg_tensorsolve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3894410Z copying torch/include/ATen/ops/range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3895430Z copying torch/include/ATen/ops/isinf_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3900220Z 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-11-03T15:55:34.3902600Z copying torch/include/ATen/ops/glu_backward_jvp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3908030Z copying torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3909460Z copying torch/include/ATen/ops/upsample_nearest1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3911110Z copying torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3918340Z copying torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3919460Z copying torch/include/ATen/ops/div_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3926210Z copying torch/include/ATen/ops/bincount.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3927350Z copying torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3933950Z copying torch/include/ATen/ops/hann_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3935130Z 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-11-03T15:55:34.3936660Z 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-11-03T15:55:34.3942460Z copying torch/include/ATen/ops/elu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3943510Z copying torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3950120Z copying torch/include/ATen/ops/cummaxmin_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3951460Z copying torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3952920Z copying torch/include/ATen/ops/affine_grid_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3957940Z copying torch/include/ATen/ops/logical_and_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3959760Z copying torch/include/ATen/ops/split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3965650Z 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-11-03T15:55:34.3966600Z copying torch/include/ATen/ops/native_channel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3968360Z copying torch/include/ATen/ops/greater_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3973670Z copying torch/include/ATen/ops/imag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3974720Z copying torch/include/ATen/ops/argmin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3980950Z copying torch/include/ATen/ops/special_i0e_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3983970Z copying torch/include/ATen/ops/max_unpool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3989230Z copying torch/include/ATen/ops/erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3990340Z 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-11-03T15:55:34.3992960Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3997180Z copying torch/include/ATen/ops/matrix_H.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.3998560Z copying torch/include/ATen/ops/transpose_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4002780Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4040250Z copying torch/include/ATen/ops/fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4041710Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4043150Z copying torch/include/ATen/ops/copysign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4048260Z copying torch/include/ATen/ops/amin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4049330Z copying torch/include/ATen/ops/rms_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4050660Z copying torch/include/ATen/ops/asin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4052330Z 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-11-03T15:55:34.4053850Z copying torch/include/ATen/ops/fliplr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4055490Z 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-11-03T15:55:34.4057030Z copying torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4059220Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4060760Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4062180Z 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-11-03T15:55:34.4063720Z copying torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4065210Z copying torch/include/ATen/ops/sparse_sampled_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4067460Z copying torch/include/ATen/ops/log10.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4068910Z copying torch/include/ATen/ops/aminmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4070350Z copying torch/include/ATen/ops/quantized_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4073720Z copying torch/include/ATen/ops/masked_scatter_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4078410Z copying torch/include/ATen/ops/i0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4079580Z 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-11-03T15:55:34.4084000Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4088280Z copying torch/include/ATen/ops/log_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4089280Z copying torch/include/ATen/ops/scatter_add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4094020Z copying torch/include/ATen/ops/_reshape_alias_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4099370Z 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-11-03T15:55:34.4100520Z copying torch/include/ATen/ops/lcm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4104780Z copying torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4106090Z copying torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4111670Z copying torch/include/ATen/ops/softplus_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4112730Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4118670Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4124470Z copying torch/include/ATen/ops/hardshrink_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4125600Z copying torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4130450Z copying torch/include/ATen/ops/conj_physical_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4131450Z 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-11-03T15:55:34.4137130Z copying torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4138000Z copying torch/include/ATen/ops/erfinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4143370Z copying torch/include/ATen/ops/avg_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4144410Z copying torch/include/ATen/ops/_gather_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4149330Z copying torch/include/ATen/ops/addbmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4150840Z copying torch/include/ATen/ops/upsample_trilinear3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4156610Z copying torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4157520Z copying torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4162790Z copying torch/include/ATen/ops/matmul_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4165180Z copying torch/include/ATen/ops/coalesce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4169690Z copying torch/include/ATen/ops/_foreach_log10_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4170650Z copying torch/include/ATen/ops/_lu_with_info_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4177830Z 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-11-03T15:55:34.4178700Z copying torch/include/ATen/ops/expm1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4184730Z 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-11-03T15:55:34.4185700Z 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-11-03T15:55:34.4191440Z copying torch/include/ATen/ops/_weight_norm_interface_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4192450Z copying torch/include/ATen/ops/scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4193880Z copying torch/include/ATen/ops/ne_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4200010Z copying torch/include/ATen/ops/addcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4201370Z copying torch/include/ATen/ops/special_logsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4207420Z 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-11-03T15:55:34.4209080Z copying torch/include/ATen/ops/to_sparse_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4215510Z copying torch/include/ATen/ops/_foreach_round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4216830Z copying torch/include/ATen/ops/floor_divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4218410Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4220760Z copying torch/include/ATen/ops/margin_ranking_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4223840Z copying torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4227070Z 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-11-03T15:55:34.4232010Z copying torch/include/ATen/ops/triangular_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4235830Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4238750Z copying torch/include/ATen/ops/dstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4243250Z copying torch/include/ATen/ops/log_sigmoid_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4244330Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4250620Z copying torch/include/ATen/ops/special_xlog1py_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4253000Z copying torch/include/ATen/ops/maximum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4257820Z copying torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4259270Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4261670Z copying torch/include/ATen/ops/contiguous.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4267110Z copying torch/include/ATen/ops/view_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4268290Z 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-11-03T15:55:34.4271890Z copying torch/include/ATen/ops/group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4276570Z copying torch/include/ATen/ops/_fused_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4284160Z copying torch/include/ATen/ops/sgn_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4285160Z copying torch/include/ATen/ops/max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4289990Z copying torch/include/ATen/ops/multiply_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4292480Z copying torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4297990Z copying torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4298960Z copying torch/include/ATen/ops/cudnn_affine_grid_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4301680Z copying torch/include/ATen/ops/is_signed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4306990Z copying torch/include/ATen/ops/special_ndtri.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4310130Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4315090Z copying torch/include/ATen/ops/lt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4316270Z copying torch/include/ATen/ops/requires_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4318680Z copying torch/include/ATen/ops/hypot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4324000Z copying torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4326440Z copying torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4327600Z 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-11-03T15:55:34.4333720Z copying torch/include/ATen/ops/round_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4334750Z copying torch/include/ATen/ops/reflection_pad1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4340750Z copying torch/include/ATen/ops/norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4343160Z copying torch/include/ATen/ops/_prelu_kernel_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4349150Z copying torch/include/ATen/ops/nonzero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4350250Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4351930Z copying torch/include/ATen/ops/batch_norm_backward_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4357110Z copying torch/include/ATen/ops/fmin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4358320Z copying torch/include/ATen/ops/index_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4364790Z copying torch/include/ATen/ops/rand.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4366250Z copying torch/include/ATen/ops/searchsorted_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4372390Z copying torch/include/ATen/ops/prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4373460Z copying torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4374890Z copying torch/include/ATen/ops/q_per_channel_scales_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4380140Z copying torch/include/ATen/ops/special_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4381130Z copying torch/include/ATen/ops/erfc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4388360Z copying torch/include/ATen/ops/i0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4389450Z 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-11-03T15:55:34.4396360Z copying torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4397250Z copying torch/include/ATen/ops/quantize_per_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4398670Z copying torch/include/ATen/ops/_nested_get_values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4403380Z copying torch/include/ATen/ops/special_hermite_polynomial_he_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4404920Z copying torch/include/ATen/ops/upsample_linear1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4412350Z copying torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4413310Z copying torch/include/ATen/ops/_cslt_sparse_mm_search.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4420160Z copying torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4422230Z copying torch/include/ATen/ops/_sparse_csr_prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4430100Z copying torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4434770Z copying torch/include/ATen/ops/replication_pad3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4436210Z copying torch/include/ATen/ops/avg_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4438460Z copying torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4443190Z copying torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4444350Z copying torch/include/ATen/ops/_pin_memory_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4450870Z copying torch/include/ATen/ops/nuclear_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4451940Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4458410Z copying torch/include/ATen/ops/ceil_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4459750Z copying torch/include/ATen/ops/_empty_affine_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4466360Z copying torch/include/ATen/ops/zero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4467910Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4469230Z copying torch/include/ATen/ops/gelu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4474650Z copying torch/include/ATen/ops/isnan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4475580Z copying torch/include/ATen/ops/frac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4482260Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4483510Z copying torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4490840Z copying torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4491880Z copying torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4498280Z copying torch/include/ATen/ops/quantized_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4499690Z copying torch/include/ATen/ops/replication_pad3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4505750Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4507180Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4508570Z copying torch/include/ATen/ops/erf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4513260Z copying torch/include/ATen/ops/eye_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4514670Z copying torch/include/ATen/ops/argsort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4521300Z copying torch/include/ATen/ops/column_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4522780Z copying torch/include/ATen/ops/round_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4529230Z copying torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4530160Z copying torch/include/ATen/ops/uniform_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4531640Z copying torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4536800Z copying torch/include/ATen/ops/_fw_primal_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4538140Z copying torch/include/ATen/ops/sum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4544040Z copying torch/include/ATen/ops/asin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4546650Z copying torch/include/ATen/ops/cross_entropy_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4551710Z copying torch/include/ATen/ops/fft_irfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4553270Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4554620Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4560890Z copying torch/include/ATen/ops/permute_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4561970Z copying torch/include/ATen/ops/_cdist_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4568490Z copying torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4569470Z copying torch/include/ATen/ops/tanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4577030Z copying torch/include/ATen/ops/row_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4578090Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4579470Z copying torch/include/ATen/ops/matrix_exp_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4584890Z copying torch/include/ATen/ops/quantize_per_channel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4586020Z copying torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4593180Z copying torch/include/ATen/ops/slow_conv_dilated2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4794440Z copying torch/include/ATen/ops/histogram.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4795730Z copying torch/include/ATen/ops/_conv_depthwise2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4797130Z copying torch/include/ATen/ops/special_i0e_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4798620Z copying torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4800020Z copying torch/include/ATen/ops/as_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4801440Z copying torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4802830Z copying torch/include/ATen/ops/igamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4804270Z copying torch/include/ATen/ops/special_xlog1py_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4805660Z copying torch/include/ATen/ops/_functional_assert_async_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4807030Z copying torch/include/ATen/ops/avg_pool3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4808460Z copying torch/include/ATen/ops/amax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4809810Z copying torch/include/ATen/ops/retains_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4811150Z copying torch/include/ATen/ops/mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4812660Z copying torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4813990Z copying torch/include/ATen/ops/smooth_l1_loss_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4815650Z copying torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4816850Z 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-11-03T15:55:34.4818310Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4819760Z copying torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4821030Z copying torch/include/ATen/ops/view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4822710Z 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-11-03T15:55:34.4823950Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4825280Z copying torch/include/ATen/ops/numpy_T_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4826680Z 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-11-03T15:55:34.4828000Z copying torch/include/ATen/ops/fft_rfftfreq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4829340Z copying torch/include/ATen/ops/cauchy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4830720Z 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-11-03T15:55:34.4832040Z copying torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4833450Z copying torch/include/ATen/ops/unflatten_dense_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4834790Z copying torch/include/ATen/ops/atanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4836260Z copying torch/include/ATen/ops/miopen_convolution_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4838100Z copying torch/include/ATen/ops/native_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4839470Z copying torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4840880Z copying torch/include/ATen/ops/_masked_softmax_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4842270Z copying torch/include/ATen/ops/floor_divide_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4843710Z copying torch/include/ATen/ops/_foreach_expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4845190Z copying torch/include/ATen/ops/fft_fftshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4846540Z copying torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4848030Z copying torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4849390Z copying torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4850820Z copying torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4852320Z copying torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4853780Z copying torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4855080Z copying torch/include/ATen/ops/_cast_Short_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4856510Z copying torch/include/ATen/ops/linspace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4857870Z copying torch/include/ATen/ops/logit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4859250Z copying torch/include/ATen/ops/remainder_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4860580Z copying torch/include/ATen/ops/bilinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4861970Z copying torch/include/ATen/ops/max_unpool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4863440Z copying torch/include/ATen/ops/reflection_pad2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4864760Z copying torch/include/ATen/ops/_sparse_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4866170Z copying torch/include/ATen/ops/_foreach_asin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4867510Z 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-11-03T15:55:34.4869020Z copying torch/include/ATen/ops/split_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4870340Z copying torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4871640Z copying torch/include/ATen/ops/any_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4873090Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4874500Z 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-11-03T15:55:34.4875850Z copying torch/include/ATen/ops/softplus_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4877160Z copying torch/include/ATen/ops/softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4878580Z copying torch/include/ATen/ops/ccol_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4880080Z 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-11-03T15:55:34.4881480Z copying torch/include/ATen/ops/_fft_r2c.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4882840Z copying torch/include/ATen/ops/outer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4884350Z 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-11-03T15:55:34.4885700Z copying torch/include/ATen/ops/hypot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4887200Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4888420Z copying torch/include/ATen/ops/adjoint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4889920Z copying torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4891200Z copying torch/include/ATen/ops/flip_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4892590Z copying torch/include/ATen/ops/flipud.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4893960Z copying torch/include/ATen/ops/argmin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4895320Z copying torch/include/ATen/ops/_foreach_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4896710Z copying torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4898010Z copying torch/include/ATen/ops/addbmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4899380Z copying torch/include/ATen/ops/masked_fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4900710Z copying torch/include/ATen/ops/exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4902100Z copying torch/include/ATen/ops/_ctc_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4903490Z copying torch/include/ATen/ops/flipud_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4904820Z copying torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4906270Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4907770Z copying torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4909000Z copying torch/include/ATen/ops/_dimV_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4910430Z copying torch/include/ATen/ops/reflection_pad2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4911720Z copying torch/include/ATen/ops/mvlgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4913250Z 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-11-03T15:55:34.4914720Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4915940Z copying torch/include/ATen/ops/addmm_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4917580Z copying torch/include/ATen/ops/_batch_norm_with_update_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4918630Z copying torch/include/ATen/ops/log_normal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4919930Z copying torch/include/ATen/ops/_sparse_sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4921390Z copying torch/include/ATen/ops/sym_is_contiguous_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4922820Z copying torch/include/ATen/ops/_aminmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4924280Z copying torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4926110Z copying torch/include/ATen/ops/miopen_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4929740Z copying torch/include/ATen/ops/miopen_rnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4931270Z copying torch/include/ATen/ops/normal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4936640Z copying torch/include/ATen/ops/dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4937940Z 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-11-03T15:55:34.4944090Z copying torch/include/ATen/ops/view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4945440Z copying torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4951110Z copying torch/include/ATen/ops/angle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4952320Z copying torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4958880Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4959980Z 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-11-03T15:55:34.4961320Z copying torch/include/ATen/ops/_make_dual_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4967290Z copying torch/include/ATen/ops/_rowwise_prune_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4968520Z copying torch/include/ATen/ops/special_erfcx_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4974320Z 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-11-03T15:55:34.4975890Z copying torch/include/ATen/ops/cosine_embedding_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4981820Z 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-11-03T15:55:34.4982990Z copying torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4984650Z copying torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4990500Z copying torch/include/ATen/ops/_unsafe_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4991620Z copying torch/include/ATen/ops/_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.4997220Z 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-11-03T15:55:34.4999550Z copying torch/include/ATen/ops/special_log_ndtr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5005150Z copying torch/include/ATen/ops/asinh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5006230Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5007780Z copying torch/include/ATen/ops/cumulative_trapezoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5013300Z copying torch/include/ATen/ops/grid_sampler_2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5014520Z copying torch/include/ATen/ops/log1p_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5021650Z 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-11-03T15:55:34.5022590Z copying torch/include/ATen/ops/_fused_sgd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5027680Z copying torch/include/ATen/ops/_fused_adam_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5030470Z copying torch/include/ATen/ops/mish_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5036360Z copying torch/include/ATen/ops/can_cast_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5037730Z copying torch/include/ATen/ops/ge_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5043370Z copying torch/include/ATen/ops/unique_consecutive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5044830Z copying torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5051120Z copying torch/include/ATen/ops/max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5052170Z 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-11-03T15:55:34.5059040Z copying torch/include/ATen/ops/_euclidean_dist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5060470Z copying torch/include/ATen/ops/avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5061830Z copying torch/include/ATen/ops/logical_and_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5067070Z copying torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5068460Z copying torch/include/ATen/ops/as_strided_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5074430Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5076930Z copying torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5077850Z copying torch/include/ATen/ops/sym_constrain_range_for_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5084180Z copying torch/include/ATen/ops/soft_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5085230Z copying torch/include/ATen/ops/isinf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5092280Z copying torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5100380Z 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-11-03T15:55:34.5101310Z copying torch/include/ATen/ops/clamp_max_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5102800Z copying torch/include/ATen/ops/mkldnn_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5107430Z copying torch/include/ATen/ops/_foreach_rsqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5108830Z copying torch/include/ATen/ops/linear_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5115420Z copying torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5116430Z 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-11-03T15:55:34.5117860Z copying torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5123960Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5124880Z copying torch/include/ATen/ops/exp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5132510Z copying torch/include/ATen/ops/upsample_bicubic2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5133600Z copying torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5141200Z copying torch/include/ATen/ops/select_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5142290Z copying torch/include/ATen/ops/miopen_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5143620Z copying torch/include/ATen/ops/zeros_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5149540Z copying torch/include/ATen/ops/triangular_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5150580Z copying torch/include/ATen/ops/bmm_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5156860Z copying torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5157680Z copying torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5159110Z 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-11-03T15:55:34.5164310Z copying torch/include/ATen/ops/_foreach_sinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5165400Z copying torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5172410Z copying torch/include/ATen/ops/_to_sparse_semi_structured.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5173450Z copying torch/include/ATen/ops/_foreach_log2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5180530Z copying torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5186820Z copying torch/include/ATen/ops/logspace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5187140Z copying torch/include/ATen/ops/softshrink_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5188090Z copying torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5189280Z copying torch/include/ATen/ops/cholesky.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5196080Z copying torch/include/ATen/ops/_masked_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5197040Z copying torch/include/ATen/ops/fft_ihfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5198460Z copying torch/include/ATen/ops/or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5204860Z copying torch/include/ATen/ops/sparse_coo_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5205850Z copying torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5212760Z copying torch/include/ATen/ops/upsample_nearest3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5213680Z copying torch/include/ATen/ops/max_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5220920Z copying torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5221870Z copying torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5223240Z copying torch/include/ATen/ops/clamp_min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5229130Z copying torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5230030Z copying torch/include/ATen/ops/repeat_interleave.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5236380Z copying torch/include/ATen/ops/upsample_nearest2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5237800Z copying torch/include/ATen/ops/item_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5243640Z copying torch/include/ATen/ops/cudnn_convolution_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5244570Z copying torch/include/ATen/ops/nextafter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5251950Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5252880Z copying torch/include/ATen/ops/fft_fft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5259820Z copying torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5260840Z copying torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5262440Z copying torch/include/ATen/ops/mkldnn_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5267730Z copying torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5268590Z copying torch/include/ATen/ops/_fft_r2c_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5275840Z copying torch/include/ATen/ops/glu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5276970Z copying torch/include/ATen/ops/_test_optional_filled_intlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5283220Z copying torch/include/ATen/ops/cat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5284610Z copying torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5285980Z copying torch/include/ATen/ops/_test_warn_in_autograd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5291040Z copying torch/include/ATen/ops/_coalesced_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5293510Z copying torch/include/ATen/ops/cudnn_convolution_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5298610Z copying torch/include/ATen/ops/upsample_nearest2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5299570Z copying torch/include/ATen/ops/special_gammaln.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5301320Z copying torch/include/ATen/ops/_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5307170Z copying torch/include/ATen/ops/fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5308740Z 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-11-03T15:55:34.5315890Z 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-11-03T15:55:34.5317120Z copying torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5323640Z 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-11-03T15:55:34.5324700Z copying torch/include/ATen/ops/sparse_bsc_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5326280Z copying torch/include/ATen/ops/gcd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5331620Z copying torch/include/ATen/ops/index_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5332610Z copying torch/include/ATen/ops/logit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5339190Z 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-11-03T15:55:34.5340580Z copying torch/include/ATen/ops/fft_hfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5342100Z copying torch/include/ATen/ops/_flash_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5345380Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5347090Z copying torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5351740Z copying torch/include/ATen/ops/_foreach_trunc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5352910Z copying torch/include/ATen/ops/avg_pool3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5360340Z copying torch/include/ATen/ops/arccos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5361370Z copying torch/include/ATen/ops/unfold_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5366450Z copying torch/include/ATen/ops/conv_tbc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5369030Z copying torch/include/ATen/ops/_foreach_frac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5374660Z copying torch/include/ATen/ops/new_empty_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5375590Z copying torch/include/ATen/ops/conj_physical_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5377050Z copying torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5383710Z copying torch/include/ATen/ops/sparse_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5384790Z copying torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5391110Z copying torch/include/ATen/ops/atanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5392580Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5398630Z copying torch/include/ATen/ops/exponential_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5399690Z copying torch/include/ATen/ops/_sparse_semi_structured_apply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5401790Z copying torch/include/ATen/ops/lift_fresh_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5407830Z copying torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5408930Z copying torch/include/ATen/ops/_foreach_sign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5412350Z copying torch/include/ATen/ops/adjoint_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5417400Z copying torch/include/ATen/ops/addcdiv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5419590Z 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-11-03T15:55:34.5421290Z copying torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5427160Z copying torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5428420Z copying torch/include/ATen/ops/mish_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5434570Z copying torch/include/ATen/ops/full.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5435720Z 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-11-03T15:55:34.5443240Z copying torch/include/ATen/ops/view_as_real_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5444200Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5450700Z 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-11-03T15:55:34.5452000Z copying torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5458700Z copying torch/include/ATen/ops/linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5459670Z copying torch/include/ATen/ops/addmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5461090Z copying torch/include/ATen/ops/reshape_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5467420Z copying torch/include/ATen/ops/upsample_nearest1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5468330Z copying torch/include/ATen/ops/prod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5474360Z copying torch/include/ATen/ops/abs_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5475890Z copying torch/include/ATen/ops/lift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5482650Z copying torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5483970Z 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-11-03T15:55:34.5485400Z copying torch/include/ATen/ops/erfc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5491110Z copying torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5492100Z copying torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5498540Z copying torch/include/ATen/ops/_linalg_slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5499970Z copying torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5506310Z copying torch/include/ATen/ops/pad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5507240Z copying torch/include/ATen/ops/signbit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5508760Z copying torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5513930Z 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-11-03T15:55:34.5515260Z copying torch/include/ATen/ops/convolution_backward_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5521740Z copying torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5522620Z copying torch/include/ATen/ops/clamp_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5524060Z copying torch/include/ATen/ops/sort_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5531310Z copying torch/include/ATen/ops/triu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5532330Z 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-11-03T15:55:34.5539300Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5540730Z copying torch/include/ATen/ops/special_i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5547150Z copying torch/include/ATen/ops/atleast_3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5548280Z copying torch/include/ATen/ops/_nested_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5549830Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5555860Z copying torch/include/ATen/ops/special_airy_ai_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5556870Z copying torch/include/ATen/ops/addmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5563410Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5564370Z copying torch/include/ATen/ops/special_gammaincc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5565820Z copying torch/include/ATen/ops/mish_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5570900Z copying torch/include/ATen/ops/min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5573490Z copying torch/include/ATen/ops/acosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5578570Z copying torch/include/ATen/ops/_pad_enum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5579990Z copying torch/include/ATen/ops/inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5581420Z copying torch/include/ATen/ops/_safe_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5587890Z copying torch/include/ATen/ops/mm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5589270Z copying torch/include/ATen/ops/broadcast_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5596440Z copying torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5597290Z copying torch/include/ATen/ops/zero_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5598690Z copying torch/include/ATen/ops/_foreach_tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5603990Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5605380Z copying torch/include/ATen/ops/reflection_pad1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5612090Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5613090Z copying torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5614540Z copying torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5621470Z copying torch/include/ATen/ops/renorm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5622560Z copying torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5629490Z 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-11-03T15:55:34.5630510Z 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-11-03T15:55:34.5637750Z copying torch/include/ATen/ops/conv_depthwise3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5638720Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5640060Z copying torch/include/ATen/ops/_foreach_reciprocal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5648560Z 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-11-03T15:55:34.5651610Z copying torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5652690Z copying torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5657310Z copying torch/include/ATen/ops/rsub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5659530Z copying torch/include/ATen/ops/fractional_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5665570Z copying torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5666540Z copying torch/include/ATen/ops/isneginf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5668060Z copying torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5674270Z copying torch/include/ATen/ops/cat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5675430Z copying torch/include/ATen/ops/_thnn_fused_gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5682220Z copying torch/include/ATen/ops/_cudnn_rnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5683130Z copying torch/include/ATen/ops/rand_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5689920Z copying torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5691550Z copying torch/include/ATen/ops/trapezoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5692620Z copying torch/include/ATen/ops/relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5698600Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5699550Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5706940Z copying torch/include/ATen/ops/clamp_max_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5707910Z copying torch/include/ATen/ops/_unpack_dual_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5709310Z copying torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5714760Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5715800Z copying torch/include/ATen/ops/var_mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5722570Z copying torch/include/ATen/ops/polar_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5723850Z copying torch/include/ATen/ops/narrow_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5725240Z copying torch/include/ATen/ops/vstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5730790Z copying torch/include/ATen/ops/convolution_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5731870Z copying torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5739930Z copying torch/include/ATen/ops/transpose_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5741460Z copying torch/include/ATen/ops/threshold_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5851530Z copying torch/include/ATen/ops/tanh_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5852610Z copying torch/include/ATen/ops/bucketize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5854290Z copying torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5963240Z 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-11-03T15:55:34.5964720Z copying torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5966030Z copying torch/include/ATen/ops/_cdist_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5967520Z copying torch/include/ATen/ops/view_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5969410Z copying torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5970820Z copying torch/include/ATen/ops/log_sigmoid_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5972140Z copying torch/include/ATen/ops/_cudnn_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5973670Z copying torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5975210Z copying torch/include/ATen/ops/view_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.5977040Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6023890Z copying torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6024930Z copying torch/include/ATen/ops/eye_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6026390Z copying torch/include/ATen/ops/exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6028100Z copying torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6029330Z copying torch/include/ATen/ops/expm1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6068110Z copying torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6069210Z copying torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6070600Z copying torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6090600Z copying torch/include/ATen/ops/rsqrt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6091640Z copying torch/include/ATen/ops/triu_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6093090Z copying torch/include/ATen/ops/convolution_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6094540Z copying torch/include/ATen/ops/diag_embed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6096050Z copying torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6097490Z copying torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6098840Z copying torch/include/ATen/ops/lift_fresh_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6100300Z copying torch/include/ATen/ops/atanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6101620Z copying torch/include/ATen/ops/reciprocal_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6102910Z copying torch/include/ATen/ops/im2col_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6104390Z copying torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6105760Z copying torch/include/ATen/ops/_nested_view_from_buffer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6107090Z copying torch/include/ATen/ops/sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6108430Z copying torch/include/ATen/ops/fft_ifft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6109840Z copying torch/include/ATen/ops/combinations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6111210Z copying torch/include/ATen/ops/_to_sparse_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6112580Z copying torch/include/ATen/ops/_fft_r2c_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6114180Z copying torch/include/ATen/ops/hardtanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6115740Z copying torch/include/ATen/ops/promote_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6117150Z copying torch/include/ATen/ops/cross_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6118580Z copying torch/include/ATen/ops/nansum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6120030Z copying torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6121630Z copying torch/include/ATen/ops/log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6122830Z copying torch/include/ATen/ops/_foreach_sub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6124330Z copying torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6125610Z copying torch/include/ATen/ops/_cast_Int_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6127090Z 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-11-03T15:55:34.6128370Z copying torch/include/ATen/ops/lshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6129890Z copying torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6131220Z copying torch/include/ATen/ops/negative_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6132580Z copying torch/include/ATen/ops/_cast_Byte.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6134410Z copying torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6135390Z copying torch/include/ATen/ops/logaddexp2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6136670Z copying torch/include/ATen/ops/mish_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6138040Z copying torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6139550Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6140920Z copying torch/include/ATen/ops/linalg_cross_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6142380Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6143710Z copying torch/include/ATen/ops/view_as_complex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6145040Z copying torch/include/ATen/ops/cos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6146390Z copying torch/include/ATen/ops/bernoulli_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6147810Z 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-11-03T15:55:34.6149110Z copying torch/include/ATen/ops/rrelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6150720Z copying torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6152030Z copying torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6153730Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6155160Z copying torch/include/ATen/ops/to_sparse_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6156560Z copying torch/include/ATen/ops/median_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6158100Z 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-11-03T15:55:34.6272420Z copying torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6273650Z copying torch/include/ATen/ops/uniform_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6275310Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6276660Z copying torch/include/ATen/ops/linalg_diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6278750Z copying torch/include/ATen/ops/sparse_dim_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6280280Z copying torch/include/ATen/ops/index_reduce_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6280870Z copying torch/include/ATen/ops/_foobar_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6282470Z 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-11-03T15:55:34.6284810Z copying torch/include/ATen/ops/randn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6285430Z copying torch/include/ATen/ops/logical_or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6286840Z copying torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6288140Z copying torch/include/ATen/ops/neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6289510Z copying torch/include/ATen/ops/igamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6291120Z copying torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6292440Z copying torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6293770Z copying torch/include/ATen/ops/norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6295110Z copying torch/include/ATen/ops/trace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6296400Z copying torch/include/ATen/ops/log_sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6297830Z copying torch/include/ATen/ops/linalg_ldl_factor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6299140Z copying torch/include/ATen/ops/eq_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6300520Z copying torch/include/ATen/ops/put_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6301890Z copying torch/include/ATen/ops/hinge_embedding_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6303340Z copying torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6304680Z copying torch/include/ATen/ops/softshrink_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6306070Z copying torch/include/ATen/ops/native_dropout_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6307400Z copying torch/include/ATen/ops/argmin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6308710Z copying torch/include/ATen/ops/vstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6310100Z copying torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6311560Z copying torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6312840Z copying torch/include/ATen/ops/can_cast_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6314250Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6315650Z copying torch/include/ATen/ops/_to_sparse_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6317000Z copying torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6318400Z copying torch/include/ATen/ops/topk_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6319680Z copying torch/include/ATen/ops/_foreach_tan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6321010Z copying torch/include/ATen/ops/expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6322410Z copying torch/include/ATen/ops/_nested_get_values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6323970Z copying torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6325430Z copying torch/include/ATen/ops/_masked_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6326880Z copying torch/include/ATen/ops/_foreach_lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6328210Z copying torch/include/ATen/ops/matmul_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6329870Z copying torch/include/ATen/ops/special_zeta_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6331150Z copying torch/include/ATen/ops/huber_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6332570Z copying torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6340160Z copying torch/include/ATen/ops/conv_transpose2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6340790Z copying torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6341520Z copying torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6342300Z copying torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6342960Z copying torch/include/ATen/ops/signbit_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6343560Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6344300Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6345080Z copying torch/include/ATen/ops/logsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6346060Z copying torch/include/ATen/ops/_foreach_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6347450Z copying torch/include/ATen/ops/_embedding_bag_forward_only_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6348780Z copying torch/include/ATen/ops/_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6350120Z copying torch/include/ATen/ops/neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6351520Z copying torch/include/ATen/ops/take_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6352960Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6354410Z copying torch/include/ATen/ops/i0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6355720Z copying torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6357090Z copying torch/include/ATen/ops/special_gammainc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6358480Z copying torch/include/ATen/ops/squeeze_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6359830Z copying torch/include/ATen/ops/_sparse_broadcast_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6361190Z copying torch/include/ATen/ops/hardtanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6362730Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6364440Z 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-11-03T15:55:34.6365480Z copying torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6366990Z copying torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6368320Z copying torch/include/ATen/ops/_reshape_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6369660Z copying torch/include/ATen/ops/index_reduce_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6371040Z copying torch/include/ATen/ops/diagonal_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6372570Z copying torch/include/ATen/ops/dsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6373880Z copying torch/include/ATen/ops/gather_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6375390Z 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-11-03T15:55:34.6376840Z copying torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6378240Z copying torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6379540Z copying torch/include/ATen/ops/_debug_has_internal_overlap_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6380920Z copying torch/include/ATen/ops/_assert_scalar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6382410Z 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-11-03T15:55:34.6383660Z copying torch/include/ATen/ops/_unique.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6385140Z 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-11-03T15:55:34.6386480Z copying torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6387830Z copying torch/include/ATen/ops/silu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6389160Z copying torch/include/ATen/ops/resize_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6390520Z copying torch/include/ATen/ops/range_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6391840Z copying torch/include/ATen/ops/max_pool1d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6393210Z copying torch/include/ATen/ops/replication_pad1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6394500Z copying torch/include/ATen/ops/int_repr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6395940Z copying torch/include/ATen/ops/upsample_linear1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6397280Z copying torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6398640Z copying torch/include/ATen/ops/hardsigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6399950Z copying torch/include/ATen/ops/_lstm_mps_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6401330Z copying torch/include/ATen/ops/mul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6402880Z copying torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6404230Z 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-11-03T15:55:34.6405480Z copying torch/include/ATen/ops/cos_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6406930Z 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-11-03T15:55:34.6408260Z copying torch/include/ATen/ops/exp2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6409680Z copying torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6411040Z copying torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6412440Z copying torch/include/ATen/ops/coalesce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6414360Z 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-11-03T15:55:34.6415330Z 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-11-03T15:55:34.6418690Z 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-11-03T15:55:34.6420010Z 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-11-03T15:55:34.6426130Z copying torch/include/ATen/ops/add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6427230Z copying torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6428730Z 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-11-03T15:55:34.6433250Z copying torch/include/ATen/ops/bmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6434830Z copying torch/include/ATen/ops/to_mkldnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6440870Z copying torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6442270Z copying torch/include/ATen/ops/special_bessel_y0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6448740Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6450170Z copying torch/include/ATen/ops/floor_divide_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6451620Z copying torch/include/ATen/ops/real_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6458430Z copying torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6459760Z 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-11-03T15:55:34.6466720Z copying torch/include/ATen/ops/max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6468040Z copying torch/include/ATen/ops/_reshape_alias_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6474150Z copying torch/include/ATen/ops/col_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6475460Z copying torch/include/ATen/ops/logcumsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6476910Z 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-11-03T15:55:34.6482380Z copying torch/include/ATen/ops/fmod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6483450Z copying torch/include/ATen/ops/_foreach_clamp_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6489650Z copying torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6490590Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6491990Z copying torch/include/ATen/ops/_foreach_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6497960Z copying torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6499310Z 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-11-03T15:55:34.6506770Z 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-11-03T15:55:34.6508320Z 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-11-03T15:55:34.6514450Z copying torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6515970Z copying torch/include/ATen/ops/copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6522360Z copying torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6523440Z copying torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6525050Z copying torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6530730Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6531630Z copying torch/include/ATen/ops/linalg_solve_triangular_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6540690Z copying torch/include/ATen/ops/max_unpool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6545890Z copying torch/include/ATen/ops/bitwise_xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6546970Z copying torch/include/ATen/ops/feature_alpha_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6548440Z copying torch/include/ATen/ops/_empty_affine_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6554400Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6555410Z copying torch/include/ATen/ops/_standard_gamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6562670Z copying torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6563560Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6570600Z copying torch/include/ATen/ops/batch_norm_update_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6571620Z copying torch/include/ATen/ops/special_i1e_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6573020Z copying torch/include/ATen/ops/baddbmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6578430Z copying torch/include/ATen/ops/cummax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6580020Z copying torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6586760Z copying torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6587660Z copying torch/include/ATen/ops/norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6589110Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6593610Z copying torch/include/ATen/ops/concat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6595790Z copying torch/include/ATen/ops/uniform_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6601950Z copying torch/include/ATen/ops/gcd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6602990Z copying torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6604470Z copying torch/include/ATen/ops/new_zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6610270Z copying torch/include/ATen/ops/sigmoid_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6611460Z copying torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6618600Z copying torch/include/ATen/ops/_cast_Int_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6619610Z copying torch/include/ATen/ops/_unsafe_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6626950Z copying torch/include/ATen/ops/lerp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6627930Z copying torch/include/ATen/ops/_foreach_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6629310Z copying torch/include/ATen/ops/unfold_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6634390Z copying torch/include/ATen/ops/sub_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6635860Z copying torch/include/ATen/ops/max_pool1d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6641880Z copying torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6642780Z copying torch/include/ATen/ops/masked_fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6644250Z copying torch/include/ATen/ops/_log_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6651100Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6652060Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6658570Z copying torch/include/ATen/ops/unflatten_dense_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6660060Z copying torch/include/ATen/ops/new_ones_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6667240Z copying torch/include/ATen/ops/addcdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6668260Z 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-11-03T15:55:34.6669930Z copying torch/include/ATen/ops/_to_sparse_bsr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6675700Z copying torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6676800Z copying torch/include/ATen/ops/ravel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6683250Z copying torch/include/ATen/ops/_foreach_addcdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6684510Z 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-11-03T15:55:34.6691000Z copying torch/include/ATen/ops/linalg_pinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6692620Z 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-11-03T15:55:34.6699490Z copying torch/include/ATen/ops/view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6700590Z copying torch/include/ATen/ops/max_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6701910Z copying torch/include/ATen/ops/msort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6707350Z copying torch/include/ATen/ops/q_per_channel_scales_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6709530Z copying torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6714560Z copying torch/include/ATen/ops/random_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6716120Z copying torch/include/ATen/ops/scatter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6717690Z 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-11-03T15:55:34.6724100Z copying torch/include/ATen/ops/linalg_cross_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6725110Z copying torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6731450Z copying torch/include/ATen/ops/mkldnn_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6732830Z copying torch/include/ATen/ops/index_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6739150Z 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-11-03T15:55:34.6740120Z copying torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6741380Z copying torch/include/ATen/ops/lerp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6747500Z copying torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6748600Z copying torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6755050Z 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-11-03T15:55:34.6756640Z copying torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6762720Z copying torch/include/ATen/ops/_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6764030Z copying torch/include/ATen/ops/fft_ihfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6765520Z copying torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6770630Z copying torch/include/ATen/ops/sin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6771640Z copying torch/include/ATen/ops/hardsigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6779070Z copying torch/include/ATen/ops/fmin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6780200Z copying torch/include/ATen/ops/hardshrink_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6786650Z copying torch/include/ATen/ops/hsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6787920Z copying torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6789360Z copying torch/include/ATen/ops/signbit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6794580Z copying torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6795980Z copying torch/include/ATen/ops/hardtanh_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6802520Z copying torch/include/ATen/ops/special_modified_bessel_i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6803570Z copying torch/include/ATen/ops/_mps_convolution_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6804860Z copying torch/include/ATen/ops/hash_tensor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6810090Z copying torch/include/ATen/ops/repeat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6811560Z copying torch/include/ATen/ops/_reshape_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6818610Z 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-11-03T15:55:34.6819690Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6826530Z copying torch/include/ATen/ops/less_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6828230Z copying torch/include/ATen/ops/one_hot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6829260Z copying torch/include/ATen/ops/gcd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6834780Z copying torch/include/ATen/ops/_fft_c2c_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6836260Z copying torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6842850Z 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-11-03T15:55:34.6844800Z copying torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6849700Z copying torch/include/ATen/ops/_foreach_log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6852300Z copying torch/include/ATen/ops/cauchy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6857770Z copying torch/include/ATen/ops/rsqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6859400Z copying torch/include/ATen/ops/_foreach_trunc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6860990Z copying torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6867760Z copying torch/include/ATen/ops/expand_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6868930Z copying torch/include/ATen/ops/mps_convolution_transpose_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6874880Z copying torch/include/ATen/ops/linalg_matrix_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6876360Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6882990Z 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-11-03T15:55:34.6883970Z copying torch/include/ATen/ops/mul_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6885470Z copying torch/include/ATen/ops/miopen_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6891130Z copying torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6892210Z copying torch/include/ATen/ops/unfold_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6898590Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6900750Z copying torch/include/ATen/ops/linalg_svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6902160Z copying torch/include/ATen/ops/bitwise_and_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6903880Z copying torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6909150Z copying torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6910550Z copying torch/include/ATen/ops/fft_fft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6912020Z copying torch/include/ATen/ops/var_mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6916540Z copying torch/include/ATen/ops/normal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6918680Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6922160Z copying torch/include/ATen/ops/max_pool2d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6926270Z copying torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6927430Z copying torch/include/ATen/ops/fft_ifft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6931700Z copying torch/include/ATen/ops/argmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6935780Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6941360Z copying torch/include/ATen/ops/adaptive_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6942990Z copying torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6944390Z copying torch/include/ATen/ops/amax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6950910Z copying torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6951920Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6959120Z copying torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6960000Z copying torch/include/ATen/ops/_unsafe_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6966780Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6968200Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6969610Z copying torch/include/ATen/ops/_compute_linear_combination_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6975130Z copying torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6976140Z copying torch/include/ATen/ops/masked_fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6982400Z copying torch/include/ATen/ops/polygamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6983840Z copying torch/include/ATen/ops/l1_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6985280Z copying torch/include/ATen/ops/trace_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6989720Z copying torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6991180Z copying torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6997080Z copying torch/include/ATen/ops/sort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.6999330Z copying torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7005160Z copying torch/include/ATen/ops/grid_sampler_3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7006290Z copying torch/include/ATen/ops/mish_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7007750Z copying torch/include/ATen/ops/is_set_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7013610Z copying torch/include/ATen/ops/unflatten_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7021750Z copying torch/include/ATen/ops/_fused_adam_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7024180Z copying torch/include/ATen/ops/_dirichlet_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7029370Z copying torch/include/ATen/ops/einsum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7030780Z copying torch/include/ATen/ops/nan_to_num.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7032390Z copying torch/include/ATen/ops/q_zero_point_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7036850Z copying torch/include/ATen/ops/as_strided_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7038140Z copying torch/include/ATen/ops/t_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7042080Z copying torch/include/ATen/ops/logical_and_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7045690Z copying torch/include/ATen/ops/split_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7050820Z copying torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7053770Z copying torch/include/ATen/ops/_addmm_activation_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7054940Z copying torch/include/ATen/ops/lerp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7060460Z copying torch/include/ATen/ops/nansum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7061940Z copying torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7068870Z copying torch/include/ATen/ops/_fft_c2r_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7070160Z copying torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7071980Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7077640Z copying torch/include/ATen/ops/cosine_similarity_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7078610Z copying torch/include/ATen/ops/fix_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7085510Z copying torch/include/ATen/ops/_reshape_alias_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7086460Z copying torch/include/ATen/ops/flatten_dense_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7088030Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7095440Z copying torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7096490Z copying torch/include/ATen/ops/igamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7103180Z copying torch/include/ATen/ops/sum_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7104420Z copying torch/include/ATen/ops/poisson_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7105680Z copying torch/include/ATen/ops/full_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7110970Z copying torch/include/ATen/ops/convolution_backward_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7112290Z copying torch/include/ATen/ops/_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7118320Z 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-11-03T15:55:34.7119700Z copying torch/include/ATen/ops/linalg_eig_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7121020Z copying torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7127700Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7134830Z copying torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7136170Z 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-11-03T15:55:34.7143190Z copying torch/include/ATen/ops/expm1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7144360Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7145790Z copying torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7151130Z copying torch/include/ATen/ops/sinh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7152580Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7158890Z copying torch/include/ATen/ops/baddbmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7160340Z copying torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7161760Z copying torch/include/ATen/ops/group_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7167420Z copying torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7168380Z copying torch/include/ATen/ops/_autocast_to_full_precision_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7175090Z copying torch/include/ATen/ops/exp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7177600Z 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-11-03T15:55:34.7183200Z copying torch/include/ATen/ops/trunc_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7184400Z copying torch/include/ATen/ops/upsample_bilinear2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7190900Z copying torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7191940Z copying torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7198330Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7199770Z 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-11-03T15:55:34.7206280Z 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-11-03T15:55:34.7207400Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7208800Z copying torch/include/ATen/ops/clamp_max_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7214490Z 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-11-03T15:55:34.7215310Z copying torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7221750Z copying torch/include/ATen/ops/arange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7224190Z 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-11-03T15:55:34.7230220Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7231080Z copying torch/include/ATen/ops/hardshrink.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7232510Z copying torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7238250Z copying torch/include/ATen/ops/special_round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7239250Z copying torch/include/ATen/ops/_reshape_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7245720Z copying torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7247010Z copying torch/include/ATen/ops/index_fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7253600Z copying torch/include/ATen/ops/ceil_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7255120Z copying torch/include/ATen/ops/convolution_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7256520Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7261910Z copying torch/include/ATen/ops/linalg_diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7263400Z copying torch/include/ATen/ops/nonzero_numpy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7269830Z copying torch/include/ATen/ops/_index_put_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7271010Z copying torch/include/ATen/ops/istft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7272410Z copying torch/include/ATen/ops/_foreach_erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7278240Z copying torch/include/ATen/ops/logit_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7279200Z copying torch/include/ATen/ops/chain_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7286440Z copying torch/include/ATen/ops/_conj_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7287430Z copying torch/include/ATen/ops/softplus_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7294280Z copying torch/include/ATen/ops/_foreach_addcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7295250Z copying torch/include/ATen/ops/empty_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7296600Z copying torch/include/ATen/ops/slice_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7302650Z copying torch/include/ATen/ops/_compute_linear_combination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7303730Z 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-11-03T15:55:34.7309670Z copying torch/include/ATen/ops/_nnz_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7310990Z copying torch/include/ATen/ops/cummaxmin_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7312400Z copying torch/include/ATen/ops/fft_rfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7318090Z copying torch/include/ATen/ops/_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7319420Z 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-11-03T15:55:34.7326190Z copying torch/include/ATen/ops/cartesian_prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7327240Z copying torch/include/ATen/ops/_cudnn_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7328740Z copying torch/include/ATen/ops/_test_optional_filled_intlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7335030Z copying torch/include/ATen/ops/huber_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7340170Z copying torch/include/ATen/ops/index_select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7341410Z copying torch/include/ATen/ops/grid_sampler_3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7347830Z copying torch/include/ATen/ops/view_as_real_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7349280Z copying torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7355990Z copying torch/include/ATen/ops/index_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7357280Z copying torch/include/ATen/ops/_to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7363580Z copying torch/include/ATen/ops/max_unpool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7365180Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7371400Z copying torch/include/ATen/ops/native_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7372840Z copying torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7374240Z copying torch/include/ATen/ops/_fw_primal_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7381070Z copying torch/include/ATen/ops/isnan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7381920Z copying torch/include/ATen/ops/full_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7388620Z copying torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7389660Z copying torch/include/ATen/ops/fmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7396390Z copying torch/include/ATen/ops/randint_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7397560Z copying torch/include/ATen/ops/_neg_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7399120Z copying torch/include/ATen/ops/lshift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7403730Z copying torch/include/ATen/ops/unfold_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7405090Z 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-11-03T15:55:34.7411060Z copying torch/include/ATen/ops/istft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7412470Z copying torch/include/ATen/ops/_unique_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7413960Z copying torch/include/ATen/ops/fmin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7421240Z copying torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7422340Z 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-11-03T15:55:34.7428980Z copying torch/include/ATen/ops/rsqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7430310Z copying torch/include/ATen/ops/searchsorted_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7436720Z copying torch/include/ATen/ops/ones_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7437730Z copying torch/include/ATen/ops/erfc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7439240Z copying torch/include/ATen/ops/tanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7444370Z copying torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7445850Z copying torch/include/ATen/ops/_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7452310Z copying torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7453630Z copying torch/include/ATen/ops/_to_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7454780Z copying torch/include/ATen/ops/sinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7460450Z copying torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7461370Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7467570Z copying torch/include/ATen/ops/unsafe_split_with_sizes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7469980Z copying torch/include/ATen/ops/geometric_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7474720Z copying torch/include/ATen/ops/neg_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7476290Z 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-11-03T15:55:34.7478960Z copying torch/include/ATen/ops/erf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7483590Z copying torch/include/ATen/ops/align_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7484580Z copying torch/include/ATen/ops/zero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7488260Z copying torch/include/ATen/ops/xlogy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7492760Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7497040Z copying torch/include/ATen/ops/mT.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7500760Z copying torch/include/ATen/ops/uniform_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7501880Z copying torch/include/ATen/ops/embedding_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7506260Z copying torch/include/ATen/ops/orgqr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7510010Z 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-11-03T15:55:34.7514450Z copying torch/include/ATen/ops/cumprod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7515660Z copying torch/include/ATen/ops/range_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7519720Z 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-11-03T15:55:34.7523930Z copying torch/include/ATen/ops/_adaptive_avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7528830Z copying torch/include/ATen/ops/_masked_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7533130Z copying torch/include/ATen/ops/linalg_ldl_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7535620Z 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-11-03T15:55:34.7537260Z 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-11-03T15:55:34.7539530Z copying torch/include/ATen/ops/slice_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7545480Z copying torch/include/ATen/ops/random_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7548500Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7553010Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7554110Z copying torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7560530Z copying torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7561880Z copying torch/include/ATen/ops/floor_divide_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7568630Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7569700Z copying torch/include/ATen/ops/_linalg_det_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7571160Z copying torch/include/ATen/ops/sin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7577530Z copying torch/include/ATen/ops/can_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7578500Z copying torch/include/ATen/ops/cumsum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7584600Z copying torch/include/ATen/ops/atanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7586170Z 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-11-03T15:55:34.7592190Z copying torch/include/ATen/ops/kl_div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7593770Z 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-11-03T15:55:34.7594780Z copying torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7601140Z copying torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7602200Z copying torch/include/ATen/ops/linalg_vector_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7608380Z copying torch/include/ATen/ops/embedding_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7609750Z copying torch/include/ATen/ops/igamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7616200Z copying torch/include/ATen/ops/sparse_bsc_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7617120Z copying torch/include/ATen/ops/special_i0e_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7618910Z copying torch/include/ATen/ops/is_floating_point.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7624590Z copying torch/include/ATen/ops/fft_fft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7625930Z copying torch/include/ATen/ops/xlogy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7629140Z 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-11-03T15:55:34.7634270Z copying torch/include/ATen/ops/ceil_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7635280Z copying torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7639010Z copying torch/include/ATen/ops/masked_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7643750Z copying torch/include/ATen/ops/ge_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7646290Z copying torch/include/ATen/ops/_test_check_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7647370Z copying torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7652720Z copying torch/include/ATen/ops/squeeze.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7654350Z copying torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7660840Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7662210Z copying torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7668400Z copying torch/include/ATen/ops/permute_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7669520Z copying torch/include/ATen/ops/is_distributed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7671030Z copying torch/include/ATen/ops/_histogramdd_bin_edges.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7677190Z copying torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7684500Z copying torch/include/ATen/ops/relu6_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7685530Z copying torch/include/ATen/ops/sigmoid_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7693640Z 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-11-03T15:55:34.7694790Z copying torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7696160Z copying torch/include/ATen/ops/fft_hfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7702090Z copying torch/include/ATen/ops/rad2deg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7703200Z 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-11-03T15:55:34.7704810Z copying torch/include/ATen/ops/leaky_relu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7711290Z copying torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7712320Z copying torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7718900Z copying torch/include/ATen/ops/silu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7719800Z copying torch/include/ATen/ops/linalg_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7726120Z copying torch/include/ATen/ops/special_zeta_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7727150Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7728690Z copying torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7734820Z 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-11-03T15:55:34.7735750Z copying torch/include/ATen/ops/_foreach_sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7741390Z copying torch/include/ATen/ops/lshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7744490Z copying torch/include/ATen/ops/outer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7749460Z copying torch/include/ATen/ops/bilinear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7750510Z copying torch/include/ATen/ops/rms_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7751940Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7757850Z copying torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7758920Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7765800Z copying torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7767220Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7773840Z copying torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7774850Z copying torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7776170Z copying torch/include/ATen/ops/stft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7781140Z copying torch/include/ATen/ops/linalg_lu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7783580Z 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-11-03T15:55:34.7788880Z copying torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7789950Z copying torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7791550Z copying torch/include/ATen/ops/_linalg_det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7797600Z copying torch/include/ATen/ops/cholesky_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7798700Z 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-11-03T15:55:34.7805390Z copying torch/include/ATen/ops/asin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7806720Z copying torch/include/ATen/ops/from_file_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7813640Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7814640Z copying torch/include/ATen/ops/_test_serialization_subcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7816000Z 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-11-03T15:55:34.7821080Z copying torch/include/ATen/ops/_assert_async_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7823490Z copying torch/include/ATen/ops/nansum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7829440Z copying torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7830420Z copying torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7831820Z copying torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7837390Z copying torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7838390Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7844670Z copying torch/include/ATen/ops/norm_except_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7846220Z copying torch/include/ATen/ops/fft_irfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7852560Z copying torch/include/ATen/ops/_make_dual_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7853810Z copying torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7860590Z copying torch/include/ATen/ops/linalg_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7861780Z copying torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7868310Z copying torch/include/ATen/ops/log1p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7869710Z copying torch/include/ATen/ops/view_as_complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7875840Z copying torch/include/ATen/ops/repeat_interleave_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7877180Z copying torch/include/ATen/ops/is_complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7878690Z copying torch/include/ATen/ops/softplus_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7884060Z copying torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7885020Z copying torch/include/ATen/ops/_weight_int4pack_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7892850Z copying torch/include/ATen/ops/_version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7894250Z copying torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7898040Z copying torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7901320Z copying torch/include/ATen/ops/softplus_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7902340Z copying torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7903660Z copying torch/include/ATen/ops/scatter_add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7907370Z copying torch/include/ATen/ops/tril_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7908930Z copying torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7912880Z copying torch/include/ATen/ops/clip_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7916120Z copying torch/include/ATen/ops/matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7917500Z copying torch/include/ATen/ops/linalg_solve_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7922320Z copying torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7925620Z copying torch/include/ATen/ops/_mkldnn_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7929820Z copying torch/include/ATen/ops/special_ndtri_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7931310Z copying torch/include/ATen/ops/tensor_split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7934740Z copying torch/include/ATen/ops/align_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7940000Z 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-11-03T15:55:34.7944350Z copying torch/include/ATen/ops/convolution_backward_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7947340Z 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-11-03T15:55:34.7948470Z copying torch/include/ATen/ops/geometric.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7953480Z copying torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7954870Z 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-11-03T15:55:34.7961930Z copying torch/include/ATen/ops/_to_dense_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7963070Z copying torch/include/ATen/ops/i0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7969760Z copying torch/include/ATen/ops/hardshrink_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7970660Z copying torch/include/ATen/ops/requires_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7977520Z copying torch/include/ATen/ops/elu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7978600Z copying torch/include/ATen/ops/threshold_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7979890Z copying torch/include/ATen/ops/special_entr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7985680Z copying torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7986780Z copying torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7993870Z copying torch/include/ATen/ops/bitwise_xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7994790Z copying torch/include/ATen/ops/special_xlogy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.7996880Z copying torch/include/ATen/ops/acos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8001450Z copying torch/include/ATen/ops/cumprod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8003950Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8009420Z copying torch/include/ATen/ops/lgamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8011190Z copying torch/include/ATen/ops/_amp_update_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8012880Z copying torch/include/ATen/ops/expm1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8017270Z 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-11-03T15:55:34.8018500Z 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-11-03T15:55:34.8026820Z 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-11-03T15:55:34.8027750Z copying torch/include/ATen/ops/_index_put_impl_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8033150Z copying torch/include/ATen/ops/unfold_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8034570Z copying torch/include/ATen/ops/reflection_pad3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8040300Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8041660Z copying torch/include/ATen/ops/addbmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8047210Z copying torch/include/ATen/ops/matrix_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8049610Z copying torch/include/ATen/ops/upsample_nearest1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8050950Z copying torch/include/ATen/ops/matmul_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8056880Z copying torch/include/ATen/ops/max_pool3d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8057790Z copying torch/include/ATen/ops/_lstm_mps_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8066340Z copying torch/include/ATen/ops/_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8067520Z 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-11-03T15:55:34.8074550Z copying torch/include/ATen/ops/mps_convolution_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8075740Z copying torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8077060Z copying torch/include/ATen/ops/_coalesce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8081480Z copying torch/include/ATen/ops/special_exp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8083610Z copying torch/include/ATen/ops/special_erfcx_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8085140Z copying torch/include/ATen/ops/min_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8091040Z 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-11-03T15:55:34.8094620Z copying torch/include/ATen/ops/logit_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8098980Z copying torch/include/ATen/ops/scalar_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8101620Z copying torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8102590Z copying torch/include/ATen/ops/_cholesky_solve_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8106740Z copying torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8107730Z copying torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8111610Z copying torch/include/ATen/ops/special_legendre_polynomial_p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8115140Z copying torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8120310Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8122710Z copying torch/include/ATen/ops/_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8127780Z copying torch/include/ATen/ops/_foreach_reciprocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8128930Z copying torch/include/ATen/ops/softplus_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8131690Z copying torch/include/ATen/ops/is_inference_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8137040Z copying torch/include/ATen/ops/any_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8139440Z copying torch/include/ATen/ops/digamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8143940Z copying torch/include/ATen/ops/abs_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8145480Z 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-11-03T15:55:34.8148340Z copying torch/include/ATen/ops/elu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8152910Z copying torch/include/ATen/ops/mH_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8157270Z 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-11-03T15:55:34.8160380Z copying torch/include/ATen/ops/linalg_cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8161460Z copying torch/include/ATen/ops/inner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8166640Z copying torch/include/ATen/ops/nanmedian_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8168070Z copying torch/include/ATen/ops/fractional_max_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8174730Z copying torch/include/ATen/ops/kthvalue_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8175810Z copying torch/include/ATen/ops/conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8183280Z copying torch/include/ATen/ops/native_group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8184510Z copying torch/include/ATen/ops/mkldnn_linear_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8190950Z copying torch/include/ATen/ops/select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8192430Z copying torch/include/ATen/ops/special_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8193810Z copying torch/include/ATen/ops/reshape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8199420Z copying torch/include/ATen/ops/addcmul_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8200210Z copying torch/include/ATen/ops/atan_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8201650Z copying torch/include/ATen/ops/_test_serialization_subcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8206970Z copying torch/include/ATen/ops/_scaled_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8208140Z 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-11-03T15:55:34.8214050Z copying torch/include/ATen/ops/neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8216450Z copying torch/include/ATen/ops/_weight_int4pack_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8221920Z copying torch/include/ATen/ops/addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8222970Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8224560Z copying torch/include/ATen/ops/hardshrink_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8230810Z copying torch/include/ATen/ops/_cudnn_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8231910Z copying torch/include/ATen/ops/softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8238470Z copying torch/include/ATen/ops/silu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8240870Z copying torch/include/ATen/ops/copy_sparse_to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8245810Z copying torch/include/ATen/ops/mse_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8247020Z copying torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8248290Z copying torch/include/ATen/ops/vander_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8253990Z copying torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8255260Z copying torch/include/ATen/ops/cumprod_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8262510Z copying torch/include/ATen/ops/_upsample_nearest_exact3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8263980Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8269680Z copying torch/include/ATen/ops/matrix_H_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8270830Z copying torch/include/ATen/ops/_resize_output.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8272540Z 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-11-03T15:55:34.8277950Z 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-11-03T15:55:34.8278840Z copying torch/include/ATen/ops/linalg_cond.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8286330Z copying torch/include/ATen/ops/special_polygamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8287510Z copying torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8289660Z copying torch/include/ATen/ops/replication_pad2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8294550Z copying torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8295780Z copying torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8301870Z copying torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8302820Z copying torch/include/ATen/ops/smm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8304250Z copying torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8310720Z copying torch/include/ATen/ops/_addmm_activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8311700Z copying torch/include/ATen/ops/ormqr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8319160Z copying torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8320180Z copying torch/include/ATen/ops/floor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8326130Z copying torch/include/ATen/ops/sin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8327200Z copying torch/include/ATen/ops/_spdiags_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8328570Z copying torch/include/ATen/ops/float_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8333380Z copying torch/include/ATen/ops/imag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8335840Z 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-11-03T15:55:34.8341440Z copying torch/include/ATen/ops/_foreach_pow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8342490Z copying torch/include/ATen/ops/sinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8345220Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8350630Z copying torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8351910Z copying torch/include/ATen/ops/crow_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8358360Z copying torch/include/ATen/ops/fft_ifftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8359950Z 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-11-03T15:55:34.8366510Z copying torch/include/ATen/ops/sum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8368020Z copying torch/include/ATen/ops/exp2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8368600Z 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-11-03T15:55:34.8373840Z copying torch/include/ATen/ops/_assert_scalar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8375450Z 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-11-03T15:55:34.8381880Z copying torch/include/ATen/ops/view_as_complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8382870Z copying torch/include/ATen/ops/_log_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8389290Z copying torch/include/ATen/ops/sigmoid_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8390410Z 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-11-03T15:55:34.8391860Z copying torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8396760Z copying torch/include/ATen/ops/empty_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8397840Z 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-11-03T15:55:34.8404330Z copying torch/include/ATen/ops/is_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8405900Z copying torch/include/ATen/ops/special_i1e_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8412160Z copying torch/include/ATen/ops/floor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8413590Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8414970Z copying torch/include/ATen/ops/prelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8419540Z copying torch/include/ATen/ops/take_along_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8421130Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8426990Z copying torch/include/ATen/ops/glu_backward_jvp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8428460Z copying torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8435530Z copying torch/include/ATen/ops/_unsafe_index_put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8436440Z copying torch/include/ATen/ops/softshrink_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8437950Z 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-11-03T15:55:34.8444350Z copying torch/include/ATen/ops/_cudnn_rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8445430Z copying torch/include/ATen/ops/replication_pad1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8451750Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8453720Z copying torch/include/ATen/ops/_linalg_det_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8455830Z copying torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8461780Z copying torch/include/ATen/ops/max_unpool3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8462730Z copying torch/include/ATen/ops/_cdist_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8469510Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8470830Z copying torch/include/ATen/ops/reflection_pad3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8472240Z 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-11-03T15:55:34.8478770Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8479810Z copying torch/include/ATen/ops/_cdist_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8486350Z copying torch/include/ATen/ops/multi_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8487350Z copying torch/include/ATen/ops/_foreach_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8488790Z copying torch/include/ATen/ops/group_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8494680Z copying torch/include/ATen/ops/special_erfcx_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8495940Z copying torch/include/ATen/ops/_foreach_minimum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8502710Z copying torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8504290Z copying torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8506510Z copying torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8510690Z copying torch/include/ATen/ops/_coalesced.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8512330Z copying torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8518360Z copying torch/include/ATen/ops/_nested_get_ragged_idx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8519860Z copying torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8521730Z copying torch/include/ATen/ops/conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8527570Z copying torch/include/ATen/ops/special_logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8528720Z copying torch/include/ATen/ops/linalg_eigvalsh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8534770Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8536300Z copying torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8541790Z copying torch/include/ATen/ops/dsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8543810Z 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-11-03T15:55:34.8544920Z 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-11-03T15:55:34.8552060Z copying torch/include/ATen/ops/igammac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8559180Z copying torch/include/ATen/ops/_efficientzerotensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8560510Z copying torch/include/ATen/ops/arange_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8566810Z 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-11-03T15:55:34.8567780Z copying torch/include/ATen/ops/clamp_min_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8569360Z 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-11-03T15:55:34.8574360Z 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-11-03T15:55:34.8575650Z copying torch/include/ATen/ops/celu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8582160Z 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-11-03T15:55:34.8583390Z copying torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8584950Z 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-11-03T15:55:34.8590990Z copying torch/include/ATen/ops/_foreach_addcdiv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8592340Z 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-11-03T15:55:34.8599790Z copying torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8600680Z copying torch/include/ATen/ops/_chunk_cat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8607860Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8609130Z copying torch/include/ATen/ops/fmin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8610520Z copying torch/include/ATen/ops/upsample_nearest2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8615740Z copying torch/include/ATen/ops/fft_ifftshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8618330Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8624370Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8625480Z copying torch/include/ATen/ops/softplus_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8626910Z copying torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8631810Z copying torch/include/ATen/ops/index_fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8634220Z copying torch/include/ATen/ops/quantized_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8639340Z copying torch/include/ATen/ops/logaddexp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8640390Z copying torch/include/ATen/ops/linalg_householder_product_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8641930Z copying torch/include/ATen/ops/arange_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8646870Z copying torch/include/ATen/ops/_nnpack_spatial_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8647850Z copying torch/include/ATen/ops/bitwise_not_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8652070Z copying torch/include/ATen/ops/conv_depthwise3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8655910Z copying torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8659850Z copying torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8660890Z 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-11-03T15:55:34.8666280Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8670860Z copying torch/include/ATen/ops/_batch_norm_impl_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8676950Z copying torch/include/ATen/ops/sqrt_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8679930Z copying torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8681910Z 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-11-03T15:55:34.8685680Z copying torch/include/ATen/ops/_foreach_sub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8688250Z copying torch/include/ATen/ops/sub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8693860Z copying torch/include/ATen/ops/_to_sparse_semi_structured_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8696300Z copying torch/include/ATen/ops/unbind_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8702060Z copying torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8703160Z copying torch/include/ATen/ops/signbit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8704590Z copying torch/include/ATen/ops/gelu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8711010Z copying torch/include/ATen/ops/is_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8712200Z copying torch/include/ATen/ops/numpy_T_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8718760Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8721120Z copying torch/include/ATen/ops/to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8727000Z copying torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8728280Z copying torch/include/ATen/ops/replication_pad2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8729760Z copying torch/include/ATen/ops/is_floating_point_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8734790Z copying torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8736100Z copying torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8738680Z copying torch/include/ATen/ops/_nested_tensor_strides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8744100Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8746580Z 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-11-03T15:55:34.8748120Z copying torch/include/ATen/ops/all_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8753660Z copying torch/include/ATen/ops/tanh_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8755090Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8763050Z copying torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8767620Z copying torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8769050Z copying torch/include/ATen/ops/masked_select_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8772200Z copying torch/include/ATen/ops/_flash_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8776650Z copying torch/include/ATen/ops/logit_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8779730Z copying torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8780880Z copying torch/include/ATen/ops/chunk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8786490Z copying torch/include/ATen/ops/_foobar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8789530Z copying torch/include/ATen/ops/atan2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8793680Z copying torch/include/ATen/ops/sym_is_contiguous_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8796100Z copying torch/include/ATen/ops/nextafter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8797650Z copying torch/include/ATen/ops/amin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8802570Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8804000Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8809580Z copying torch/include/ATen/ops/_sparse_csr_prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8811010Z copying torch/include/ATen/ops/_cholesky_solve_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8816840Z copying torch/include/ATen/ops/frexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8818640Z copying torch/include/ATen/ops/alias_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8823830Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8825240Z copying torch/include/ATen/ops/gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8827040Z copying torch/include/ATen/ops/isclose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8833260Z copying torch/include/ATen/ops/batch_norm_gather_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8834730Z copying torch/include/ATen/ops/gather_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8840760Z copying torch/include/ATen/ops/mkldnn_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8842330Z copying torch/include/ATen/ops/grid_sampler_3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8848620Z copying torch/include/ATen/ops/diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8849750Z copying torch/include/ATen/ops/sspaddmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8851350Z copying torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8857170Z copying torch/include/ATen/ops/_test_string_default_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8858430Z copying torch/include/ATen/ops/_logcumsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8864380Z copying torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8865930Z 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-11-03T15:55:34.8872500Z copying torch/include/ATen/ops/_unique_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8874060Z copying torch/include/ATen/ops/_sobol_engine_draw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8875660Z copying torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8880270Z copying torch/include/ATen/ops/feature_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8882000Z copying torch/include/ATen/ops/diagflat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8887330Z copying torch/include/ATen/ops/_values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8889030Z 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-11-03T15:55:34.8895930Z copying torch/include/ATen/ops/index_add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8897150Z copying torch/include/ATen/ops/glu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8898610Z copying torch/include/ATen/ops/_wrapped_linear_prepack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8904750Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8905730Z copying torch/include/ATen/ops/combinations_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8913030Z copying torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8914240Z copying torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8915610Z copying torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8920890Z copying torch/include/ATen/ops/swapdims_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8922010Z copying torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8928370Z 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-11-03T15:55:34.8930730Z 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-11-03T15:55:34.8936090Z copying torch/include/ATen/ops/isreal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8937090Z copying torch/include/ATen/ops/addcmul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8938580Z copying torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8943750Z copying torch/include/ATen/ops/cumulative_trapezoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8944650Z copying torch/include/ATen/ops/arctan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8952640Z 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-11-03T15:55:34.8953660Z copying torch/include/ATen/ops/_sparse_sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8959870Z copying torch/include/ATen/ops/isnan_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8961320Z 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-11-03T15:55:34.8962560Z copying torch/include/ATen/ops/sinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8964130Z copying torch/include/ATen/ops/reflection_pad1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8976380Z copying torch/include/ATen/ops/arctanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8977060Z copying torch/include/ATen/ops/col2im.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8978590Z copying torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8982330Z copying torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8986510Z copying torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8990480Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8991500Z copying torch/include/ATen/ops/upsample_linear1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8995740Z copying torch/include/ATen/ops/_cudnn_rnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.8999490Z copying torch/include/ATen/ops/_sparse_semi_structured_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9003720Z copying torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9004590Z copying torch/include/ATen/ops/histc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9008970Z copying torch/include/ATen/ops/unique_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9012120Z copying torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9017090Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9018160Z copying torch/include/ATen/ops/_coalesce_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9022200Z copying torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9026310Z copying torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9030180Z copying torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9031160Z copying torch/include/ATen/ops/geometric_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9035360Z copying torch/include/ATen/ops/logit_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9039310Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9043590Z copying torch/include/ATen/ops/mH.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9046320Z copying torch/include/ATen/ops/count_nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9047510Z copying torch/include/ATen/ops/fmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9053090Z copying torch/include/ATen/ops/_nested_view_from_buffer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9054480Z copying torch/include/ATen/ops/avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9061360Z copying torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9062750Z copying torch/include/ATen/ops/trace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9070400Z copying torch/include/ATen/ops/_weight_norm_interface_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9071340Z copying torch/include/ATen/ops/addbmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9072850Z copying torch/include/ATen/ops/empty_strided_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9074190Z copying torch/include/ATen/ops/add_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9077540Z copying torch/include/ATen/ops/mv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9080850Z copying torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9085960Z copying torch/include/ATen/ops/tensor_split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9088670Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9091160Z copying torch/include/ATen/ops/var_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9095220Z copying torch/include/ATen/ops/slice_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9098240Z copying torch/include/ATen/ops/feature_alpha_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9105060Z copying torch/include/ATen/ops/softshrink.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9106140Z copying torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9112580Z copying torch/include/ATen/ops/lgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9113910Z 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-11-03T15:55:34.9115490Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9120840Z copying torch/include/ATen/ops/polar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9122250Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9128810Z copying torch/include/ATen/ops/mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9129890Z 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-11-03T15:55:34.9131280Z copying torch/include/ATen/ops/_adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9137810Z copying torch/include/ATen/ops/pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9139130Z copying torch/include/ATen/ops/_foreach_zero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9145830Z copying torch/include/ATen/ops/lt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9147200Z copying torch/include/ATen/ops/_foreach_cosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9153970Z 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-11-03T15:55:34.9155000Z copying torch/include/ATen/ops/repeat_interleave_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9156400Z copying torch/include/ATen/ops/gelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9161310Z copying torch/include/ATen/ops/adaptive_max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9162820Z copying torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9184060Z copying torch/include/ATen/ops/logical_not.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9185260Z copying torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9186720Z copying torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9189150Z copying torch/include/ATen/ops/max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9192720Z copying torch/include/ATen/ops/clamp_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9193890Z copying torch/include/ATen/ops/cross_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9195320Z copying torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9196750Z copying torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9198200Z copying torch/include/ATen/ops/unbind_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9199630Z copying torch/include/ATen/ops/frac_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9201160Z 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-11-03T15:55:34.9205380Z copying torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9206570Z copying torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9211920Z copying torch/include/ATen/ops/slice_inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9213000Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9218560Z copying torch/include/ATen/ops/ravel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9219890Z copying torch/include/ATen/ops/_nested_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9226840Z copying torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9227840Z copying torch/include/ATen/ops/floor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9232770Z copying torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9233690Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9239330Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9240220Z copying torch/include/ATen/ops/renorm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9245120Z 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-11-03T15:55:34.9246450Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9253250Z copying torch/include/ATen/ops/bernoulli_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9254420Z copying torch/include/ATen/ops/cumsum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9260470Z copying torch/include/ATen/ops/from_file_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9261420Z copying torch/include/ATen/ops/layer_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9268010Z copying torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9269020Z copying torch/include/ATen/ops/gelu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9274550Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9275620Z copying torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9281100Z copying torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9282150Z copying torch/include/ATen/ops/_to_dense_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9284110Z copying torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9289380Z copying torch/include/ATen/ops/allclose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9290310Z copying torch/include/ATen/ops/special_bessel_j0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9296300Z copying torch/include/ATen/ops/tensordot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9297990Z copying torch/include/ATen/ops/_foreach_tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9303650Z copying torch/include/ATen/ops/linalg_ldl_factor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9305100Z copying torch/include/ATen/ops/thnn_conv2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9311120Z copying torch/include/ATen/ops/_reshape_alias_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9312270Z 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-11-03T15:55:34.9314230Z copying torch/include/ATen/ops/_embedding_bag_forward_only_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9319910Z copying torch/include/ATen/ops/_lu_with_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9320830Z copying torch/include/ATen/ops/bincount_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9326910Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9328320Z 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-11-03T15:55:34.9333750Z copying torch/include/ATen/ops/mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9334730Z copying torch/include/ATen/ops/digamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9341600Z copying torch/include/ATen/ops/positive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9342530Z copying torch/include/ATen/ops/log10_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9349780Z copying torch/include/ATen/ops/remainder_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9350850Z copying torch/include/ATen/ops/bitwise_not_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9352160Z copying torch/include/ATen/ops/_euclidean_dist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9356650Z copying torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9359590Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9363590Z copying torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9364920Z copying torch/include/ATen/ops/logical_xor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9368700Z copying torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9372390Z copying torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9377980Z copying torch/include/ATen/ops/resize_as_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9379410Z copying torch/include/ATen/ops/col2im_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9380860Z copying torch/include/ATen/ops/clamp_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9385560Z copying torch/include/ATen/ops/einsum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9386710Z copying torch/include/ATen/ops/align_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9393470Z copying torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9394820Z copying torch/include/ATen/ops/mode_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9400660Z copying torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9401620Z copying torch/include/ATen/ops/rnn_tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9408660Z copying torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9409470Z copying torch/include/ATen/ops/is_set_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9415700Z copying torch/include/ATen/ops/linalg_householder_product_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9416740Z copying torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9418160Z copying torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9423250Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9425630Z 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-11-03T15:55:34.9431630Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9432690Z 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-11-03T15:55:34.9435060Z copying torch/include/ATen/ops/sym_is_contiguous.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9440150Z copying torch/include/ATen/ops/_cast_Byte_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9441330Z copying torch/include/ATen/ops/dstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9447860Z copying torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9448810Z copying torch/include/ATen/ops/sign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9455540Z copying torch/include/ATen/ops/triu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9456680Z copying torch/include/ATen/ops/is_distributed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9458070Z copying torch/include/ATen/ops/_sparse_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9465110Z copying torch/include/ATen/ops/unflatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9470190Z copying torch/include/ATen/ops/_segment_reduce_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9472600Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9473980Z 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-11-03T15:55:34.9477410Z copying torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9478860Z copying torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9480230Z copying torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9487200Z copying torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9494800Z copying torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9496030Z copying torch/include/ATen/ops/_nested_get_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9497800Z copying torch/include/ATen/ops/mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9502990Z copying torch/include/ATen/ops/gru_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9504320Z copying torch/include/ATen/ops/log2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9511980Z copying torch/include/ATen/ops/_fused_adam_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9512880Z copying torch/include/ATen/ops/one_hot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9519470Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9520410Z copying torch/include/ATen/ops/as_strided_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9521830Z copying torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9527900Z 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-11-03T15:55:34.9528830Z copying torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9535890Z copying torch/include/ATen/ops/new_zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9537460Z 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-11-03T15:55:34.9538970Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9544690Z copying torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9545610Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9553490Z copying torch/include/ATen/ops/tan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9554470Z copying torch/include/ATen/ops/lu_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9555900Z copying torch/include/ATen/ops/quantized_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9560710Z copying torch/include/ATen/ops/sgn_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9562280Z copying torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9568660Z copying torch/include/ATen/ops/_test_functorch_fallback_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9569590Z copying torch/include/ATen/ops/_fw_primal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9571190Z 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-11-03T15:55:34.9577620Z copying torch/include/ATen/ops/scatter_reduce_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9578580Z copying torch/include/ATen/ops/fft_irfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9585480Z copying torch/include/ATen/ops/addmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9586570Z copying torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9593190Z copying torch/include/ATen/ops/blackman_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9594130Z 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-11-03T15:55:34.9595600Z copying torch/include/ATen/ops/_embedding_bag_forward_only_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9600560Z copying torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9601610Z copying torch/include/ATen/ops/quantize_per_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9608640Z copying torch/include/ATen/ops/transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9609560Z copying torch/include/ATen/ops/_fused_sgd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9616600Z copying torch/include/ATen/ops/amin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9617610Z copying torch/include/ATen/ops/acosh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9619080Z copying torch/include/ATen/ops/_foreach_rsqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9623680Z copying torch/include/ATen/ops/sum_to_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9624960Z copying torch/include/ATen/ops/var_mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9631520Z copying torch/include/ATen/ops/histc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9632500Z copying torch/include/ATen/ops/align_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9634070Z copying torch/include/ATen/ops/diagonal_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9640540Z copying torch/include/ATen/ops/sym_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9641760Z 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-11-03T15:55:34.9647460Z copying torch/include/ATen/ops/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9649890Z copying torch/include/ATen/ops/quantile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9655680Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9656610Z copying torch/include/ATen/ops/ge_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9658080Z copying torch/include/ATen/ops/triangular_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9663420Z 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-11-03T15:55:34.9664350Z copying torch/include/ATen/ops/hash_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9669830Z copying torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9677230Z copying torch/include/ATen/ops/amax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9678260Z 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-11-03T15:55:34.9682370Z 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-11-03T15:55:34.9686160Z copying torch/include/ATen/ops/fft_ifftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9690360Z copying torch/include/ATen/ops/log_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9691630Z copying torch/include/ATen/ops/pow_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9695660Z copying torch/include/ATen/ops/asinh_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9699460Z copying torch/include/ATen/ops/_histogramdd_bin_edges_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9703970Z copying torch/include/ATen/ops/q_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9704990Z copying torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9708780Z copying torch/include/ATen/ops/native_dropout_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9712620Z copying torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9716850Z copying torch/include/ATen/ops/rot90_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9717950Z copying torch/include/ATen/ops/linalg_eig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9722920Z copying torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9727140Z copying torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9730730Z 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-11-03T15:55:34.9731760Z copying torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9735550Z copying torch/include/ATen/ops/stride_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9738580Z copying torch/include/ATen/ops/cudnn_is_acceptable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9743520Z copying torch/include/ATen/ops/narrow_copy_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9744460Z copying torch/include/ATen/ops/special_zeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9750800Z copying torch/include/ATen/ops/avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9752260Z copying torch/include/ATen/ops/renorm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9758260Z 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-11-03T15:55:34.9759250Z copying torch/include/ATen/ops/is_coalesced_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9760810Z copying torch/include/ATen/ops/affine_grid_generator_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9767020Z copying torch/include/ATen/ops/_nested_view_from_buffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9768030Z copying torch/include/ATen/ops/true_divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9774100Z copying torch/include/ATen/ops/_linalg_solve_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9775780Z copying torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9782150Z copying torch/include/ATen/ops/histogram_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9783160Z copying torch/include/ATen/ops/linalg_lu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9784580Z 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-11-03T15:55:34.9790800Z copying torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9791910Z copying torch/include/ATen/ops/poisson_nll_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9798710Z copying torch/include/ATen/ops/unique_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9799750Z copying torch/include/ATen/ops/rshift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9807230Z 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-11-03T15:55:34.9808020Z copying torch/include/ATen/ops/unsafe_split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9809510Z 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-11-03T15:55:34.9814990Z copying torch/include/ATen/ops/dense_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9816060Z copying torch/include/ATen/ops/bitwise_right_shift_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9823070Z copying torch/include/ATen/ops/masked_fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9824060Z copying torch/include/ATen/ops/masked_fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9830760Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9832280Z 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-11-03T15:55:34.9833580Z copying torch/include/ATen/ops/_cast_Byte_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9838460Z copying torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9839820Z copying torch/include/ATen/ops/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9845900Z copying torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9846920Z copying torch/include/ATen/ops/convolution_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9848370Z copying torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9854830Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9856660Z copying torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9863110Z copying torch/include/ATen/ops/_reshape_alias_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9864570Z copying torch/include/ATen/ops/_upsample_nearest_exact2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9866090Z copying torch/include/ATen/ops/nll_loss_forward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9867590Z copying torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9871050Z copying torch/include/ATen/ops/linalg_vector_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9872140Z copying torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9874090Z copying torch/include/ATen/ops/contiguous_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9876560Z copying torch/include/ATen/ops/le_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9881710Z copying torch/include/ATen/ops/convolution_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9890870Z copying torch/include/ATen/ops/hardtanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9893080Z copying torch/include/ATen/ops/elu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9894260Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9901090Z copying torch/include/ATen/ops/elu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9902190Z copying torch/include/ATen/ops/angle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9909180Z copying torch/include/ATen/ops/cross_entropy_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9910180Z copying torch/include/ATen/ops/special_gammaincc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9915930Z copying torch/include/ATen/ops/subtract_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9917710Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9918690Z copying torch/include/ATen/ops/poisson_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9923490Z copying torch/include/ATen/ops/floor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9925940Z copying torch/include/ATen/ops/retains_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9931450Z copying torch/include/ATen/ops/sspaddmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9932490Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9934300Z copying torch/include/ATen/ops/index_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9940970Z copying torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9941880Z copying torch/include/ATen/ops/scatter_add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9948780Z copying torch/include/ATen/ops/_copy_from.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:34.9949820Z copying torch/include/ATen/ops/narrow_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0161870Z copying torch/include/ATen/ops/flip_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0163140Z copying torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0164480Z copying torch/include/ATen/ops/logical_not_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0165920Z copying torch/include/ATen/ops/_scaled_grouped_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0167430Z copying torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0178270Z copying torch/include/ATen/ops/mse_loss_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0179460Z copying torch/include/ATen/ops/fractional_max_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0180890Z copying torch/include/ATen/ops/mkldnn_linear_backward_input.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0182240Z copying torch/include/ATen/ops/special_logsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0183650Z copying torch/include/ATen/ops/adaptive_avg_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0185080Z copying torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0186590Z 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-11-03T15:55:35.0187960Z copying torch/include/ATen/ops/bitwise_or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0189220Z copying torch/include/ATen/ops/l1_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0190660Z copying torch/include/ATen/ops/geqrf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0192050Z copying torch/include/ATen/ops/log2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0193450Z copying torch/include/ATen/ops/isposinf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0194800Z copying torch/include/ATen/ops/_masked_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0196320Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0197780Z copying torch/include/ATen/ops/reciprocal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0199200Z copying torch/include/ATen/ops/lcm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0200560Z copying torch/include/ATen/ops/frexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0201970Z copying torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0203440Z copying torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0204880Z copying torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0206180Z copying torch/include/ATen/ops/special_xlog1py_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0207530Z copying torch/include/ATen/ops/exp2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0208900Z copying torch/include/ATen/ops/mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0210440Z copying torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0211730Z copying torch/include/ATen/ops/le_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0213060Z copying torch/include/ATen/ops/conv3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0214500Z copying torch/include/ATen/ops/stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0215960Z copying torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0217380Z copying torch/include/ATen/ops/special_erfinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0218710Z copying torch/include/ATen/ops/var_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0220070Z copying torch/include/ATen/ops/rsqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0221450Z copying torch/include/ATen/ops/_convolution_double_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0222810Z copying torch/include/ATen/ops/polar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0224150Z copying torch/include/ATen/ops/_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0225640Z copying torch/include/ATen/ops/_make_dual_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0226830Z copying torch/include/ATen/ops/trunc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0228190Z copying torch/include/ATen/ops/meshgrid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0229530Z copying torch/include/ATen/ops/slow_conv_transpose2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0230980Z copying torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0232630Z copying torch/include/ATen/ops/silu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0234180Z copying torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0235680Z copying torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0236950Z copying torch/include/ATen/ops/special_logit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0238310Z copying torch/include/ATen/ops/affine_grid_generator_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0239690Z copying torch/include/ATen/ops/full_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0405970Z copying torch/include/ATen/ops/lgamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0408860Z copying torch/include/ATen/ops/isneginf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0410240Z 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-11-03T15:55:35.0412070Z copying torch/include/ATen/ops/linalg_inv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0413720Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0415190Z copying torch/include/ATen/ops/index_put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0416570Z copying torch/include/ATen/ops/data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0418120Z copying torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0419570Z copying torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0421130Z 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-11-03T15:55:35.0422600Z copying torch/include/ATen/ops/div_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.0423760Z copying torch/include/ATen/ops/logaddexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3743680Z 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-11-03T15:55:35.3755400Z copying torch/include/ATen/ops/permute_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3769600Z copying torch/include/ATen/ops/dense_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3781480Z copying torch/include/ATen/ops/xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3793660Z copying torch/include/ATen/ops/max_unpool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3803380Z copying torch/include/ATen/ops/linalg_inv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3811830Z copying torch/include/ATen/ops/_sparse_sparse_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3820530Z copying torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3828850Z 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-11-03T15:55:35.3837380Z copying torch/include/ATen/ops/ge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3917260Z copying torch/include/ATen/ops/_foreach_clamp_min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3925470Z copying torch/include/ATen/ops/index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3932630Z copying torch/include/ATen/ops/tanh_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3942530Z copying torch/include/ATen/ops/cos_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3946830Z copying torch/include/ATen/ops/grid_sampler_3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3948450Z copying torch/include/ATen/ops/split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3950240Z copying torch/include/ATen/ops/div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3951870Z copying torch/include/ATen/ops/msort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3953520Z copying torch/include/ATen/ops/refine_names_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3954980Z copying torch/include/ATen/ops/t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3956520Z copying torch/include/ATen/ops/isneginf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3958140Z 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-11-03T15:55:35.3959850Z copying torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3961570Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3963040Z copying torch/include/ATen/ops/_sparse_mask_projection_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3964750Z copying torch/include/ATen/ops/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3966300Z copying torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3967890Z copying torch/include/ATen/ops/copy_sparse_to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3969280Z copying torch/include/ATen/ops/bmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3970810Z copying torch/include/ATen/ops/_foreach_log_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3972620Z copying torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3974110Z copying torch/include/ATen/ops/logaddexp2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3975760Z copying torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3977210Z copying torch/include/ATen/ops/softplus_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3978690Z copying torch/include/ATen/ops/log_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3980130Z copying torch/include/ATen/ops/trapz_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3981990Z copying torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3983480Z copying torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3986650Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3988050Z copying torch/include/ATen/ops/arcsin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3989500Z copying torch/include/ATen/ops/batch_norm_update_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3991050Z copying torch/include/ATen/ops/exp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3992630Z copying torch/include/ATen/ops/cosine_embedding_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3994080Z copying torch/include/ATen/ops/_sparse_sparse_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3995650Z copying torch/include/ATen/ops/fractional_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3997170Z copying torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.3998590Z copying torch/include/ATen/ops/col_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4000050Z copying torch/include/ATen/ops/lgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4001670Z copying torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4003140Z copying torch/include/ATen/ops/pin_memory_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4004570Z copying torch/include/ATen/ops/_foreach_addcdiv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4006020Z copying torch/include/ATen/ops/linalg_lu_factor_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4007530Z copying torch/include/ATen/ops/special_bessel_j1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4008870Z copying torch/include/ATen/ops/div_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4010350Z copying torch/include/ATen/ops/_copy_from_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4011730Z copying torch/include/ATen/ops/_neg_view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4013390Z copying torch/include/ATen/ops/concat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4014740Z 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-11-03T15:55:35.4016210Z copying torch/include/ATen/ops/histogramdd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4017610Z copying torch/include/ATen/ops/_native_batch_norm_legit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4019160Z copying torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4020950Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4022940Z 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-11-03T15:55:35.4024190Z copying torch/include/ATen/ops/igamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4025780Z copying torch/include/ATen/ops/_nested_get_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4027350Z copying torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4028890Z copying torch/include/ATen/ops/_standard_gamma_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4030320Z copying torch/include/ATen/ops/zero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4032410Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4033990Z 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-11-03T15:55:35.4035410Z copying torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4036830Z copying torch/include/ATen/ops/_foreach_clamp_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4045000Z copying torch/include/ATen/ops/pixel_unshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4045740Z 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-11-03T15:55:35.4046450Z copying torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4047100Z copying torch/include/ATen/ops/logcumsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4047700Z copying torch/include/ATen/ops/leaky_relu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4048400Z copying torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4049160Z copying torch/include/ATen/ops/to_mkldnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4049810Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4050610Z copying torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4052030Z copying torch/include/ATen/ops/sin_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4053490Z 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-11-03T15:55:35.4054940Z copying torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4056360Z copying torch/include/ATen/ops/_is_any_true_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4057770Z copying torch/include/ATen/ops/linalg_tensorinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4059230Z copying torch/include/ATen/ops/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4060800Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4062150Z copying torch/include/ATen/ops/exponential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4063530Z copying torch/include/ATen/ops/gt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4065120Z copying torch/include/ATen/ops/linalg_det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4066390Z copying torch/include/ATen/ops/masked_select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4067860Z copying torch/include/ATen/ops/xlogy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4069730Z copying torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4071690Z copying torch/include/ATen/ops/cudnn_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4073490Z copying torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4074880Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4077580Z copying torch/include/ATen/ops/_foreach_sqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4078990Z copying torch/include/ATen/ops/atleast_1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4080600Z copying torch/include/ATen/ops/isin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4081930Z 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-11-03T15:55:35.4083450Z copying torch/include/ATen/ops/_to_sparse_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4084970Z copying torch/include/ATen/ops/sinc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4086950Z copying torch/include/ATen/ops/dist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4088750Z copying torch/include/ATen/ops/norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4090270Z copying torch/include/ATen/ops/hardtanh_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4091720Z 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-11-03T15:55:35.4093720Z copying torch/include/ATen/ops/copysign_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4095460Z 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-11-03T15:55:35.4096950Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4098420Z copying torch/include/ATen/ops/tan_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4099840Z copying torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4101440Z copying torch/include/ATen/ops/_reshape_alias_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4103010Z 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-11-03T15:55:35.4104620Z copying torch/include/ATen/ops/histogramdd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4106470Z copying torch/include/ATen/ops/aminmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4108000Z copying torch/include/ATen/ops/index_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4109400Z copying torch/include/ATen/ops/_nested_get_ragged_idx_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4110890Z copying torch/include/ATen/ops/leaky_relu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4112380Z copying torch/include/ATen/ops/lshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4113770Z copying torch/include/ATen/ops/fft_irfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4115230Z copying torch/include/ATen/ops/digamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4116610Z copying torch/include/ATen/ops/grid_sampler_3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4118120Z 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-11-03T15:55:35.4119520Z copying torch/include/ATen/ops/_sparse_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4120980Z copying torch/include/ATen/ops/gather_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4122360Z copying torch/include/ATen/ops/_has_same_storage_numel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4123760Z copying torch/include/ATen/ops/_dimI.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4125250Z copying torch/include/ATen/ops/exponential_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4126750Z copying torch/include/ATen/ops/_weight_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4128240Z copying torch/include/ATen/ops/lu_unpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4130000Z 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-11-03T15:55:35.4131440Z copying torch/include/ATen/ops/_foreach_ceil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4132990Z copying torch/include/ATen/ops/_convert_weight_to_int4pack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4134660Z copying torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4136110Z copying torch/include/ATen/ops/matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4137580Z copying torch/include/ATen/ops/_print_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4139510Z copying torch/include/ATen/ops/to_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4145810Z copying torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4147090Z copying torch/include/ATen/ops/nanmedian_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4148610Z copying torch/include/ATen/ops/quantize_per_channel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4153020Z copying torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4154460Z copying torch/include/ATen/ops/replication_pad3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4161080Z copying torch/include/ATen/ops/ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4162340Z copying torch/include/ATen/ops/argwhere.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4169050Z copying torch/include/ATen/ops/_foreach_tan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4170640Z copying torch/include/ATen/ops/asin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4172170Z copying torch/include/ATen/ops/index_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4177810Z copying torch/include/ATen/ops/avg_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4179220Z copying torch/include/ATen/ops/bitwise_or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4186220Z copying torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4187580Z copying torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4189090Z copying torch/include/ATen/ops/diff_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4193810Z copying torch/include/ATen/ops/fix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4195470Z copying torch/include/ATen/ops/_standard_gamma_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4202020Z copying torch/include/ATen/ops/special_expit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4203200Z copying torch/include/ATen/ops/rsub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4204940Z copying torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4211090Z 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-11-03T15:55:35.4212330Z copying torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4218430Z copying torch/include/ATen/ops/std.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4220020Z copying torch/include/ATen/ops/_is_all_true_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4226850Z 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-11-03T15:55:35.4228290Z copying torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4229780Z copying torch/include/ATen/ops/polygamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4234080Z copying torch/include/ATen/ops/index_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4235610Z copying torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4241740Z copying torch/include/ATen/ops/_test_optional_floatlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4243090Z copying torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4244740Z copying torch/include/ATen/ops/_embedding_bag_forward_only.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4250400Z copying torch/include/ATen/ops/index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4251750Z copying torch/include/ATen/ops/aminmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4258870Z copying torch/include/ATen/ops/_log_softmax_backward_data_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4260600Z 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-11-03T15:55:35.4266280Z copying torch/include/ATen/ops/tril_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4267920Z copying torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4269520Z copying torch/include/ATen/ops/sparse_mask_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4273550Z copying torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4274970Z copying torch/include/ATen/ops/fmod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4280550Z copying torch/include/ATen/ops/randint_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4282080Z copying torch/include/ATen/ops/linalg_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4289300Z copying torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4290990Z 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-11-03T15:55:35.4292660Z copying torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4297310Z copying torch/include/ATen/ops/special_expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4299680Z copying torch/include/ATen/ops/special_erfinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4304560Z copying torch/include/ATen/ops/linalg_ldl_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4306170Z copying torch/include/ATen/ops/linalg_qr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4308220Z copying torch/include/ATen/ops/pad_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4313700Z copying torch/include/ATen/ops/hardswish.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4315170Z copying torch/include/ATen/ops/geqrf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4321780Z copying torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4323300Z copying torch/include/ATen/ops/grid_sampler_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4329420Z copying torch/include/ATen/ops/logit_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4330840Z copying torch/include/ATen/ops/ones_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4332620Z copying torch/include/ATen/ops/_test_optional_filled_intlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4337120Z copying torch/include/ATen/ops/split_with_sizes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4338720Z copying torch/include/ATen/ops/_test_warn_in_autograd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4345000Z copying torch/include/ATen/ops/neg_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4346490Z copying torch/include/ATen/ops/isfinite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4348280Z copying torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4354610Z copying torch/include/ATen/ops/q_per_channel_axis_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4356180Z copying torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4362450Z copying torch/include/ATen/ops/_batch_norm_no_update.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4364100Z copying torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4370340Z copying torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4371800Z copying torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4373680Z copying torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4377730Z 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-11-03T15:55:35.4379870Z copying torch/include/ATen/ops/sparse_coo_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4385840Z copying torch/include/ATen/ops/_is_zerotensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4387370Z copying torch/include/ATen/ops/xlogy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4389130Z copying torch/include/ATen/ops/is_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4393840Z copying torch/include/ATen/ops/log10_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4395480Z copying torch/include/ATen/ops/_standard_gamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4398720Z copying torch/include/ATen/ops/conv2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4402570Z copying torch/include/ATen/ops/dequantize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4406300Z copying torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4408050Z copying torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4411940Z copying torch/include/ATen/ops/_pin_memory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4415270Z copying torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4421550Z copying torch/include/ATen/ops/gcd_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4423290Z copying torch/include/ATen/ops/_convolution_mode_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4429120Z copying torch/include/ATen/ops/convolution_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4430790Z copying torch/include/ATen/ops/cosine_similarity_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4432470Z copying torch/include/ATen/ops/_shape_as_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4436720Z copying torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4438230Z copying torch/include/ATen/ops/isposinf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4443990Z copying torch/include/ATen/ops/conv_transpose3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4445660Z copying torch/include/ATen/ops/_nested_tensor_from_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4452230Z copying torch/include/ATen/ops/reflection_pad3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4453850Z copying torch/include/ATen/ops/unflatten_dense_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4455560Z copying torch/include/ATen/ops/_version_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4461150Z copying torch/include/ATen/ops/_pdist_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4462910Z copying torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4469160Z copying torch/include/ATen/ops/empty_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4470750Z copying torch/include/ATen/ops/uniform.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4477410Z copying torch/include/ATen/ops/grid_sampler_3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4479060Z copying torch/include/ATen/ops/masked_scatter_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4480830Z copying torch/include/ATen/ops/rshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4485410Z copying torch/include/ATen/ops/cumprod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4487040Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4494300Z copying torch/include/ATen/ops/mse_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4495980Z copying torch/include/ATen/ops/diagonal_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4497820Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4502240Z copying torch/include/ATen/ops/avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4504090Z copying torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4510850Z copying torch/include/ATen/ops/sparse_coo_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4512600Z copying torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4514330Z copying torch/include/ATen/ops/bmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4518440Z copying torch/include/ATen/ops/detach_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4519900Z copying torch/include/ATen/ops/set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4526160Z copying torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4527780Z copying torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4529490Z 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-11-03T15:55:35.4533290Z copying torch/include/ATen/ops/silu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4534720Z copying torch/include/ATen/ops/native_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4541070Z copying torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4542570Z copying torch/include/ATen/ops/_add_relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4548270Z copying torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4550290Z copying torch/include/ATen/ops/replication_pad2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4551770Z copying torch/include/ATen/ops/randperm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4558180Z copying torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4559530Z copying torch/include/ATen/ops/det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4565950Z copying torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4567450Z copying torch/include/ATen/ops/exp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4573760Z copying torch/include/ATen/ops/special_modified_bessel_k0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4575210Z copying torch/include/ATen/ops/_fft_c2r_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4576890Z copying torch/include/ATen/ops/_add_batch_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4581480Z 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-11-03T15:55:35.4583080Z copying torch/include/ATen/ops/threshold_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4589690Z copying torch/include/ATen/ops/_foreach_tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4591230Z copying torch/include/ATen/ops/linalg_vander.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4593560Z copying torch/include/ATen/ops/sigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4598480Z copying torch/include/ATen/ops/mish_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4599990Z copying torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4606430Z copying torch/include/ATen/ops/_has_same_storage_numel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4607880Z copying torch/include/ATen/ops/embedding_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4609540Z 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-11-03T15:55:35.4614150Z copying torch/include/ATen/ops/_cast_Double_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4615890Z copying torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4622210Z copying torch/include/ATen/ops/_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4623460Z copying torch/include/ATen/ops/diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4624980Z copying torch/include/ATen/ops/new_full_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4630460Z copying torch/include/ATen/ops/isposinf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4632080Z copying torch/include/ATen/ops/new_empty_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4638330Z copying torch/include/ATen/ops/_weight_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4640030Z copying torch/include/ATen/ops/triu_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4646060Z copying torch/include/ATen/ops/upsample_nearest1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4647550Z copying torch/include/ATen/ops/special_round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4649150Z copying torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4653850Z copying torch/include/ATen/ops/_has_same_storage_numel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4655020Z copying torch/include/ATen/ops/quantile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4661280Z copying torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4663570Z copying torch/include/ATen/ops/index_select_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4668790Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4670160Z copying torch/include/ATen/ops/pad_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4671590Z copying torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4676880Z 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-11-03T15:55:35.4678210Z copying torch/include/ATen/ops/elu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4684800Z copying torch/include/ATen/ops/glu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4686420Z 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-11-03T15:55:35.4693350Z 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-11-03T15:55:35.4694490Z copying torch/include/ATen/ops/_fw_primal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4700990Z copying torch/include/ATen/ops/sym_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4702660Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4709500Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4710750Z copying torch/include/ATen/ops/hardsigmoid_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4712240Z copying torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4717960Z copying torch/include/ATen/ops/batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4719150Z copying torch/include/ATen/ops/row_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4725820Z copying torch/include/ATen/ops/batch_norm_backward_elemt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4726960Z copying torch/include/ATen/ops/slow_conv3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4728470Z copying torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4734000Z copying torch/include/ATen/ops/special_bessel_j1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4735030Z copying torch/include/ATen/ops/t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4741560Z copying torch/include/ATen/ops/det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4743130Z copying torch/include/ATen/ops/_to_sparse_bsr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4749090Z copying torch/include/ATen/ops/randperm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4750550Z copying torch/include/ATen/ops/expand_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4751990Z copying torch/include/ATen/ops/_fft_c2r.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4756810Z copying torch/include/ATen/ops/sqrt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4757640Z copying torch/include/ATen/ops/cosine_similarity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4765230Z copying torch/include/ATen/ops/_foreach_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4766590Z copying torch/include/ATen/ops/nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4774130Z 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-11-03T15:55:35.4775340Z copying torch/include/ATen/ops/sparse_csc_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4776860Z copying torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4781860Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4783170Z copying torch/include/ATen/ops/q_per_channel_axis_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4788880Z copying torch/include/ATen/ops/logdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4790450Z copying torch/include/ATen/ops/unsqueeze_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4791880Z copying torch/include/ATen/ops/take_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4796720Z copying torch/include/ATen/ops/miopen_rnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4798170Z copying torch/include/ATen/ops/minimum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4805410Z 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-11-03T15:55:35.4806330Z copying torch/include/ATen/ops/greater_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4813610Z 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-11-03T15:55:35.4814980Z copying torch/include/ATen/ops/sparse_resize_and_clear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4816330Z copying torch/include/ATen/ops/prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4821760Z copying torch/include/ATen/ops/tril_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4822760Z copying torch/include/ATen/ops/miopen_depthwise_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4829790Z copying torch/include/ATen/ops/_functional_assert_async_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4830910Z copying torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4832140Z copying torch/include/ATen/ops/_is_any_true_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4836850Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4838410Z copying torch/include/ATen/ops/_fused_adam_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4845040Z copying torch/include/ATen/ops/max_unpool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4846020Z copying torch/include/ATen/ops/linalg_pinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4847430Z copying torch/include/ATen/ops/_cast_Half_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4854680Z copying torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4855710Z copying torch/include/ATen/ops/native_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4862530Z copying torch/include/ATen/ops/unique_dim_consecutive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4863600Z copying torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4870460Z copying torch/include/ATen/ops/col2im_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4871520Z copying torch/include/ATen/ops/replication_pad2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4877880Z 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-11-03T15:55:35.4878590Z copying torch/include/ATen/ops/crow_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4879810Z copying torch/include/ATen/ops/cosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4885780Z copying torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4886830Z copying torch/include/ATen/ops/threshold_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4888480Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4894040Z 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-11-03T15:55:35.4894940Z copying torch/include/ATen/ops/_foreach_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4901880Z 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-11-03T15:55:35.4903450Z copying torch/include/ATen/ops/binary_cross_entropy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4909660Z copying torch/include/ATen/ops/_softmax_backward_data_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4910830Z copying torch/include/ATen/ops/log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4912270Z copying torch/include/ATen/ops/special_modified_bessel_i0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4918480Z copying torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4919530Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4925500Z copying torch/include/ATen/ops/_to_sparse_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4926880Z 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-11-03T15:55:35.4928340Z copying torch/include/ATen/ops/lu_unpack_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4933640Z copying torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4935060Z 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-11-03T15:55:35.4941080Z copying torch/include/ATen/ops/is_pinned_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4943190Z 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-11-03T15:55:35.4944090Z copying torch/include/ATen/ops/isposinf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4950810Z 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-11-03T15:55:35.4951700Z copying torch/include/ATen/ops/_cslt_compress_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4958850Z copying torch/include/ATen/ops/slow_conv_dilated3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4959900Z copying torch/include/ATen/ops/_foreach_abs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4967180Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4968220Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4969600Z copying torch/include/ATen/ops/_scaled_mm_v2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4975130Z copying torch/include/ATen/ops/histc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4976250Z copying torch/include/ATen/ops/upsample_trilinear3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4983060Z copying torch/include/ATen/ops/_sparse_sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4984090Z copying torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4985510Z copying torch/include/ATen/ops/relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4991290Z copying torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4992180Z copying torch/include/ATen/ops/linalg_matrix_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.4999280Z copying torch/include/ATen/ops/_index_put_impl_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5000430Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5001730Z copying torch/include/ATen/ops/_scaled_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5006810Z copying torch/include/ATen/ops/_weight_norm_interface_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5008320Z copying torch/include/ATen/ops/trapz_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5014150Z copying torch/include/ATen/ops/block_diag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5016810Z copying torch/include/ATen/ops/logical_or_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5022180Z copying torch/include/ATen/ops/copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5023400Z 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-11-03T15:55:35.5024920Z 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-11-03T15:55:35.5029810Z copying torch/include/ATen/ops/cumsum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5030840Z copying torch/include/ATen/ops/special_entr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5037960Z copying torch/include/ATen/ops/fft_ifftshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5038930Z copying torch/include/ATen/ops/batch_norm_elemt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5046050Z copying torch/include/ATen/ops/_assert_async.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5047080Z copying torch/include/ATen/ops/q_zero_point_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5048500Z copying torch/include/ATen/ops/special_zeta_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5054180Z copying torch/include/ATen/ops/_values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5055740Z copying torch/include/ATen/ops/is_same_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5062150Z copying torch/include/ATen/ops/atan2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5063710Z copying torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5066760Z copying torch/include/ATen/ops/diagonal_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5067980Z copying torch/include/ATen/ops/atanh_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5069500Z copying torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5076300Z copying torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5077380Z copying torch/include/ATen/ops/isnan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5078950Z copying torch/include/ATen/ops/scaled_dot_product_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5084390Z copying torch/include/ATen/ops/bitwise_left_shift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5085440Z copying torch/include/ATen/ops/l1_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5092030Z 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-11-03T15:55:35.5093470Z copying torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5101330Z copying torch/include/ATen/ops/cholesky_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5102710Z copying torch/include/ATen/ops/nuclear_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5109430Z copying torch/include/ATen/ops/lift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5110740Z 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-11-03T15:55:35.5117520Z copying torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5118560Z copying torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5120000Z copying torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5125870Z copying torch/include/ATen/ops/and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5126850Z copying torch/include/ATen/ops/select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5134320Z 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-11-03T15:55:35.5135480Z copying torch/include/ATen/ops/true_divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5137030Z 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-11-03T15:55:35.5142390Z copying torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5143830Z copying torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5150330Z copying torch/include/ATen/ops/nonzero_numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5151230Z copying torch/include/ATen/ops/special_sinc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5152700Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5157760Z copying torch/include/ATen/ops/_foreach_cos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5159170Z 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-11-03T15:55:35.5165320Z copying torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5166470Z copying torch/include/ATen/ops/_pdist_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5167890Z copying torch/include/ATen/ops/cos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5174130Z copying torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5175250Z copying torch/include/ATen/ops/tan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5181480Z copying torch/include/ATen/ops/ones_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5182970Z copying torch/include/ATen/ops/_conj_physical_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5189300Z copying torch/include/ATen/ops/nll_loss2d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5190670Z 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-11-03T15:55:35.5192070Z copying torch/include/ATen/ops/_to_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5197890Z copying torch/include/ATen/ops/cos_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5198940Z 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-11-03T15:55:35.5205290Z copying torch/include/ATen/ops/mkldnn_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5206820Z copying torch/include/ATen/ops/_fused_rms_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5208360Z copying torch/include/ATen/ops/_linalg_eigh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5215310Z copying torch/include/ATen/ops/_print_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5216470Z 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-11-03T15:55:35.5223620Z copying torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5224620Z copying torch/include/ATen/ops/cat_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5231120Z copying torch/include/ATen/ops/ne_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5232120Z copying torch/include/ATen/ops/expand_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5233750Z 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-11-03T15:55:35.5239020Z copying torch/include/ATen/ops/complex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5240290Z copying torch/include/ATen/ops/linalg_ldl_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-11-03T15:55:35.5247410Z 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-11-03T15:55:35.5248480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-11-03T15:55:35.5249390Z copying torch/include/ATen/functorch/BatchedFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-11-03T15:55:35.5250950Z copying torch/include/ATen/functorch/FunctionalizeInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-11-03T15:55:35.5255400Z copying torch/include/ATen/functorch/ADInterpreters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-11-03T15:55:35.5256550Z copying torch/include/ATen/functorch/Interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-11-03T15:55:35.5264050Z copying torch/include/ATen/functorch/TensorWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-11-03T15:55:35.5265210Z copying torch/include/ATen/functorch/BatchRulesHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-11-03T15:55:35.5266870Z copying torch/include/ATen/functorch/PlumbingHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-11-03T15:55:35.5271510Z copying torch/include/ATen/functorch/VmapInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-11-03T15:55:35.5272890Z copying torch/include/ATen/functorch/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-11-03T15:55:35.5279760Z copying torch/include/ATen/functorch/BatchingMetaprogramming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-11-03T15:55:35.5280710Z copying torch/include/ATen/functorch/BatchedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-11-03T15:55:35.5282080Z copying torch/include/ATen/functorch/LegacyVmapTransforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-11-03T15:55:35.5287360Z copying torch/include/ATen/functorch/DynamicLayer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-11-03T15:55:35.5288340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-11-03T15:55:35.5289110Z copying torch/include/ATen/cudnn/Handles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-11-03T15:55:35.5295550Z copying torch/include/ATen/cudnn/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-11-03T15:55:35.5296790Z copying torch/include/ATen/cudnn/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-11-03T15:55:35.5303240Z copying torch/include/ATen/cudnn/Descriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-11-03T15:55:35.5304580Z copying torch/include/ATen/cudnn/Handle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-11-03T15:55:35.5305960Z copying torch/include/ATen/cudnn/cudnn-wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-11-03T15:55:35.5311300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5312340Z copying torch/include/c10/core/RefcountedDeleter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5313790Z copying torch/include/c10/core/QEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5319420Z copying torch/include/c10/core/TensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5320920Z copying torch/include/c10/core/SymFloat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5322330Z copying torch/include/c10/core/GradMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5327770Z copying torch/include/c10/core/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5328770Z copying torch/include/c10/core/CPUAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5335890Z copying torch/include/c10/core/DefaultDtype.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5336910Z copying torch/include/c10/core/DefaultTensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5343480Z copying torch/include/c10/core/alignment.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5344330Z copying torch/include/c10/core/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5345750Z copying torch/include/c10/core/Backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5350900Z copying torch/include/c10/core/AllocatorConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5352330Z copying torch/include/c10/core/CompileTimeFunctionPointer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5359530Z copying torch/include/c10/core/DeviceArray.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5360490Z copying torch/include/c10/core/PyHandleCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5361980Z copying torch/include/c10/core/ConstantSymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5367790Z copying torch/include/c10/core/WrapDimMinimal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5368760Z copying torch/include/c10/core/QScheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5375950Z copying torch/include/c10/core/SafePyObject.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5377280Z copying torch/include/c10/core/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5378790Z copying torch/include/c10/core/UndefinedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5383950Z copying torch/include/c10/core/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5385440Z copying torch/include/c10/core/AutogradState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5392070Z copying torch/include/c10/core/SymIntArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5393040Z copying torch/include/c10/core/thread_pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5394510Z copying torch/include/c10/core/CopyBytes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5401250Z copying torch/include/c10/core/SymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5402340Z copying torch/include/c10/core/StreamGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5408810Z copying torch/include/c10/core/DynamicCast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5410250Z copying torch/include/c10/core/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5416590Z copying torch/include/c10/core/GeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5417670Z copying torch/include/c10/core/DispatchKeySet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5419710Z copying torch/include/c10/core/Allocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5424580Z copying torch/include/c10/core/TensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5427200Z copying torch/include/c10/core/Contiguity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5432210Z copying torch/include/c10/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5433650Z copying torch/include/c10/core/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5435150Z copying torch/include/c10/core/DeviceType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5439830Z copying torch/include/c10/core/DeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5441590Z copying torch/include/c10/core/StorageImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5444460Z copying torch/include/c10/core/SymbolicShapeMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5449850Z copying torch/include/c10/core/MemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5453510Z copying torch/include/c10/core/SymBool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5458500Z copying torch/include/c10/core/DispatchKey.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5460000Z copying torch/include/c10/core/ScalarTypeToTypeMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5461370Z copying torch/include/c10/core/InferenceMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5466940Z copying torch/include/c10/core/SymInt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5468110Z copying torch/include/c10/core/OptionalRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5469510Z copying torch/include/c10/core/CachingDeviceAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-11-03T15:55:35.5474860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5475380Z copying torch/include/c10/core/impl/InlineStreamGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5476710Z copying torch/include/c10/core/impl/SizesAndStrides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5484510Z copying torch/include/c10/core/impl/InlineDeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5485440Z copying torch/include/c10/core/impl/GPUTrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5491400Z copying torch/include/c10/core/impl/COWDeleter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5492900Z copying torch/include/c10/core/impl/LocalDispatchKeySet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5498700Z copying torch/include/c10/core/impl/alloc_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5500140Z copying torch/include/c10/core/impl/PyInterpreterHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5501620Z copying torch/include/c10/core/impl/VirtualGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5508070Z copying torch/include/c10/core/impl/HermeticPyObjectTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5509100Z copying torch/include/c10/core/impl/PyObjectSlot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5516160Z copying torch/include/c10/core/impl/TorchDispatchModeTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5517140Z copying torch/include/c10/core/impl/PyInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5524380Z copying torch/include/c10/core/impl/PythonDispatcherTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5525290Z copying torch/include/c10/core/impl/COW.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5526720Z copying torch/include/c10/core/impl/InlineEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5532240Z copying torch/include/c10/core/impl/DeviceGuardImplInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5533240Z copying torch/include/c10/core/impl/FakeGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-11-03T15:55:35.5539730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-11-03T15:55:35.5540490Z copying torch/include/c10/test/util/complex_test_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-11-03T15:55:35.5542180Z 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-11-03T15:55:35.5543720Z copying torch/include/c10/test/util/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-11-03T15:55:35.5547160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5547690Z copying torch/include/c10/util/Type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5549620Z copying torch/include/c10/util/order_preserving_flat_hash_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5556040Z copying torch/include/c10/util/Float8_e4m3fn-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5557900Z copying torch/include/c10/util/quint4x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5563630Z copying torch/include/c10/util/FbcodeMaps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5564820Z copying torch/include/c10/util/FileSystem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5580330Z copying torch/include/c10/util/Semaphore.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5581190Z copying torch/include/c10/util/signal_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5582570Z copying torch/include/c10/util/error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5588260Z copying torch/include/c10/util/safe_numerics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5589290Z copying torch/include/c10/util/Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5596310Z copying torch/include/c10/util/flat_hash_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5604320Z copying torch/include/c10/util/env.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5606370Z copying torch/include/c10/util/llvmMathExtras.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5608000Z copying torch/include/c10/util/Gauge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5615280Z copying torch/include/c10/util/WaitCounterDynamicBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5616490Z copying torch/include/c10/util/Float8_e8m0fnu-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5623410Z copying torch/include/c10/util/Synchronized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5624310Z copying torch/include/c10/util/Bitset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5625800Z copying torch/include/c10/util/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5631590Z copying torch/include/c10/util/Float8_e4m3fnuz-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5633020Z copying torch/include/c10/util/TypeSafeSignMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5639790Z copying torch/include/c10/util/intrusive_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5641310Z copying torch/include/c10/util/string_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5642760Z copying torch/include/c10/util/IntrusiveList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5644090Z copying torch/include/c10/util/win32-headers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5645440Z copying torch/include/c10/util/AlignOf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5648950Z copying torch/include/c10/util/static_tracepoint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5649840Z copying torch/include/c10/util/ssize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5651150Z copying torch/include/c10/util/Enumerate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5652520Z copying torch/include/c10/util/numa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5657250Z copying torch/include/c10/util/qint32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5658200Z copying torch/include/c10/util/Float4_e2m1fn_x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5664910Z copying torch/include/c10/util/CallOnce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5666980Z copying torch/include/c10/util/Float8_e5m2fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5673130Z copying torch/include/c10/util/MaybeOwned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5674460Z copying torch/include/c10/util/Half-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5675900Z copying torch/include/c10/util/TypeTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5681080Z copying torch/include/c10/util/DeadlockDetection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5682050Z copying torch/include/c10/util/FunctionRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5689070Z copying torch/include/c10/util/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5690710Z copying torch/include/c10/util/overflows.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5691790Z copying torch/include/c10/util/ExclusivelyOwned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5697340Z copying torch/include/c10/util/Load.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5698940Z copying torch/include/c10/util/BFloat16-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5705000Z copying torch/include/c10/util/static_tracepoint_elfx86.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5707080Z copying torch/include/c10/util/ConstexprCrc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5708520Z copying torch/include/c10/util/ThreadLocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5714710Z copying torch/include/c10/util/IdWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5715980Z copying torch/include/c10/util/Flags.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5722400Z copying torch/include/c10/util/overloaded.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5723370Z copying torch/include/c10/util/Float8_e4m3fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5724740Z copying torch/include/c10/util/quint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5730230Z copying torch/include/c10/util/Float8_e5m2-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5731660Z copying torch/include/c10/util/StringUtil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5739080Z copying torch/include/c10/util/Logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5740140Z copying torch/include/c10/util/MathConstants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5741550Z copying torch/include/c10/util/Registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5747380Z copying torch/include/c10/util/Optional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5748380Z copying torch/include/c10/util/Float8_e5m2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5755490Z copying torch/include/c10/util/tempfile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5756690Z copying torch/include/c10/util/copysign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5762650Z copying torch/include/c10/util/ArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5764580Z copying torch/include/c10/util/thread_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5772300Z copying torch/include/c10/util/strides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5779360Z copying torch/include/c10/util/Unicode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5780320Z copying torch/include/c10/util/Float8_e8m0fnu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5781760Z copying torch/include/c10/util/TypeCast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5783180Z copying torch/include/c10/util/sparse_bitset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5784640Z copying torch/include/c10/util/OptionalArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5786450Z copying torch/include/c10/util/BFloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5788000Z copying torch/include/c10/util/TypeList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5790200Z copying torch/include/c10/util/TypeIndex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5796730Z copying torch/include/c10/util/NetworkFlow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5797270Z copying torch/include/c10/util/Array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5801080Z copying torch/include/c10/util/logging_is_google_glog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5803200Z copying torch/include/c10/util/Metaprogramming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5804590Z copying torch/include/c10/util/WaitCounter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5811190Z copying torch/include/c10/util/quint2x4.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5812200Z copying torch/include/c10/util/floating_point_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5813570Z copying torch/include/c10/util/ParallelGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5816830Z copying torch/include/c10/util/BFloat16-math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5819960Z copying torch/include/c10/util/int128.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5821570Z copying torch/include/c10/util/Lazy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5823040Z copying torch/include/c10/util/Deprecated.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5824480Z copying torch/include/c10/util/irange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5825910Z copying torch/include/c10/util/SmallBuffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5827340Z copying torch/include/c10/util/ScopeExit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5828670Z copying torch/include/c10/util/Unroll.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5830060Z copying torch/include/c10/util/LeftRight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5831420Z copying torch/include/c10/util/bit_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5832820Z copying torch/include/c10/util/qint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5834150Z copying torch/include/c10/util/complex_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5835580Z copying torch/include/c10/util/logging_is_not_google_glog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5836950Z copying torch/include/c10/util/DynamicCounter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5838350Z copying torch/include/c10/util/Exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5839940Z copying torch/include/c10/util/UniqueVoidPtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5841310Z copying torch/include/c10/util/ThreadLocalDebugInfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5842730Z copying torch/include/c10/util/Float8_e4m3fn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5844080Z copying torch/include/c10/util/AbortHandler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5845480Z copying torch/include/c10/util/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5846800Z copying torch/include/c10/util/accumulate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5848140Z copying torch/include/c10/util/C++17.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5849530Z copying torch/include/c10/util/strong_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5851160Z copying torch/include/c10/util/ApproximateClock.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5852500Z copying torch/include/c10/util/SmallVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5854320Z copying torch/include/c10/util/Float8_e5m2fnuz-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5855800Z copying torch/include/c10/util/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5857300Z copying torch/include/c10/util/python_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5858740Z copying torch/include/c10/util/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5860190Z copying torch/include/c10/util/bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5861650Z copying torch/include/c10/util/string_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5863400Z copying torch/include/c10/util/complex_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5864920Z copying torch/include/c10/util/ExclusivelyOwnedTensorTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5866410Z copying torch/include/c10/util/generic_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-11-03T15:55:35.5867850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-11-03T15:55:35.5868670Z copying torch/include/c10/metal/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-11-03T15:55:35.5870170Z copying torch/include/c10/metal/igamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-11-03T15:55:35.5871890Z copying torch/include/c10/metal/special_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-11-03T15:55:35.5873780Z copying torch/include/c10/metal/reduction_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-11-03T15:55:35.5875270Z copying torch/include/c10/metal/expm1f.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-11-03T15:55:35.5876600Z copying torch/include/c10/metal/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-11-03T15:55:35.5878100Z copying torch/include/c10/metal/indexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-11-03T15:55:35.5879590Z copying torch/include/c10/metal/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-11-03T15:55:35.5880910Z copying torch/include/c10/metal/atomic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-11-03T15:55:35.5882190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5883030Z copying torch/include/c10/cuda/CUDADeviceAssertion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5884380Z copying torch/include/c10/cuda/driver_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5885790Z copying torch/include/c10/cuda/CUDAMathCompat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5887190Z copying torch/include/c10/cuda/CUDAAlgorithm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5888660Z copying torch/include/c10/cuda/CUDAStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5889980Z copying torch/include/c10/cuda/CUDAGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5891310Z copying torch/include/c10/cuda/CUDAMiscFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5892730Z copying torch/include/c10/cuda/CUDAGraphsC10Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5894070Z copying torch/include/c10/cuda/CUDAMacros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5895550Z copying torch/include/c10/cuda/CUDAAllocatorConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5896810Z copying torch/include/c10/cuda/CUDAFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5898220Z copying torch/include/c10/cuda/CUDAException.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5899570Z copying torch/include/c10/cuda/CUDACachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5901170Z copying torch/include/c10/cuda/CUDADeviceAssertionHost.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-11-03T15:55:35.5902360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-11-03T15:55:35.5903160Z copying torch/include/c10/cuda/impl/CUDATest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-11-03T15:55:35.5904660Z copying torch/include/c10/cuda/impl/CUDAGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-11-03T15:55:35.5905800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-11-03T15:55:35.5906530Z copying torch/include/c10/xpu/XPUGraphsC10Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-11-03T15:55:35.5907910Z copying torch/include/c10/xpu/XPUStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-11-03T15:55:35.5909250Z copying torch/include/c10/xpu/XPUDeviceProp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-11-03T15:55:35.5910640Z copying torch/include/c10/xpu/XPUCachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-11-03T15:55:35.5911980Z copying torch/include/c10/xpu/XPUMacros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-11-03T15:55:35.5913370Z copying torch/include/c10/xpu/XPUException.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-11-03T15:55:35.5914640Z copying torch/include/c10/xpu/XPUFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-11-03T15:55:35.5915860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl 2025-11-03T15:55:35.5916880Z copying torch/include/c10/xpu/impl/XPUGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl 2025-11-03T15:55:35.5917870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl 2025-11-03T15:55:35.5919030Z copying torch/include/c10/xpu/test/impl/XPUTest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl 2025-11-03T15:55:35.5920370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-11-03T15:55:35.5921220Z copying torch/include/c10/macros/cmake_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-11-03T15:55:35.5923370Z copying torch/include/c10/macros/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-11-03T15:55:35.5924460Z copying torch/include/c10/macros/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-11-03T15:55:35.5925710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-11-03T15:55:35.5926590Z copying torch/include/c10/mobile/CPUCachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-11-03T15:55:35.5928020Z copying torch/include/c10/mobile/CPUProfilingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-11-03T15:55:35.5929320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-11-03T15:55:35.5929950Z copying torch/include/fp16/fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-11-03T15:55:35.5931510Z copying torch/include/fp16/psimd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-11-03T15:55:35.5932990Z copying torch/include/fp16/bitcasts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-11-03T15:55:35.5934530Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5936260Z copying torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5937630Z copying torch/include/torch/csrc/distributed/c10d/logger.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5939050Z copying torch/include/torch/csrc/distributed/c10d/Work.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5940510Z copying torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5942030Z 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-11-03T15:55:35.5943410Z copying torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5944770Z copying torch/include/torch/csrc/distributed/c10d/Store.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5946210Z copying torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5947670Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5949040Z copying torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5950400Z copying torch/include/torch/csrc/distributed/c10d/RankLocal.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5951780Z copying torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5953210Z copying torch/include/torch/csrc/distributed/c10d/FileStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5954580Z copying torch/include/torch/csrc/distributed/c10d/reducer.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5956480Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5957510Z copying torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5959010Z copying torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5960480Z copying torch/include/torch/csrc/distributed/c10d/comm.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5961820Z copying torch/include/torch/csrc/distributed/c10d/Functional.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5963240Z copying torch/include/torch/csrc/distributed/c10d/Backoff.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5964690Z copying torch/include/torch/csrc/distributed/c10d/TCPStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5966080Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5967520Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5968950Z copying torch/include/torch/csrc/distributed/c10d/NanCheck.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5970400Z copying torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5971780Z copying torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5973130Z 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-11-03T15:55:35.5974580Z copying torch/include/torch/csrc/distributed/c10d/HashStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5975950Z 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-11-03T15:55:35.5977320Z copying torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5978740Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5980510Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5981950Z copying torch/include/torch/csrc/distributed/c10d/Backend.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5983390Z copying torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5984950Z copying torch/include/torch/csrc/distributed/c10d/Utils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5987970Z copying torch/include/torch/csrc/distributed/c10d/Types.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5989590Z copying torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5991140Z copying torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:35.5998180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-11-03T15:55:35.5998990Z 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-11-03T15:55:35.6000440Z 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-11-03T15:55:35.6006400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda 2025-11-03T15:55:35.6007080Z 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-11-03T15:55:35.6008560Z 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-11-03T15:55:35.6014210Z 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-11-03T15:55:35.6015320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane 2025-11-03T15:55:35.6016190Z 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-11-03T15:55:35.6017700Z 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-11-03T15:55:35.6022540Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/nvshmem_team_manager.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-11-03T15:55:35.6023740Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/env.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-11-03T15:55:35.6030650Z 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-11-03T15:55:35.6031770Z 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-11-03T15:55:35.6033360Z 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-11-03T15:55:35.6038240Z 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-11-03T15:55:35.6039540Z 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-11-03T15:55:35.6046210Z 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-11-03T15:55:35.6047750Z 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-11-03T15:55:35.6049390Z copying torch/include/ATen/native/cuda/Normalization.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6053510Z copying torch/include/ATen/native/cuda/SortingRadixSelect.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6055560Z copying torch/include/ATen/native/cuda/block_reduce.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6061360Z copying torch/include/ATen/native/cuda/TensorModeKernel.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6062870Z copying torch/include/ATen/native/cuda/MemoryAccess.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6064580Z copying torch/include/ATen/native/cuda/CUDAJitLoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6070910Z copying torch/include/ATen/native/cuda/im2col.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6071940Z copying torch/include/ATen/native/cuda/cutlass_common.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6079230Z copying torch/include/ATen/native/cuda/SortUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6080860Z copying torch/include/ATen/native/cuda/DeviceSqrt.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6087410Z copying torch/include/ATen/native/cuda/UpSample.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6089220Z copying torch/include/ATen/native/cuda/Randperm.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6096820Z copying torch/include/ATen/native/cuda/vol2col.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6097950Z copying torch/include/ATen/native/cuda/Pow.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6099370Z copying torch/include/ATen/native/cuda/reduction_template.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6100950Z copying torch/include/ATen/native/cuda/fused_adamw_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6102360Z copying torch/include/ATen/native/cuda/Math.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6104400Z copying torch/include/ATen/native/cuda/SortingCommon.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6105740Z copying torch/include/ATen/native/cuda/ScanUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6107310Z copying torch/include/ATen/native/cuda/MultiTensorApply.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6108680Z copying torch/include/ATen/native/cuda/fused_adagrad_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6110140Z copying torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6111480Z copying torch/include/ATen/native/cuda/fused_adagrad_utils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6112910Z 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-11-03T15:55:35.6114350Z copying torch/include/ATen/native/cuda/fused_adam_utils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6115830Z copying torch/include/ATen/native/cuda/GroupMMCommon.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6117190Z copying torch/include/ATen/native/cuda/JitLoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6118660Z copying torch/include/ATen/native/cuda/KernelUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6120100Z copying torch/include/ATen/native/cuda/ForeachFunctors.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6121730Z 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-11-03T15:55:35.6123080Z copying torch/include/ATen/native/cuda/Loops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6124540Z copying torch/include/ATen/native/cuda/UniqueCub.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6125840Z copying torch/include/ATen/native/cuda/CUDALoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6127560Z copying torch/include/ATen/native/cuda/GridSampler.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6128910Z copying torch/include/ATen/native/cuda/PersistentSoftmax.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6130460Z copying torch/include/ATen/native/cuda/Reduce.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6132170Z copying torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6133570Z copying torch/include/ATen/native/cuda/fused_adam_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-11-03T15:55:35.6134960Z copying torch/include/ATen/cuda/AsmUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:35.6136420Z copying torch/include/ATen/cuda/cub-RadixSortPairs.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:35.6138070Z copying torch/include/ATen/cuda/DeviceUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:35.6139210Z copying torch/include/ATen/cuda/cub_definitions.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:35.6140690Z copying torch/include/ATen/cuda/ApplyGridUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:35.6141980Z copying torch/include/ATen/cuda/PhiloxUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:35.6143360Z copying torch/include/ATen/cuda/ScanUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:35.6144760Z copying torch/include/ATen/cuda/NumericLimits.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:35.6146150Z copying torch/include/ATen/cuda/CUDATensorMethods.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:35.6147480Z copying torch/include/ATen/cuda/cub.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:35.6149040Z copying torch/include/ATen/cuda/CUDAGraphsUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:35.6150870Z copying torch/include/ATen/cuda/CUDAApplyUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:35.6152900Z copying torch/include/ATen/cuda/Atomic.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-11-03T15:55:35.6154760Z copying torch/include/ATen/cuda/detail/TensorInfo.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-11-03T15:55:35.6160010Z copying torch/include/ATen/cuda/detail/IntegerDivider.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-11-03T15:55:35.6161340Z copying torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-11-03T15:55:35.6168860Z copying torch/include/ATen/cuda/detail/OffsetCalculator.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-11-03T15:55:35.6170950Z copying torch/include/ATen/cuda/detail/IndexUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-11-03T15:55:35.6177580Z copying torch/include/ATen/cuda/detail/UnpackRaw.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-11-03T15:55:35.6178540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime 2025-11-03T15:55:35.6180240Z copying torch/csrc/inductor/aoti_runtime/model.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime 2025-11-03T15:55:35.6181530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime 2025-11-03T15:55:35.6182400Z copying torch/_inductor/codegen/aoti_runtime/interface.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime 2025-11-03T15:55:35.6325820Z copying torch/_inductor/script.ld -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-11-03T15:55:35.6332380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-11-03T15:55:35.6333080Z copying torch/_inductor/kernel/flex/templates/flex_backwards.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-11-03T15:55:35.6347030Z copying torch/_inductor/kernel/flex/templates/flash_attention.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-11-03T15:55:35.6353780Z copying torch/_inductor/kernel/flex/templates/flex_decode.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-11-03T15:55:35.6364120Z copying torch/_inductor/kernel/flex/templates/utilities.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-11-03T15:55:35.6373190Z copying torch/_inductor/kernel/flex/templates/flex_attention.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-11-03T15:55:35.6380360Z copying torch/_inductor/kernel/flex/templates/common.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-11-03T15:55:35.6387350Z copying torch/_export/serde/schema.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-11-03T15:55:35.6394670Z copying torch/_export/serde/export_schema.thrift -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-11-03T15:55:35.6401330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen 2025-11-03T15:55:35.6402560Z copying torch/share/cmake/ATen/ATenConfig.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen 2025-11-03T15:55:35.6403850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-11-03T15:55:35.6404630Z copying torch/share/cmake/Caffe2/Caffe2Config.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-11-03T15:55:35.6406470Z copying torch/share/cmake/Caffe2/FindSYCLToolkit.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-11-03T15:55:35.6407430Z copying torch/share/cmake/Caffe2/FindCUSPARSELT.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-11-03T15:55:35.6409240Z copying torch/share/cmake/Caffe2/FindCUDAToolkit.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-11-03T15:55:35.6410780Z copying torch/share/cmake/Caffe2/Caffe2Targets.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-11-03T15:55:35.6412160Z copying torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-11-03T15:55:35.6413530Z copying torch/share/cmake/Caffe2/FindCUDSS.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-11-03T15:55:35.6414700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-11-03T15:55:35.6415480Z copying torch/share/cmake/Caffe2/public/LoadHIP.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-11-03T15:55:35.6416930Z copying torch/share/cmake/Caffe2/public/mkldnn.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-11-03T15:55:35.6418690Z copying torch/share/cmake/Caffe2/public/glog.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-11-03T15:55:35.6419760Z copying torch/share/cmake/Caffe2/public/utils.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-11-03T15:55:35.6421550Z copying torch/share/cmake/Caffe2/public/protobuf.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-11-03T15:55:35.6422900Z copying torch/share/cmake/Caffe2/public/mkl.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-11-03T15:55:35.6424570Z copying torch/share/cmake/Caffe2/public/gflags.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-11-03T15:55:35.6425950Z copying torch/share/cmake/Caffe2/public/cuda.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-11-03T15:55:35.6427450Z copying torch/share/cmake/Caffe2/public/xpu.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-11-03T15:55:35.6428730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-11-03T15:55:35.6429630Z 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-11-03T15:55:35.6431110Z 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-11-03T15:55:35.6432280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-11-03T15:55:35.6433130Z 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-11-03T15:55:35.6434610Z 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-11-03T15:55:35.6436580Z 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-11-03T15:55:35.6437810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-11-03T15:55:35.6438700Z 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-11-03T15:55:35.6440140Z 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-11-03T15:55:35.6441590Z 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-11-03T15:55:35.6443030Z 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-11-03T15:55:35.6444020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-11-03T15:55:35.6444810Z copying torch/share/cmake/Torch/TorchConfig.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-11-03T15:55:35.6446290Z copying torch/share/cmake/Torch/TorchConfigVersion.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-11-03T15:55:35.6447710Z copying torch/utils/benchmark/utils/timeit_template.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-11-03T15:55:35.6455240Z 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-11-03T15:55:35.6461970Z 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-11-03T15:55:35.6468580Z copying torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-11-03T15:55:35.6471940Z copying torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-11-03T15:55:35.6473140Z copying torch/utils/model_dump/skeleton.html -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-11-03T15:55:35.6480830Z copying torch/utils/model_dump/code.js -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-11-03T15:55:35.6494170Z copying torch/utils/model_dump/preact.mjs -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-11-03T15:55:35.6501520Z copying torch/utils/model_dump/htm.mjs -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-11-03T15:55:35.6508650Z copying torch/_dynamo/graph_break_registry.json -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-11-03T15:55:35.6510570Z copying torch/lib/libtorch_python.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-11-03T15:55:35.7231390Z copying torch/lib/libtorch.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-11-03T15:55:35.7256710Z copying torch/lib/libtorch_global_deps.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-11-03T15:55:35.7267490Z copying torch/lib/libtorch_cpu.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-11-03T15:55:37.0532400Z copying torch/lib/libc10.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-11-03T15:55:37.0706490Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0707780Z copying torchgen/packaged/autograd/load_derivatives.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0709480Z copying torchgen/packaged/autograd/build.bzl -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0711250Z copying torchgen/packaged/autograd/gen_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0712710Z copying torchgen/packaged/autograd/gen_python_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0714410Z copying torchgen/packaged/autograd/gen_autograd_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0716150Z copying torchgen/packaged/autograd/gen_variable_factories.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0717870Z copying torchgen/packaged/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0719120Z copying torchgen/packaged/autograd/gen_variable_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0720970Z copying torchgen/packaged/autograd/README.md -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0722340Z copying torchgen/packaged/autograd/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0723850Z copying torchgen/packaged/autograd/gen_inplace_or_view_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0725420Z copying torchgen/packaged/autograd/deprecated.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0726750Z copying torchgen/packaged/autograd/BUILD.bazel -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0728070Z copying torchgen/packaged/autograd/gen_trace_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0729860Z copying torchgen/packaged/autograd/gen_annotated_fn_args.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0731280Z copying torchgen/packaged/autograd/derivatives.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0734300Z copying torchgen/packaged/autograd/gen_view_funcs.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-11-03T15:55:37.0735330Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0736160Z copying torchgen/packaged/autograd/templates/python_return_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0737740Z copying torchgen/packaged/autograd/templates/python_enum_tag.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0739220Z copying torchgen/packaged/autograd/templates/python_nn_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0740600Z copying torchgen/packaged/autograd/templates/python_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0742010Z copying torchgen/packaged/autograd/templates/python_fft_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0743960Z copying torchgen/packaged/autograd/templates/python_sparse_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0744900Z copying torchgen/packaged/autograd/templates/python_linalg_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0746220Z copying torchgen/packaged/autograd/templates/ViewFuncs.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0747680Z copying torchgen/packaged/autograd/templates/python_return_types.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0749080Z copying torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0750480Z copying torchgen/packaged/autograd/templates/TraceType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0751840Z copying torchgen/packaged/autograd/templates/python_variable_methods.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0753610Z copying torchgen/packaged/autograd/templates/ViewFuncs.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0755080Z copying torchgen/packaged/autograd/templates/python_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0756470Z copying torchgen/packaged/autograd/templates/python_nested_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0757940Z copying torchgen/packaged/autograd/templates/VariableType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0759220Z copying torchgen/packaged/autograd/templates/annotated_fn_args.py.in -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0760690Z copying torchgen/packaged/autograd/templates/VariableType.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0762080Z copying torchgen/packaged/autograd/templates/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0763420Z copying torchgen/packaged/autograd/templates/python_special_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0764800Z copying torchgen/packaged/autograd/templates/variable_factories.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0766260Z copying torchgen/packaged/autograd/templates/python_torch_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0767670Z copying torchgen/packaged/autograd/templates/Functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-11-03T15:55:37.0768850Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-11-03T15:55:37.0770040Z copying torchgen/packaged/ATen/native/native_functions.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-11-03T15:55:37.0787590Z copying torchgen/packaged/ATen/native/tags.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-11-03T15:55:37.0788560Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0789430Z copying torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0790920Z copying torchgen/packaged/ATen/templates/TensorBody.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0792420Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0793830Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0795220Z copying torchgen/packaged/ATen/templates/ViewMetaClasses.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0796640Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0797960Z copying torchgen/packaged/ATen/templates/Operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0799320Z copying torchgen/packaged/ATen/templates/ViewMetaClasses.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0800730Z copying torchgen/packaged/ATen/templates/NativeMetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0802040Z copying torchgen/packaged/ATen/templates/NativeFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0803430Z copying torchgen/packaged/ATen/templates/Operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0804840Z copying torchgen/packaged/ATen/templates/RegistrationDeclarations.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0806220Z copying torchgen/packaged/ATen/templates/UfuncCPU.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0807540Z copying torchgen/packaged/ATen/templates/UfuncCUDA.cu -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0809010Z copying torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0810440Z copying torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0811780Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0813120Z copying torchgen/packaged/ATen/templates/aten_interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0814430Z copying torchgen/packaged/ATen/templates/MethodOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0815820Z copying torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0817220Z copying torchgen/packaged/ATen/templates/Operators.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0818530Z copying torchgen/packaged/ATen/templates/ATenOpList.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0819940Z copying torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0821220Z copying torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0822630Z copying torchgen/packaged/ATen/templates/TensorMethods.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0824060Z copying torchgen/packaged/ATen/templates/ViewMetaClassesPythonBinding.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0825470Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0826770Z copying torchgen/packaged/ATen/templates/DispatchKeyFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0828110Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0829530Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0831110Z copying torchgen/packaged/ATen/templates/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0832440Z copying torchgen/packaged/ATen/templates/NativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0833830Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0835180Z copying torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0836540Z copying torchgen/packaged/ATen/templates/enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0837870Z copying torchgen/packaged/ATen/templates/Functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0839300Z copying torchgen/packaged/ATen/templates/RegisterSchema.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0840640Z copying torchgen/packaged/ATen/templates/LazyNonNativeIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0842020Z copying torchgen/packaged/ATen/templates/Function.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0843380Z copying torchgen/packaged/ATen/templates/FunctionalInverses.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0844770Z copying torchgen/packaged/ATen/templates/NativeMetaFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0846180Z copying torchgen/packaged/ATen/templates/LazyIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-11-03T15:55:37.0847550Z copying torch/nn/parameter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-11-03T15:55:37.0850130Z copying torch/nn/functional.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-11-03T15:55:37.0851840Z copying torch/utils/_config_typing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-11-03T15:55:37.0853800Z copying torch/jit/_script.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-11-03T15:55:37.0856380Z copying torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-11-03T15:55:37.0857920Z copying torch/optim/_multi_tensor/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-11-03T15:55:37.0859820Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-11-03T15:55:37.1230560Z running build_ext 2025-11-03T15:55:37.1248180Z -- Building with NumPy bindings 2025-11-03T15:55:37.1248410Z -- Not using cuDNN 2025-11-03T15:55:37.1248540Z -- Not using CUDA 2025-11-03T15:55:37.1248660Z -- Not using XPU 2025-11-03T15:55:37.1248790Z -- Not using MKLDNN 2025-11-03T15:55:37.1248920Z -- Not using NCCL 2025-11-03T15:55:37.1249070Z -- Building with distributed package: 2025-11-03T15:55:37.1249250Z -- USE_TENSORPIPE=False 2025-11-03T15:55:37.1249400Z -- USE_GLOO=False 2025-11-03T15:55:37.1249530Z -- USE_MPI=False 2025-11-03T15:55:37.1249650Z -- Not using ITT 2025-11-03T15:55:37.2095560Z building 'torch._C' extension 2025-11-03T15:55:37.2096310Z creating build/temp.macosx-14.0-arm64-cpython-312/torch/csrc 2025-11-03T15:55:37.2099950Z clang -fno-strict-overflow -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -O3 -Wall -I/Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092/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-11-03T15:55:37.3096610Z clang -bundle -undefined dynamic_lookup 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-11-03T15:55:37.4281940Z copying /opt/homebrew/opt/libomp/lib/libomp.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-11-03T15:55:38.2398280Z copying /opt/homebrew/opt/libomp/include/omp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-11-03T15:55:38.2478860Z installing to build/bdist.macosx-14.0-arm64/wheel 2025-11-03T15:55:38.2479080Z running install 2025-11-03T15:55:38.2516480Z running install_lib 2025-11-03T15:55:38.2552080Z creating build/bdist.macosx-14.0-arm64/wheel 2025-11-03T15:55:38.2554380Z creating build/bdist.macosx-14.0-arm64/wheel/torch 2025-11-03T15:55:38.2555390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-11-03T15:55:38.2556340Z 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-11-03T15:55:38.2557810Z 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-11-03T15:55:38.2559050Z 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-11-03T15:55:38.2560180Z 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-11-03T15:55:38.2561400Z 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-11-03T15:55:38.2563060Z 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-11-03T15:55:38.2563980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/partitioner.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_higher_order_ops 2025-11-03T15:55:38.2565150Z 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-11-03T15:55:38.2566580Z 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-11-03T15:55:38.2567830Z 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-11-03T15:55:38.2568840Z 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-11-03T15:55:38.2577620Z 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-11-03T15:55:38.2578370Z 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-11-03T15:55:38.2586870Z 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-11-03T15:55:38.2587790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/local_map.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_higher_order_ops 2025-11-03T15:55:38.2589080Z 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-11-03T15:55:38.2590150Z 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-11-03T15:55:38.2591490Z 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-11-03T15:55:38.2592670Z 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-11-03T15:55:38.2593760Z 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-11-03T15:55:38.2595110Z 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-11-03T15:55:38.2596220Z 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-11-03T15:55:38.2597810Z 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-11-03T15:55:38.2599100Z 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-11-03T15:55:38.2600680Z 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-11-03T15:55:38.2601980Z 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-11-03T15:55:38.2603060Z 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-11-03T15:55:38.2604560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-11-03T15:55:38.2605440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/debug_prims.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_prims 2025-11-03T15:55:38.2606580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_prims 2025-11-03T15:55:38.2608200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/context.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_prims 2025-11-03T15:55:38.2609350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/rng_prims.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_prims 2025-11-03T15:55:38.2610460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/executor.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_prims 2025-11-03T15:55:38.2611520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_storage_docs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:38.2612810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc 2025-11-03T15:55:38.2613820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor 2025-11-03T15:55:38.2614780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor/aoti_runtime 2025-11-03T15:55:38.2615680Z 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-11-03T15:55:38.2616900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-11-03T15:55:38.2617680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/_internal.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_logging 2025-11-03T15:55:38.2619130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/scribe.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_logging 2025-11-03T15:55:38.2620230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_logging 2025-11-03T15:55:38.2621560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/_registrations.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_logging 2025-11-03T15:55:38.2622820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/structured.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_logging 2025-11-03T15:55:38.2624190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-11-03T15:55:38.2625020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/partitioners.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2626810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/compile_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2627890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/config.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2628980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/autograd_function.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2630620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-11-03T15:55:38.2631560Z 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-11-03T15:55:38.2632720Z 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-11-03T15:55:38.2633890Z 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-11-03T15:55:38.2635050Z 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-11-03T15:55:38.2636160Z 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-11-03T15:55:38.2637140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/python_key.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2638220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/pytree_hacks.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2639410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/pyfunctorch.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2640440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/deprecated.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2641620Z 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-11-03T15:55:38.2642880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2643980Z 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-11-03T15:55:38.2645190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/fx_minifier.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2646310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/predispatch.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2647860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-11-03T15:55:38.2648710Z 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-11-03T15:55:38.2650200Z 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-11-03T15:55:38.2651730Z 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-11-03T15:55:38.2652810Z 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-11-03T15:55:38.2654060Z 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-11-03T15:55:38.2655410Z 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-11-03T15:55:38.2656690Z 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-11-03T15:55:38.2658090Z 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-11-03T15:55:38.2659510Z 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-11-03T15:55:38.2660710Z 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-11-03T15:55:38.2661840Z 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-11-03T15:55:38.2663220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/aot_autograd_result.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch/_aot_autograd 2025-11-03T15:55:38.2664460Z 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-11-03T15:55:38.2665600Z 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-11-03T15:55:38.2666870Z 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-11-03T15:55:38.2668500Z 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-11-03T15:55:38.2669780Z 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-11-03T15:55:38.2670900Z 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-11-03T15:55:38.2671910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/apis.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2673210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2674320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/aot_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2675860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/compilers.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2676840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/eager_transforms.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2678360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/vmap.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2679620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/benchmark_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2680700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/make_functional.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2681920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/functional_call.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_functorch 2025-11-03T15:55:38.2683520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-11-03T15:55:38.2684360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_reductions_impl.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2685490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_getlimits.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2686630Z 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-11-03T15:55:38.2687720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_casting_dicts.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2689270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2690490Z 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-11-03T15:55:38.2691540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/random.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2692840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_numpy/testing 2025-11-03T15:55:38.2693680Z 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-11-03T15:55:38.2694880Z 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-11-03T15:55:38.2696400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_dtypes.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2697540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/linalg.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2698580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_ndarray.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2699820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_ufuncs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2700910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_util.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2702040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_normalizations.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2703160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_dtypes_impl.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2704220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/fft.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2705280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_funcs_impl.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2706690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_funcs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_numpy 2025-11-03T15:55:38.2708010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-11-03T15:55:38.2708800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/config.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_export 2025-11-03T15:55:38.2709960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/error.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_export 2025-11-03T15:55:38.2710930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/tools.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_export 2025-11-03T15:55:38.2712240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-11-03T15:55:38.2713120Z 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-11-03T15:55:38.2714020Z 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-11-03T15:55:38.2715100Z 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-11-03T15:55:38.2716560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-11-03T15:55:38.2717340Z 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-11-03T15:55:38.2718550Z 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-11-03T15:55:38.2719910Z 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-11-03T15:55:38.2720990Z 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-11-03T15:55:38.2722080Z 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-11-03T15:55:38.2723120Z 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-11-03T15:55:38.2724280Z 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-11-03T15:55:38.2725380Z 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-11-03T15:55:38.2726630Z 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-11-03T15:55:38.2727790Z 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-11-03T15:55:38.2728880Z 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-11-03T15:55:38.2735440Z 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-11-03T15:55:38.2736300Z 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-11-03T15:55:38.2737110Z 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-11-03T15:55:38.2737840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/converter.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_export 2025-11-03T15:55:38.2738450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_export 2025-11-03T15:55:38.2739110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_base.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_export 2025-11-03T15:55:38.2739720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_export 2025-11-03T15:55:38.2740950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_export 2025-11-03T15:55:38.2742710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-11-03T15:55:38.2743650Z 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-11-03T15:55:38.2744830Z 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-11-03T15:55:38.2745960Z 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-11-03T15:55:38.2747540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-11-03T15:55:38.2748440Z 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-11-03T15:55:38.2749620Z 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-11-03T15:55:38.2750780Z 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-11-03T15:55:38.2751920Z 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-11-03T15:55:38.2753210Z 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-11-03T15:55:38.2754460Z 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-11-03T15:55:38.2755650Z 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-11-03T15:55:38.2756770Z 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-11-03T15:55:38.2757820Z 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-11-03T15:55:38.2758910Z 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-11-03T15:55:38.2760100Z 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-11-03T15:55:38.2761170Z 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-11-03T15:55:38.2762390Z 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-11-03T15:55:38.2763570Z 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-11-03T15:55:38.2765000Z 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-11-03T15:55:38.2766310Z 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-11-03T15:55:38.2767590Z 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-11-03T15:55:38.2768820Z 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-11-03T15:55:38.2770070Z 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-11-03T15:55:38.2771330Z 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-11-03T15:55:38.2772490Z 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-11-03T15:55:38.2773730Z 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-11-03T15:55:38.2775000Z 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-11-03T15:55:38.2776290Z 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-11-03T15:55:38.2777510Z 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-11-03T15:55:38.2778770Z 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-11-03T15:55:38.2779990Z 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-11-03T15:55:38.2781270Z 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-11-03T15:55:38.2782580Z 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-11-03T15:55:38.2783790Z 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-11-03T15:55:38.2785040Z 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-11-03T15:55:38.2786120Z 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-11-03T15:55:38.2787250Z 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-11-03T15:55:38.2788390Z 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-11-03T15:55:38.2789450Z 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-11-03T15:55:38.2790590Z 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-11-03T15:55:38.2791680Z 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-11-03T15:55:38.2792780Z 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-11-03T15:55:38.2793890Z 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-11-03T15:55:38.2795670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-11-03T15:55:38.2796500Z 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-11-03T15:55:38.2798550Z 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-11-03T15:55:38.2799440Z 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-11-03T15:55:38.2800730Z 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-11-03T15:55:38.2801910Z 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-11-03T15:55:38.2802980Z 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-11-03T15:55:38.2804020Z 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-11-03T15:55:38.2805150Z 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-11-03T15:55:38.2806230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/verifier.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_export 2025-11-03T15:55:38.2807780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/monitor 2025-11-03T15:55:38.2808570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/monitor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/monitor 2025-11-03T15:55:38.2810060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-11-03T15:55:38.2811420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dispatch 2025-11-03T15:55:38.2812740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch/python.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dispatch 2025-11-03T15:55:38.2814590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-11-03T15:55:38.2815490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/functional_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_subclasses 2025-11-03T15:55:38.2817050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/meta_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_subclasses 2025-11-03T15:55:38.2818670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_subclasses 2025-11-03T15:55:38.2819940Z 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-11-03T15:55:38.2821040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_impls.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_subclasses 2025-11-03T15:55:38.2822450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_subclasses 2025-11-03T15:55:38.2824460Z 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-11-03T15:55:38.2825600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_subclasses 2025-11-03T15:55:38.2826800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_meta_registrations.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:38.2829510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/version.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:38.2830560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/futures 2025-11-03T15:55:38.2831440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/futures/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/futures 2025-11-03T15:55:38.2832540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/library.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:38.2834300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/linalg 2025-11-03T15:55:38.2835120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/linalg/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/linalg 2025-11-03T15:55:38.2836820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_jit_internal.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:38.2838480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-11-03T15:55:38.2839300Z 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-11-03T15:55:38.2840200Z 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-11-03T15:55:38.2841350Z 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-11-03T15:55:38.2843040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-11-03T15:55:38.2843990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-11-03T15:55:38.2844810Z 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-11-03T15:55:38.2846220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention/experimental 2025-11-03T15:55:38.2847080Z 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-11-03T15:55:38.2848300Z 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-11-03T15:55:38.2849390Z 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-11-03T15:55:38.2850440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/varlen.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/nn/attention 2025-11-03T15:55:38.2851550Z 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-11-03T15:55:38.2853140Z 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-11-03T15:55:38.2854430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-11-03T15:55:38.2855350Z 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-11-03T15:55:38.2856430Z 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-11-03T15:55:38.2857610Z 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-11-03T15:55:38.2858720Z 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-11-03T15:55:38.2859870Z 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-11-03T15:55:38.2860980Z 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-11-03T15:55:38.2862040Z 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-11-03T15:55:38.2863850Z 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-11-03T15:55:38.2865320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat 2025-11-03T15:55:38.2866290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic 2025-11-03T15:55:38.2867160Z 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-11-03T15:55:38.2868830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic/modules 2025-11-03T15:55:38.2869450Z 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-11-03T15:55:38.2870620Z 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-11-03T15:55:38.2871560Z 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-11-03T15:55:38.2872870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-11-03T15:55:38.2873740Z 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-11-03T15:55:38.2874840Z 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-11-03T15:55:38.2875960Z 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-11-03T15:55:38.2877150Z 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-11-03T15:55:38.2878180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/common_types.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/nn 2025-11-03T15:55:38.2879510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized 2025-11-03T15:55:38.2880590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference 2025-11-03T15:55:38.2881410Z 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-11-03T15:55:38.2882940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-11-03T15:55:38.2883630Z 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-11-03T15:55:38.2884790Z 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-11-03T15:55:38.2885870Z 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-11-03T15:55:38.2886970Z 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-11-03T15:55:38.2888070Z 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-11-03T15:55:38.2889170Z 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-11-03T15:55:38.2890500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic 2025-11-03T15:55:38.2891260Z 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-11-03T15:55:38.2892640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-11-03T15:55:38.2893510Z 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-11-03T15:55:38.2894640Z 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-11-03T15:55:38.2895780Z 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-11-03T15:55:38.2896900Z 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-11-03T15:55:38.2897980Z 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-11-03T15:55:38.2899070Z 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-11-03T15:55:38.2900440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-11-03T15:55:38.2901270Z 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-11-03T15:55:38.2902440Z 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-11-03T15:55:38.2903520Z 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-11-03T15:55:38.2904560Z 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-11-03T15:55:38.2905730Z 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-11-03T15:55:38.2906710Z 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-11-03T15:55:38.2907900Z 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-11-03T15:55:38.2908960Z 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-11-03T15:55:38.2910070Z 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-11-03T15:55:38.2911160Z 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-11-03T15:55:38.2912290Z 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-11-03T15:55:38.2914020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/backends 2025-11-03T15:55:38.2914500Z 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-11-03T15:55:38.2915570Z 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-11-03T15:55:38.2916610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parameter.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/nn 2025-11-03T15:55:38.2917490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/nn 2025-11-03T15:55:38.2918650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/_reduction.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/nn 2025-11-03T15:55:38.2920030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-11-03T15:55:38.2921250Z 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-11-03T15:55:38.2922480Z 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-11-03T15:55:38.2923670Z 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-11-03T15:55:38.2924800Z 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-11-03T15:55:38.2926030Z 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-11-03T15:55:38.2927540Z 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-11-03T15:55:38.2928900Z 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-11-03T15:55:38.2929690Z 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-11-03T15:55:38.2930810Z 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-11-03T15:55:38.2931830Z 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-11-03T15:55:38.2932890Z 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-11-03T15:55:38.2934390Z 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-11-03T15:55:38.2935590Z 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-11-03T15:55:38.2936760Z 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-11-03T15:55:38.2937810Z 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-11-03T15:55:38.2939410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-11-03T15:55:38.2940390Z 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-11-03T15:55:38.2941550Z 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-11-03T15:55:38.2942680Z 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-11-03T15:55:38.2943840Z 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-11-03T15:55:38.2944870Z 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-11-03T15:55:38.2946120Z 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-11-03T15:55:38.2947260Z 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-11-03T15:55:38.2948390Z 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-11-03T15:55:38.2949500Z 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-11-03T15:55:38.2950600Z 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-11-03T15:55:38.2951610Z 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-11-03T15:55:38.2953040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable 2025-11-03T15:55:38.2953920Z 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-11-03T15:55:38.2955230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-11-03T15:55:38.2956070Z 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-11-03T15:55:38.2957200Z 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-11-03T15:55:38.2958420Z 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-11-03T15:55:38.2959440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/nn 2025-11-03T15:55:38.2960740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic 2025-11-03T15:55:38.2961830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat 2025-11-03T15:55:38.2962630Z 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-11-03T15:55:38.2963900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-11-03T15:55:38.2964790Z 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-11-03T15:55:38.2965920Z 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-11-03T15:55:38.2967020Z 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-11-03T15:55:38.2968080Z 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-11-03T15:55:38.2969300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized 2025-11-03T15:55:38.2970270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic 2025-11-03T15:55:38.2971190Z 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-11-03T15:55:38.2972590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-11-03T15:55:38.2973410Z 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-11-03T15:55:38.2974590Z 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-11-03T15:55:38.2975640Z 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-11-03T15:55:38.2976890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-11-03T15:55:38.2977830Z 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-11-03T15:55:38.2978900Z 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-11-03T15:55:38.2980050Z 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-11-03T15:55:38.2981130Z 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-11-03T15:55:38.2982050Z 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-11-03T15:55:38.2983390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/modules 2025-11-03T15:55:38.2984550Z 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-11-03T15:55:38.2985420Z 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-11-03T15:55:38.2986390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/functional.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/nn 2025-11-03T15:55:38.2989050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/init.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/nn 2025-11-03T15:55:38.2990000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/functional.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/nn 2025-11-03T15:55:38.2991210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/grad.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/nn 2025-11-03T15:55:38.2993050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-11-03T15:55:38.2993590Z 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-11-03T15:55:38.2994720Z 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-11-03T15:55:38.2995790Z 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-11-03T15:55:38.2997020Z 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-11-03T15:55:38.2998170Z 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-11-03T15:55:38.2999560Z 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-11-03T15:55:38.3000630Z 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-11-03T15:55:38.3001770Z 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-11-03T15:55:38.3003220Z 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-11-03T15:55:38.3004340Z 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-11-03T15:55:38.3005390Z 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-11-03T15:55:38.3006670Z 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-11-03T15:55:38.3007750Z 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-11-03T15:55:38.3008860Z 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-11-03T15:55:38.3010470Z 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-11-03T15:55:38.3011950Z 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-11-03T15:55:38.3013150Z 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-11-03T15:55:38.3014550Z 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-11-03T15:55:38.3015830Z 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-11-03T15:55:38.3017610Z 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-11-03T15:55:38.3018690Z 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-11-03T15:55:38.3020180Z 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-11-03T15:55:38.3021340Z 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-11-03T15:55:38.3022350Z 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-11-03T15:55:38.3023840Z 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-11-03T15:55:38.3025130Z 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-11-03T15:55:38.3026470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parameter.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/nn 2025-11-03T15:55:38.3027620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_thread_safe_fork.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:38.3028760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-11-03T15:55:38.3029570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/event.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/mps 2025-11-03T15:55:38.3030760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/mps 2025-11-03T15:55:38.3031910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/mps 2025-11-03T15:55:38.3033050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:38.3034500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-11-03T15:55:38.3035350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_constants.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3036690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-11-03T15:55:38.3037810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3038730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/registration.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3039990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/_type_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3041080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3042180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset7.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3043380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3044780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/verification.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3046100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3047530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3048600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3049770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/_globals.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3050940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_helper.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3052510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3054620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3055550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3056650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset19.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3057810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3059370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/_experimental.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3060460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3061560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3062980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/onnx_proto_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3064120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3065310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3066350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3073600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/jit_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx/_internal/torchscript_exporter 2025-11-03T15:55:38.3074250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-11-03T15:55:38.3074610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-11-03T15:55:38.3075180Z 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-11-03T15:55:38.3076040Z 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-11-03T15:55:38.3076820Z 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-11-03T15:55:38.3077590Z 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-11-03T15:55:38.3078300Z 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-11-03T15:55:38.3078990Z 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-11-03T15:55:38.3079680Z 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-11-03T15:55:38.3080220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-11-03T15:55:38.3080800Z 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-11-03T15:55:38.3081590Z 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-11-03T15:55:38.3082360Z 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-11-03T15:55:38.3083130Z 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-11-03T15:55:38.3084200Z 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-11-03T15:55:38.3085350Z 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-11-03T15:55:38.3086410Z 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-11-03T15:55:38.3087530Z 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-11-03T15:55:38.3088640Z 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-11-03T15:55:38.3089690Z 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-11-03T15:55:38.3090660Z 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-11-03T15:55:38.3092120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-11-03T15:55:38.3093060Z 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-11-03T15:55:38.3094120Z 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-11-03T15:55:38.3095180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-11-03T15:55:38.3096050Z 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-11-03T15:55:38.3097200Z 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-11-03T15:55:38.3098380Z 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-11-03T15:55:38.3099600Z 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-11-03T15:55:38.3100690Z 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-11-03T15:55:38.3101820Z 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-11-03T15:55:38.3102900Z 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-11-03T15:55:38.3103980Z 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-11-03T15:55:38.3105270Z 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-11-03T15:55:38.3106350Z 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-11-03T15:55:38.3107610Z 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-11-03T15:55:38.3109310Z 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-11-03T15:55:38.3110260Z 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-11-03T15:55:38.3111410Z 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-11-03T15:55:38.3112580Z 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-11-03T15:55:38.3113740Z 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-11-03T15:55:38.3114910Z 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-11-03T15:55:38.3116030Z 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-11-03T15:55:38.3117240Z 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-11-03T15:55:38.3118470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset15.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3119690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset7.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3120800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset11.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3121880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/verification.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3122970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_flags.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3124300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset10.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3125560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset20.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3126610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset14.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3127650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_helper.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3128700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset9.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3129800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3130920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset8.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3132100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset19.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3133050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3134260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset18.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3135690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-11-03T15:55:38.3136560Z 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-11-03T15:55:38.3137760Z 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-11-03T15:55:38.3138860Z 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-11-03T15:55:38.3140300Z 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-11-03T15:55:38.3141570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/errors.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3142850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset13.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3143970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/operators.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3145170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/testing.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3146350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset17.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3147570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset16.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3148830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset12.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/onnx 2025-11-03T15:55:38.3150390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-11-03T15:55:38.3151300Z 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-11-03T15:55:38.3223040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/torch_shm_manager -> build/bdist.macosx-14.0-arm64/wheel/./torch/bin 2025-11-03T15:55:38.3224770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/protoc -> build/bdist.macosx-14.0-arm64/wheel/./torch/bin 2025-11-03T15:55:38.3294270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/return_types.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:38.3295640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_vendor 2025-11-03T15:55:38.3296810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-11-03T15:55:38.3297600Z 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-11-03T15:55:38.3298720Z 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-11-03T15:55:38.3299850Z 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-11-03T15:55:38.3300950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_vendor 2025-11-03T15:55:38.3302040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cpu 2025-11-03T15:55:38.3302900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cpu 2025-11-03T15:55:38.3304270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-11-03T15:55:38.3305080Z 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-11-03T15:55:38.3306250Z 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-11-03T15:55:38.3307680Z 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-11-03T15:55:38.3308900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-11-03T15:55:38.3310020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-11-03T15:55:38.3310880Z 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-11-03T15:55:38.3311950Z 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-11-03T15:55:38.3313140Z 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-11-03T15:55:38.3314510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharding_spec 2025-11-03T15:55:38.3315370Z 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-11-03T15:55:38.3316480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable_state.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3317590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/logging_handlers.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3318680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3319790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/run.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3321320Z 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-11-03T15:55:38.3322660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/launcher 2025-11-03T15:55:38.3323510Z 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-11-03T15:55:38.3324630Z 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-11-03T15:55:38.3326330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-11-03T15:55:38.3327160Z 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-11-03T15:55:38.3328360Z 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-11-03T15:55:38.3329620Z 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-11-03T15:55:38.3330720Z 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-11-03T15:55:38.3331900Z 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-11-03T15:55:38.3333200Z 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-11-03T15:55:38.3334300Z 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-11-03T15:55:38.3335900Z 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-11-03T15:55:38.3336990Z 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-11-03T15:55:38.3338190Z 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-11-03T15:55:38.3339580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-11-03T15:55:38.3340520Z 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-11-03T15:55:38.3341710Z 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-11-03T15:55:38.3342900Z 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-11-03T15:55:38.3344140Z 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-11-03T15:55:38.3345370Z 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-11-03T15:55:38.3346430Z 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-11-03T15:55:38.3347770Z 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-11-03T15:55:38.3348910Z 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-11-03T15:55:38.3350140Z 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-11-03T15:55:38.3351300Z 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-11-03T15:55:38.3352330Z 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-11-03T15:55:38.3353390Z 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-11-03T15:55:38.3354590Z 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-11-03T15:55:38.3355890Z 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-11-03T15:55:38.3357020Z 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-11-03T15:55:38.3358380Z 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-11-03T15:55:38.3359700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/quantized_hf_storage.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed/checkpoint 2025-11-03T15:55:38.3360880Z 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-11-03T15:55:38.3362050Z 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-11-03T15:55:38.3363150Z 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-11-03T15:55:38.3364280Z 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-11-03T15:55:38.3365460Z 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-11-03T15:55:38.3366500Z 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-11-03T15:55:38.3367620Z 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-11-03T15:55:38.3368710Z 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-11-03T15:55:38.3369820Z 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-11-03T15:55:38.3371070Z 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-11-03T15:55:38.3372320Z 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-11-03T15:55:38.3373480Z 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-11-03T15:55:38.3374790Z 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-11-03T15:55:38.3376090Z 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-11-03T15:55:38.3377260Z 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-11-03T15:55:38.3378380Z 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-11-03T15:55:38.3379700Z 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-11-03T15:55:38.3380830Z 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-11-03T15:55:38.3381890Z 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-11-03T15:55:38.3382990Z 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-11-03T15:55:38.3384040Z 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-11-03T15:55:38.3385190Z 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-11-03T15:55:38.3386350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_serialization.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3387680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharded_tensor 2025-11-03T15:55:38.3388560Z 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-11-03T15:55:38.3389820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn 2025-11-03T15:55:38.3390700Z 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-11-03T15:55:38.3391790Z 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-11-03T15:55:38.3393090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit 2025-11-03T15:55:38.3393980Z 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-11-03T15:55:38.3395070Z 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-11-03T15:55:38.3396140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit/templates 2025-11-03T15:55:38.3397220Z 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-11-03T15:55:38.3398130Z 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-11-03T15:55:38.3399160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/api 2025-11-03T15:55:38.3400270Z 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-11-03T15:55:38.3401340Z 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-11-03T15:55:38.3402410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic 2025-11-03T15:55:38.3403720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/metrics 2025-11-03T15:55:38.3404350Z 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-11-03T15:55:38.3405390Z 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-11-03T15:55:38.3406670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-11-03T15:55:38.3407570Z 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-11-03T15:55:38.3408700Z 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-11-03T15:55:38.3409810Z 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-11-03T15:55:38.3410880Z 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-11-03T15:55:38.3412020Z 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-11-03T15:55:38.3413500Z 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-11-03T15:55:38.3414580Z 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-11-03T15:55:38.3415770Z 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-11-03T15:55:38.3417090Z 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-11-03T15:55:38.3418020Z 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-11-03T15:55:38.3419420Z 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-11-03T15:55:38.3420630Z 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-11-03T15:55:38.3421790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-11-03T15:55:38.3422910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-11-03T15:55:38.3423920Z 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-11-03T15:55:38.3432960Z 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-11-03T15:55:38.3434130Z 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-11-03T15:55:38.3435220Z 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-11-03T15:55:38.3436160Z 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-11-03T15:55:38.3437090Z 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-11-03T15:55:38.3445530Z 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-11-03T15:55:38.3446590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-11-03T15:55:38.3447540Z 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-11-03T15:55:38.3448690Z 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-11-03T15:55:38.3449750Z 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-11-03T15:55:38.3451070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-11-03T15:55:38.3451900Z 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-11-03T15:55:38.3453060Z 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-11-03T15:55:38.3454160Z 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-11-03T15:55:38.3455210Z 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-11-03T15:55:38.3456360Z 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-11-03T15:55:38.3457600Z 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-11-03T15:55:38.3458730Z 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-11-03T15:55:38.3460040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-11-03T15:55:38.3460910Z 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-11-03T15:55:38.3462210Z 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-11-03T15:55:38.3463350Z 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-11-03T15:55:38.3464430Z 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-11-03T15:55:38.3465560Z 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-11-03T15:55:38.3466660Z 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-11-03T15:55:38.3467940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-11-03T15:55:38.3468870Z 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-11-03T15:55:38.3470030Z 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-11-03T15:55:38.3471100Z 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-11-03T15:55:38.3472330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent 2025-11-03T15:55:38.3473190Z 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-11-03T15:55:38.3474270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-11-03T15:55:38.3475200Z 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-11-03T15:55:38.3476370Z 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-11-03T15:55:38.3477400Z 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-11-03T15:55:38.3478900Z 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-11-03T15:55:38.3480230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-11-03T15:55:38.3481120Z 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-11-03T15:55:38.3482220Z 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-11-03T15:55:38.3483280Z 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-11-03T15:55:38.3484560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/autograd 2025-11-03T15:55:38.3485400Z 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-11-03T15:55:38.3486470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/distributed_c10d.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3489090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-11-03T15:55:38.3489720Z 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-11-03T15:55:38.3491170Z 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-11-03T15:55:38.3492240Z 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-11-03T15:55:38.3493570Z 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-11-03T15:55:38.3494820Z 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-11-03T15:55:38.3495900Z 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-11-03T15:55:38.3497100Z 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-11-03T15:55:38.3498230Z 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-11-03T15:55:38.3499680Z 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-11-03T15:55:38.3501570Z 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-11-03T15:55:38.3502610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/argparse_util.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3503770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_checkpointable.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3504980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/constants.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3506050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_mesh_layout.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3507160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/c10d_logger.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3508540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms 2025-11-03T15:55:38.3509590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-11-03T15:55:38.3510470Z 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-11-03T15:55:38.3511680Z 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-11-03T15:55:38.3512970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-11-03T15:55:38.3513880Z 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-11-03T15:55:38.3515010Z 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-11-03T15:55:38.3516060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-11-03T15:55:38.3516970Z 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-11-03T15:55:38.3517990Z 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-11-03T15:55:38.3519160Z 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-11-03T15:55:38.3520310Z 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-11-03T15:55:38.3521630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-11-03T15:55:38.3522450Z 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-11-03T15:55:38.3523590Z 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-11-03T15:55:38.3524710Z 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-11-03T15:55:38.3525770Z 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-11-03T15:55:38.3526880Z 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-11-03T15:55:38.3528120Z 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-11-03T15:55:38.3529570Z 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-11-03T15:55:38.3530600Z 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-11-03T15:55:38.3531580Z 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-11-03T15:55:38.3532800Z 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-11-03T15:55:38.3534170Z 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-11-03T15:55:38.3535490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-11-03T15:55:38.3536430Z 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-11-03T15:55:38.3537550Z 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-11-03T15:55:38.3538750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_quantization 2025-11-03T15:55:38.3540370Z 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-11-03T15:55:38.3542300Z 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-11-03T15:55:38.3543730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-11-03T15:55:38.3544850Z 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-11-03T15:55:38.3551900Z 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-11-03T15:55:38.3552760Z 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-11-03T15:55:38.3553560Z 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-11-03T15:55:38.3554320Z 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-11-03T15:55:38.3555120Z 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-11-03T15:55:38.3555920Z 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-11-03T15:55:38.3556740Z 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-11-03T15:55:38.3557560Z 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-11-03T15:55:38.3558350Z 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-11-03T15:55:38.3559120Z 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-11-03T15:55:38.3559990Z 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-11-03T15:55:38.3560780Z 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-11-03T15:55:38.3561580Z 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-11-03T15:55:38.3562390Z 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-11-03T15:55:38.3563210Z 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-11-03T15:55:38.3564030Z 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-11-03T15:55:38.3564750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3565950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_dist2.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3567400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-11-03T15:55:38.3568490Z 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-11-03T15:55:38.3569600Z 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-11-03T15:55:38.3570700Z 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-11-03T15:55:38.3571960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable/fsdp 2025-11-03T15:55:38.3572860Z 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-11-03T15:55:38.3574030Z 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-11-03T15:55:38.3575090Z 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-11-03T15:55:38.3576260Z 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-11-03T15:55:38.3577540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-11-03T15:55:38.3578410Z 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-11-03T15:55:38.3579830Z 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-11-03T15:55:38.3580950Z 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-11-03T15:55:38.3582280Z 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-11-03T15:55:38.3583530Z 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-11-03T15:55:38.3585040Z 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-11-03T15:55:38.3586030Z 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-11-03T15:55:38.3587150Z 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-11-03T15:55:38.3588290Z 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-11-03T15:55:38.3589360Z 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-11-03T15:55:38.3590510Z 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-11-03T15:55:38.3591970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-11-03T15:55:38.3592850Z 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-11-03T15:55:38.3594050Z 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-11-03T15:55:38.3595160Z 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-11-03T15:55:38.3596430Z 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-11-03T15:55:38.3598150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-11-03T15:55:38.3598990Z 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-11-03T15:55:38.3600120Z 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-11-03T15:55:38.3601280Z 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-11-03T15:55:38.3602670Z 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-11-03T15:55:38.3603730Z 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-11-03T15:55:38.3605150Z 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-11-03T15:55:38.3606300Z 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-11-03T15:55:38.3607590Z 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-11-03T15:55:38.3608960Z 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-11-03T15:55:38.3610200Z 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-11-03T15:55:38.3611890Z 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-11-03T15:55:38.3613020Z 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-11-03T15:55:38.3614610Z 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-11-03T15:55:38.3615770Z 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-11-03T15:55:38.3616960Z 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-11-03T15:55:38.3618110Z 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-11-03T15:55:38.3619380Z 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-11-03T15:55:38.3620430Z 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-11-03T15:55:38.3621590Z 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-11-03T15:55:38.3622700Z 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-11-03T15:55:38.3623760Z 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-11-03T15:55:38.3625100Z 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-11-03T15:55:38.3626630Z 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-11-03T15:55:38.3627740Z 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-11-03T15:55:38.3629080Z 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-11-03T15:55:38.3630200Z 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-11-03T15:55:38.3632000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/collective_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3633310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_local_tensor 2025-11-03T15:55:38.3634220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_local_tensor/_c10d.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed/_local_tensor 2025-11-03T15:55:38.3635630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_local_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed/_local_tensor 2025-11-03T15:55:38.3637000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_functional_collectives.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3638650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-11-03T15:55:38.3639790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/checkpoint 2025-11-03T15:55:38.3640640Z 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-11-03T15:55:38.3641710Z 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-11-03T15:55:38.3642840Z 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-11-03T15:55:38.3644190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-11-03T15:55:38.3645090Z 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-11-03T15:55:38.3646210Z 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-11-03T15:55:38.3647570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-11-03T15:55:38.3648360Z 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-11-03T15:55:38.3649530Z 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-11-03T15:55:38.3650680Z 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-11-03T15:55:38.3651790Z 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-11-03T15:55:38.3652950Z 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-11-03T15:55:38.3654010Z 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-11-03T15:55:38.3655100Z 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-11-03T15:55:38.3656360Z 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-11-03T15:55:38.3657560Z 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-11-03T15:55:38.3658640Z 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-11-03T15:55:38.3660060Z 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-11-03T15:55:38.3661210Z 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-11-03T15:55:38.3662630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-11-03T15:55:38.3663590Z 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-11-03T15:55:38.3664750Z 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-11-03T15:55:38.3665920Z 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-11-03T15:55:38.3667110Z 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-11-03T15:55:38.3668670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-11-03T15:55:38.3669780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-11-03T15:55:38.3670840Z 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-11-03T15:55:38.3672400Z 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-11-03T15:55:38.3673570Z 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-11-03T15:55:38.3674700Z 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-11-03T15:55:38.3676450Z 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-11-03T15:55:38.3677730Z 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-11-03T15:55:38.3679020Z 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-11-03T15:55:38.3680260Z 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-11-03T15:55:38.3681890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-11-03T15:55:38.3682910Z 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-11-03T15:55:38.3684020Z 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-11-03T15:55:38.3685130Z 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-11-03T15:55:38.3686260Z 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-11-03T15:55:38.3687490Z 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-11-03T15:55:38.3688620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launch.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3690100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_symmetric_memory 2025-11-03T15:55:38.3691010Z 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-11-03T15:55:38.3692450Z 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-11-03T15:55:38.3694070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3695200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/remote_device.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3696300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/device_mesh.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed 2025-11-03T15:55:38.3698140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-11-03T15:55:38.3699250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-11-03T15:55:38.3700360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental/_context_parallel 2025-11-03T15:55:38.3701350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_context_parallel/_attention.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed/tensor/experimental/_context_parallel 2025-11-03T15:55:38.3702980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_context_parallel/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed/tensor/experimental/_context_parallel 2025-11-03T15:55:38.3704150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed/tensor/experimental/_context_parallel 2025-11-03T15:55:38.3705300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed/tensor/experimental/_context_parallel 2025-11-03T15:55:38.3706560Z 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-11-03T15:55:38.3707670Z 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-11-03T15:55:38.3708830Z 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-11-03T15:55:38.3710380Z 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-11-03T15:55:38.3711430Z 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-11-03T15:55:38.3712800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-11-03T15:55:38.3713670Z 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-11-03T15:55:38.3714860Z 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-11-03T15:55:38.3715950Z 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-11-03T15:55:38.3717370Z 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-11-03T15:55:38.3718390Z 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-11-03T15:55:38.3719500Z 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-11-03T15:55:38.3720880Z 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-11-03T15:55:38.3721950Z 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-11-03T15:55:38.3723060Z 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-11-03T15:55:38.3724190Z 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-11-03T15:55:38.3726060Z 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-11-03T15:55:38.3726910Z 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-11-03T15:55:38.3728060Z 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-11-03T15:55:38.3729550Z 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-11-03T15:55:38.3731050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-11-03T15:55:38.3732010Z 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-11-03T15:55:38.3733230Z 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-11-03T15:55:38.3734240Z 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-11-03T15:55:38.3735740Z 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-11-03T15:55:38.3736810Z 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-11-03T15:55:38.3737950Z 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-11-03T15:55:38.3739160Z 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-11-03T15:55:38.3740580Z 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-11-03T15:55:38.3741990Z 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-11-03T15:55:38.3743110Z 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-11-03T15:55:38.3744220Z 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-11-03T15:55:38.3745290Z 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-11-03T15:55:38.3746550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_mask_buffer.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed/tensor/_ops 2025-11-03T15:55:38.3747670Z 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-11-03T15:55:38.3748830Z 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-11-03T15:55:38.3750080Z 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-11-03T15:55:38.3751370Z 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-11-03T15:55:38.3752680Z 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-11-03T15:55:38.3754650Z 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-11-03T15:55:38.3755440Z 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-11-03T15:55:38.3756680Z 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-11-03T15:55:38.3758160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-11-03T15:55:38.3759050Z 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-11-03T15:55:38.3760250Z 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-11-03T15:55:38.3761330Z 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-11-03T15:55:38.3762470Z 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-11-03T15:55:38.3764030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_pycute 2025-11-03T15:55:38.3764890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_pycute/layout.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed/_pycute 2025-11-03T15:55:38.3766140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_pycute/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed/_pycute 2025-11-03T15:55:38.3767240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_pycute/typing.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed/_pycute 2025-11-03T15:55:38.3768340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_pycute/int_tuple.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributed/_pycute 2025-11-03T15:55:38.3770040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-11-03T15:55:38.3770600Z 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-11-03T15:55:38.3771690Z 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-11-03T15:55:38.3772790Z 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-11-03T15:55:38.3773870Z 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-11-03T15:55:38.3775000Z 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-11-03T15:55:38.3776410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc/_testing 2025-11-03T15:55:38.3777460Z 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-11-03T15:55:38.3778780Z 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-11-03T15:55:38.3779920Z 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-11-03T15:55:38.3781780Z 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-11-03T15:55:38.3782580Z 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-11-03T15:55:38.3783670Z 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-11-03T15:55:38.3784800Z 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-11-03T15:55:38.3785970Z 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-11-03T15:55:38.3787190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_size_docs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:38.3788600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-11-03T15:55:38.3789520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/anomaly_mode.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/autograd 2025-11-03T15:55:38.3790880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-11-03T15:55:38.3791730Z 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-11-03T15:55:38.3792910Z 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-11-03T15:55:38.3794030Z 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-11-03T15:55:38.3795060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/graph.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/autograd 2025-11-03T15:55:38.3796340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/forward_ad.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/autograd 2025-11-03T15:55:38.3797430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/autograd 2025-11-03T15:55:38.3798750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/variable.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/autograd 2025-11-03T15:55:38.3799810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/functional.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/autograd 2025-11-03T15:55:38.3801220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/grad_mode.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/autograd 2025-11-03T15:55:38.3802330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler_util.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/autograd 2025-11-03T15:55:38.3803760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler_legacy.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/autograd 2025-11-03T15:55:38.3804810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/gradcheck.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/autograd 2025-11-03T15:55:38.3806410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/autograd 2025-11-03T15:55:38.3807760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/function.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/autograd 2025-11-03T15:55:38.3809090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_torch_docs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:38.3812960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-11-03T15:55:38.3813700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3814880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3816680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-11-03T15:55:38.3817590Z 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-11-03T15:55:38.3819340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-11-03T15:55:38.3820180Z 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-11-03T15:55:38.3821350Z 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-11-03T15:55:38.3822400Z 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-11-03T15:55:38.3823610Z 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-11-03T15:55:38.3825010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-11-03T15:55:38.3825930Z 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-11-03T15:55:38.3827040Z 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-11-03T15:55:38.3828110Z 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-11-03T15:55:38.3829230Z 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-11-03T15:55:38.3830410Z 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-11-03T15:55:38.3831550Z 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-11-03T15:55:38.3832530Z 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-11-03T15:55:38.3833580Z 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-11-03T15:55:38.3834870Z 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-11-03T15:55:38.3835850Z 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-11-03T15:55:38.3836880Z 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-11-03T15:55:38.3838020Z 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-11-03T15:55:38.3839170Z 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-11-03T15:55:38.3840310Z 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-11-03T15:55:38.3841570Z 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-11-03T15:55:38.3842690Z 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-11-03T15:55:38.3844110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-11-03T15:55:38.3845110Z 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-11-03T15:55:38.3846550Z 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-11-03T15:55:38.3847860Z 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-11-03T15:55:38.3849000Z 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-11-03T15:55:38.3849950Z 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-11-03T15:55:38.3851110Z 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-11-03T15:55:38.3852260Z 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-11-03T15:55:38.3853360Z 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-11-03T15:55:38.3854830Z 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-11-03T15:55:38.3856050Z 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-11-03T15:55:38.3857140Z 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-11-03T15:55:38.3858300Z 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-11-03T15:55:38.3859580Z 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-11-03T15:55:38.3860960Z 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-11-03T15:55:38.3861990Z 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-11-03T15:55:38.3862920Z 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-11-03T15:55:38.3864390Z 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-11-03T15:55:38.3865670Z 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-11-03T15:55:38.3866760Z 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-11-03T15:55:38.3867920Z 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-11-03T15:55:38.3869110Z 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-11-03T15:55:38.3872090Z 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-11-03T15:55:38.3872890Z 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-11-03T15:55:38.3873990Z 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-11-03T15:55:38.3875630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/operator_schemas.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3876900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/config.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3877990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/proxy.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3879280Z 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-11-03T15:55:38.3880320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/traceback.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3881410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/graph.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3883650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-11-03T15:55:38.3884400Z 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-11-03T15:55:38.3885810Z 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-11-03T15:55:38.3886910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/regional_inductor.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx/passes 2025-11-03T15:55:38.3888060Z 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-11-03T15:55:38.3896210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-11-03T15:55:38.3896780Z 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-11-03T15:55:38.3897570Z 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-11-03T15:55:38.3898290Z 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-11-03T15:55:38.3899020Z 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-11-03T15:55:38.3899720Z 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-11-03T15:55:38.3900380Z 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-11-03T15:55:38.3901040Z 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-11-03T15:55:38.3901720Z 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-11-03T15:55:38.3902390Z 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-11-03T15:55:38.3902910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/backends 2025-11-03T15:55:38.3903460Z 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-11-03T15:55:38.3904260Z 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-11-03T15:55:38.3904840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/tests 2025-11-03T15:55:38.3905390Z 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-11-03T15:55:38.3906130Z 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-11-03T15:55:38.3907120Z 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-11-03T15:55:38.3908450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-11-03T15:55:38.3909540Z 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-11-03T15:55:38.3910870Z 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-11-03T15:55:38.3912160Z 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-11-03T15:55:38.3913270Z 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-11-03T15:55:38.3914340Z 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-11-03T15:55:38.3915610Z 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-11-03T15:55:38.3916730Z 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-11-03T15:55:38.3917800Z 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-11-03T15:55:38.3919070Z 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-11-03T15:55:38.3920190Z 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-11-03T15:55:38.3921310Z 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-11-03T15:55:38.3922400Z 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-11-03T15:55:38.3923790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect 2025-11-03T15:55:38.3924640Z 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-11-03T15:55:38.3925750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect/common 2025-11-03T15:55:38.3926620Z 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-11-03T15:55:38.3927740Z 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-11-03T15:55:38.3928530Z 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-11-03T15:55:38.3929790Z 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-11-03T15:55:38.3931210Z 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-11-03T15:55:38.3932280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/tensor_type.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3933370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3934430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/immutable_collections.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3935560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/annotate.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3936680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/subgraph_rewriter.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3937780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/interpreter.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3939030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_symbolic_trace.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3940510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/node.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3941870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_compatibility.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3942950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_graph_pickler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3944090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fx 2025-11-03T15:55:38.3945190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_ops.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:38.3946810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_utils_internal.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:38.3947900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quasirandom.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:38.3949360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_prims_common 2025-11-03T15:55:38.3950240Z 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-11-03T15:55:38.3951710Z 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-11-03T15:55:38.3953170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-11-03T15:55:38.3954160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/queue.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/multiprocessing 2025-11-03T15:55:38.3955420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/_atfork.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/multiprocessing 2025-11-03T15:55:38.3956540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/multiprocessing 2025-11-03T15:55:38.3957630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/spawn.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/multiprocessing 2025-11-03T15:55:38.3958790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/reductions.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/multiprocessing 2025-11-03T15:55:38.3960040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/pool.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/multiprocessing 2025-11-03T15:55:38.3961370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-11-03T15:55:38.3962180Z 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-11-03T15:55:38.3963290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/gds.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3964380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/streams.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3965480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/comm.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3966530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/memory.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3967840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/jiterator.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3968850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/nccl.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3969960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3971500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_gpu_trace.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3972570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/green_contexts.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3973610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_sanitizer.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3974840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/random.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3975950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_memory_viz.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3977180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/tunable.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3978470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_device_limits.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3979840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-11-03T15:55:38.3980650Z 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-11-03T15:55:38.3981740Z 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-11-03T15:55:38.3982810Z 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-11-03T15:55:38.3983910Z 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-11-03T15:55:38.3984960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3985990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/nvtx.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3987040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/graphs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3988340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3989460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/cuda 2025-11-03T15:55:38.3991380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-11-03T15:55:38.3991900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/sleef.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include 2025-11-03T15:55:38.3994490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-11-03T15:55:38.3995190Z 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-11-03T15:55:38.3996310Z 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-11-03T15:55:38.3997700Z 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-11-03T15:55:38.3999120Z 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-11-03T15:55:38.4000370Z 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-11-03T15:55:38.4002930Z 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-11-03T15:55:38.4003720Z 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-11-03T15:55:38.4004820Z 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-11-03T15:55:38.4006120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/conduit 2025-11-03T15:55:38.4007020Z 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-11-03T15:55:38.4008170Z 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-11-03T15:55:38.4009300Z 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-11-03T15:55:38.4010450Z 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-11-03T15:55:38.4011460Z 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-11-03T15:55:38.4012610Z 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-11-03T15:55:38.4013680Z 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-11-03T15:55:38.4014770Z 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-11-03T15:55:38.4024160Z 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-11-03T15:55:38.4024920Z 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-11-03T15:55:38.4026300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-11-03T15:55:38.4027160Z 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-11-03T15:55:38.4028490Z 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-11-03T15:55:38.4029540Z 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-11-03T15:55:38.4030960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/stl 2025-11-03T15:55:38.4031840Z 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-11-03T15:55:38.4032980Z 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-11-03T15:55:38.4034090Z 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-11-03T15:55:38.4035200Z 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-11-03T15:55:38.4036450Z 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-11-03T15:55:38.4037830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-11-03T15:55:38.4038730Z 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-11-03T15:55:38.4040690Z 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-11-03T15:55:38.4041380Z 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-11-03T15:55:38.4042470Z 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-11-03T15:55:38.4043550Z 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-11-03T15:55:38.4044630Z 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-11-03T15:55:38.4045800Z 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-11-03T15:55:38.4047020Z 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-11-03T15:55:38.4048130Z 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-11-03T15:55:38.4049160Z 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-11-03T15:55:38.4050790Z 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-11-03T15:55:38.4052200Z 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-11-03T15:55:38.4053460Z 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-11-03T15:55:38.4054610Z 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-11-03T15:55:38.4056030Z 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-11-03T15:55:38.4057260Z 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-11-03T15:55:38.4058400Z 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-11-03T15:55:38.4059640Z 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-11-03T15:55:38.4060900Z 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-11-03T15:55:38.4063270Z 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-11-03T15:55:38.4064010Z 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-11-03T15:55:38.4065110Z 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-11-03T15:55:38.4066380Z 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-11-03T15:55:38.4067600Z 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-11-03T15:55:38.4069420Z 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-11-03T15:55:38.4070750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-11-03T15:55:38.4071570Z 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-11-03T15:55:38.4072690Z 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-11-03T15:55:38.4074230Z 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-11-03T15:55:38.4075590Z 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-11-03T15:55:38.4076550Z 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-11-03T15:55:38.4077610Z 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-11-03T15:55:38.4079220Z 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-11-03T15:55:38.4080190Z 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-11-03T15:55:38.4081390Z 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-11-03T15:55:38.4082520Z 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-11-03T15:55:38.4083730Z 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-11-03T15:55:38.4085050Z 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-11-03T15:55:38.4087340Z 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-11-03T15:55:38.4088120Z 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-11-03T15:55:38.4090130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2 2025-11-03T15:55:38.4091030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-11-03T15:55:38.4091880Z 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-11-03T15:55:38.4093060Z 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-11-03T15:55:38.4094170Z 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-11-03T15:55:38.4095660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-11-03T15:55:38.4096590Z 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-11-03T15:55:38.4097690Z 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-11-03T15:55:38.4098750Z 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-11-03T15:55:38.4100030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-11-03T15:55:38.4100930Z 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-11-03T15:55:38.4102110Z 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-11-03T15:55:38.4103170Z 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-11-03T15:55:38.4104680Z 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-11-03T15:55:38.4105870Z 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-11-03T15:55:38.4106920Z 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-11-03T15:55:38.4108220Z 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-11-03T15:55:38.4109700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-11-03T15:55:38.4110570Z 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-11-03T15:55:38.4111820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-11-03T15:55:38.4112720Z 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-11-03T15:55:38.4113840Z 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-11-03T15:55:38.4114960Z 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-11-03T15:55:38.4116050Z 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-11-03T15:55:38.4117070Z 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-11-03T15:55:38.4118170Z 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-11-03T15:55:38.4119290Z 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-11-03T15:55:38.4120340Z 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-11-03T15:55:38.4121560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google 2025-11-03T15:55:38.4122850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-11-03T15:55:38.4123780Z 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-11-03T15:55:38.4125150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-11-03T15:55:38.4126060Z 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-11-03T15:55:38.4127350Z 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-11-03T15:55:38.4128480Z 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-11-03T15:55:38.4129550Z 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-11-03T15:55:38.4130680Z 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-11-03T15:55:38.4131710Z 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-11-03T15:55:38.4132960Z 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-11-03T15:55:38.4134060Z 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-11-03T15:55:38.4135180Z 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-11-03T15:55:38.4136260Z 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-11-03T15:55:38.4137370Z 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-11-03T15:55:38.4138460Z 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-11-03T15:55:38.4139710Z 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-11-03T15:55:38.4140870Z 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-11-03T15:55:38.4141940Z 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-11-03T15:55:38.4143040Z 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-11-03T15:55:38.4144360Z 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-11-03T15:55:38.4145670Z 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-11-03T15:55:38.4146750Z 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-11-03T15:55:38.4148400Z 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-11-03T15:55:38.4149520Z 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-11-03T15:55:38.4150760Z 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-11-03T15:55:38.4152120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-11-03T15:55:38.4152980Z 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-11-03T15:55:38.4154110Z 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-11-03T15:55:38.4155210Z 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-11-03T15:55:38.4156340Z 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-11-03T15:55:38.4157430Z 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-11-03T15:55:38.4158840Z 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-11-03T15:55:38.4160270Z 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-11-03T15:55:38.4161740Z 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-11-03T15:55:38.4162890Z 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-11-03T15:55:38.4164390Z 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-11-03T15:55:38.4165410Z 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-11-03T15:55:38.4166670Z 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-11-03T15:55:38.4167820Z 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-11-03T15:55:38.4169200Z 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-11-03T15:55:38.4170300Z 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-11-03T15:55:38.4172500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-11-03T15:55:38.4173150Z 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-11-03T15:55:38.4174270Z 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-11-03T15:55:38.4175470Z 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-11-03T15:55:38.4176680Z 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-11-03T15:55:38.4177950Z 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-11-03T15:55:38.4179140Z 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-11-03T15:55:38.4180360Z 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-11-03T15:55:38.4181420Z 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-11-03T15:55:38.4182540Z 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-11-03T15:55:38.4184100Z 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-11-03T15:55:38.4185520Z 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-11-03T15:55:38.4187050Z 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-11-03T15:55:38.4188190Z 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-11-03T15:55:38.4189240Z 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-11-03T15:55:38.4190360Z 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-11-03T15:55:38.4191800Z 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-11-03T15:55:38.4192870Z 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-11-03T15:55:38.4194720Z 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-11-03T15:55:38.4195540Z 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-11-03T15:55:38.4196600Z 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-11-03T15:55:38.4197900Z 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-11-03T15:55:38.4198840Z 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-11-03T15:55:38.4199890Z 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-11-03T15:55:38.4201500Z 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-11-03T15:55:38.4202530Z 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-11-03T15:55:38.4203660Z 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-11-03T15:55:38.4204720Z 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-11-03T15:55:38.4208900Z 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-11-03T15:55:38.4209590Z 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-11-03T15:55:38.4210850Z 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-11-03T15:55:38.4211870Z 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-11-03T15:55:38.4213100Z 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-11-03T15:55:38.4214350Z 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-11-03T15:55:38.4215550Z 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-11-03T15:55:38.4216630Z 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-11-03T15:55:38.4217740Z 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-11-03T15:55:38.4219100Z 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-11-03T15:55:38.4220440Z 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-11-03T15:55:38.4221390Z 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-11-03T15:55:38.4222510Z 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-11-03T15:55:38.4223600Z 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-11-03T15:55:38.4224710Z 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-11-03T15:55:38.4226300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-11-03T15:55:38.4227290Z 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-11-03T15:55:38.4228420Z 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-11-03T15:55:38.4229930Z 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-11-03T15:55:38.4231150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/python 2025-11-03T15:55:38.4232170Z 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-11-03T15:55:38.4233290Z 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-11-03T15:55:38.4234720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/js 2025-11-03T15:55:38.4235750Z 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-11-03T15:55:38.4236800Z 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-11-03T15:55:38.4238100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/java 2025-11-03T15:55:38.4239040Z 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-11-03T15:55:38.4240120Z 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-11-03T15:55:38.4241320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/php 2025-11-03T15:55:38.4242280Z 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-11-03T15:55:38.4243400Z 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-11-03T15:55:38.4244810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/cpp 2025-11-03T15:55:38.4245700Z 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-11-03T15:55:38.4246820Z 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-11-03T15:55:38.4248180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/csharp 2025-11-03T15:55:38.4249070Z 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-11-03T15:55:38.4250530Z 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-11-03T15:55:38.4251420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/ruby 2025-11-03T15:55:38.4252360Z 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-11-03T15:55:38.4253610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/objectivec 2025-11-03T15:55:38.4254600Z 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-11-03T15:55:38.4255750Z 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-11-03T15:55:38.4256700Z 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-11-03T15:55:38.4257830Z 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-11-03T15:55:38.4259150Z 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-11-03T15:55:38.4260300Z 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-11-03T15:55:38.4261970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/cpuinfo.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include 2025-11-03T15:55:38.4263970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-11-03T15:55:38.4264760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly 2025-11-03T15:55:38.4265660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/version.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/torch/headeronly 2025-11-03T15:55:38.4266950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/core 2025-11-03T15:55:38.4267830Z 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-11-03T15:55:38.4269140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/core/DeviceType.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/torch/headeronly/core 2025-11-03T15:55:38.4270490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-11-03T15:55:38.4271370Z 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-11-03T15:55:38.4272590Z 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-11-03T15:55:38.4273950Z 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-11-03T15:55:38.4275310Z 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-11-03T15:55:38.4276110Z 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-11-03T15:55:38.4277220Z 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-11-03T15:55:38.4278310Z 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-11-03T15:55:38.4279440Z 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-11-03T15:55:38.4280500Z 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-11-03T15:55:38.4281600Z 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-11-03T15:55:38.4282740Z 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-11-03T15:55:38.4283830Z 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-11-03T15:55:38.4284950Z 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-11-03T15:55:38.4286120Z 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-11-03T15:55:38.4287190Z 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-11-03T15:55:38.4288270Z 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-11-03T15:55:38.4289390Z 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-11-03T15:55:38.4290460Z 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-11-03T15:55:38.4291660Z 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-11-03T15:55:38.4292900Z 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-11-03T15:55:38.4294260Z 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-11-03T15:55:38.4295550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu 2025-11-03T15:55:38.4296840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec 2025-11-03T15:55:38.4297420Z 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-11-03T15:55:38.4298740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec/vec256 2025-11-03T15:55:38.4299690Z 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-11-03T15:55:38.4300900Z 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-11-03T15:55:38.4302000Z 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-11-03T15:55:38.4303260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-11-03T15:55:38.4304150Z 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-11-03T15:55:38.4305250Z 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-11-03T15:55:38.4306360Z 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-11-03T15:55:38.4308440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-11-03T15:55:38.4309150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-11-03T15:55:38.4310060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/version.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/torch/csrc/stable 2025-11-03T15:55:38.4311330Z 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-11-03T15:55:38.4312430Z 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-11-03T15:55:38.4313530Z 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-11-03T15:55:38.4314630Z 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-11-03T15:55:38.4315720Z 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-11-03T15:55:38.4316730Z 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-11-03T15:55:38.4318020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable/c 2025-11-03T15:55:38.4318910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/c/shim.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/torch/csrc/stable/c 2025-11-03T15:55:38.4320070Z 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-11-03T15:55:38.4321100Z 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-11-03T15:55:38.4322490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-11-03T15:55:38.4323490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-11-03T15:55:38.4324400Z 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-11-03T15:55:38.4325580Z 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-11-03T15:55:38.4326810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_eager 2025-11-03T15:55:38.4327740Z 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-11-03T15:55:38.4328880Z 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-11-03T15:55:38.4330040Z 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-11-03T15:55:38.4331010Z 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-11-03T15:55:38.4332080Z 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-11-03T15:55:38.4333450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-11-03T15:55:38.4334340Z 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-11-03T15:55:38.4335480Z 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-11-03T15:55:38.4336700Z 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-11-03T15:55:38.4337860Z 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-11-03T15:55:38.4339010Z 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-11-03T15:55:38.4340140Z 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-11-03T15:55:38.4341810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-11-03T15:55:38.4342340Z 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-11-03T15:55:38.4343490Z 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-11-03T15:55:38.4344620Z 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-11-03T15:55:38.4345980Z 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-11-03T15:55:38.4346830Z 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-11-03T15:55:38.4347960Z 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-11-03T15:55:38.4349130Z 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-11-03T15:55:38.4350150Z 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-11-03T15:55:38.4351260Z 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-11-03T15:55:38.4352360Z 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-11-03T15:55:38.4353500Z 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-11-03T15:55:38.4354680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/kernel_context_tls.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/torch/csrc/inductor/aoti_runtime 2025-11-03T15:55:38.4355770Z 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-11-03T15:55:38.4357020Z 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-11-03T15:55:38.4358280Z 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-11-03T15:55:38.4359970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-11-03T15:55:38.4360580Z 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-11-03T15:55:38.4361660Z 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-11-03T15:55:38.4362820Z 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-11-03T15:55:38.4363870Z 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-11-03T15:55:38.4365000Z 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-11-03T15:55:38.4366060Z 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-11-03T15:55:38.4367120Z 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-11-03T15:55:38.4369240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-11-03T15:55:38.4369770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-11-03T15:55:38.4370790Z 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-11-03T15:55:38.4372080Z 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-11-03T15:55:38.4373220Z 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-11-03T15:55:38.4374490Z 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-11-03T15:55:38.4375840Z 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-11-03T15:55:38.4376930Z 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-11-03T15:55:38.4378070Z 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-11-03T15:55:38.4379140Z 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-11-03T15:55:38.4380310Z 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-11-03T15:55:38.4381360Z 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-11-03T15:55:38.4383050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-11-03T15:55:38.4383600Z 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-11-03T15:55:38.4384700Z 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-11-03T15:55:38.4385850Z 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-11-03T15:55:38.4387000Z 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-11-03T15:55:38.4388090Z 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-11-03T15:55:38.4389170Z 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-11-03T15:55:38.4390680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-11-03T15:55:38.4391730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-11-03T15:55:38.4392730Z 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-11-03T15:55:38.4393840Z 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-11-03T15:55:38.4395090Z 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-11-03T15:55:38.4396130Z 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-11-03T15:55:38.4397130Z 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-11-03T15:55:38.4398250Z 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-11-03T15:55:38.4399350Z 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-11-03T15:55:38.4400450Z 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-11-03T15:55:38.4401520Z 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-11-03T15:55:38.4402660Z 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-11-03T15:55:38.4403660Z 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-11-03T15:55:38.4404850Z 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-11-03T15:55:38.4406040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-11-03T15:55:38.4406960Z 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-11-03T15:55:38.4408100Z 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-11-03T15:55:38.4409170Z 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-11-03T15:55:38.4410850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/instruction_counter 2025-11-03T15:55:38.4411370Z 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-11-03T15:55:38.4412380Z 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-11-03T15:55:38.4413480Z 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-11-03T15:55:38.4414560Z 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-11-03T15:55:38.4415800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mps 2025-11-03T15:55:38.4416700Z 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-11-03T15:55:38.4417880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-11-03T15:55:38.4418800Z 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-11-03T15:55:38.4419890Z 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-11-03T15:55:38.4421030Z 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-11-03T15:55:38.4422280Z 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-11-03T15:55:38.4423670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cpu 2025-11-03T15:55:38.4424580Z 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-11-03T15:55:38.4425750Z 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-11-03T15:55:38.4427180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed 2025-11-03T15:55:38.4428460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-11-03T15:55:38.4429740Z 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-11-03T15:55:38.4431540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-11-03T15:55:38.4432560Z 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-11-03T15:55:38.4433970Z 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-11-03T15:55:38.4435410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-11-03T15:55:38.4436580Z 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-11-03T15:55:38.4437860Z 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-11-03T15:55:38.4439190Z 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-11-03T15:55:38.4440410Z 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-11-03T15:55:38.4441720Z 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-11-03T15:55:38.4442980Z 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-11-03T15:55:38.4444110Z 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-11-03T15:55:38.4445220Z 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-11-03T15:55:38.4446390Z 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-11-03T15:55:38.4447560Z 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-11-03T15:55:38.4448900Z 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-11-03T15:55:38.4449980Z 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-11-03T15:55:38.4451530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-11-03T15:55:38.4452340Z 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-11-03T15:55:38.4453540Z 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-11-03T15:55:38.4455160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/engine 2025-11-03T15:55:38.4455970Z 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-11-03T15:55:38.4457110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/Placement.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/torch/csrc/distributed 2025-11-03T15:55:38.4458260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/python_placement.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/torch/csrc/distributed 2025-11-03T15:55:38.4459700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-11-03T15:55:38.4460720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/metrics 2025-11-03T15:55:38.4461720Z 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-11-03T15:55:38.4462810Z 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-11-03T15:55:38.4463920Z 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-11-03T15:55:38.4465130Z 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-11-03T15:55:38.4466170Z 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-11-03T15:55:38.4467240Z 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-11-03T15:55:38.4468650Z 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-11-03T15:55:38.4469740Z 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-11-03T15:55:38.4470920Z 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-11-03T15:55:38.4472040Z 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-11-03T15:55:38.4473200Z 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-11-03T15:55:38.4474460Z 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-11-03T15:55:38.4475520Z 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-11-03T15:55:38.4476730Z 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-11-03T15:55:38.4477830Z 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-11-03T15:55:38.4478940Z 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-11-03T15:55:38.4480090Z 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-11-03T15:55:38.4487650Z 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-11-03T15:55:38.4487870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/testing 2025-11-03T15:55:38.4488360Z 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-11-03T15:55:38.4488890Z 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-11-03T15:55:38.4489390Z 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-11-03T15:55:38.4489820Z 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-11-03T15:55:38.4490310Z 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-11-03T15:55:38.4490620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/profiler 2025-11-03T15:55:38.4491660Z 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-11-03T15:55:38.4492820Z 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-11-03T15:55:38.4493860Z 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-11-03T15:55:38.4495040Z 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-11-03T15:55:38.4496160Z 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-11-03T15:55:38.4497350Z 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-11-03T15:55:38.4498460Z 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-11-03T15:55:38.4499580Z 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-11-03T15:55:38.4500690Z 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-11-03T15:55:38.4502230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-11-03T15:55:38.4503310Z 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-11-03T15:55:38.4504480Z 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-11-03T15:55:38.4505580Z 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-11-03T15:55:38.4506600Z 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-11-03T15:55:38.4507660Z 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-11-03T15:55:38.4508830Z 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-11-03T15:55:38.4509960Z 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-11-03T15:55:38.4511340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-11-03T15:55:38.4512350Z 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-11-03T15:55:38.4513530Z 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-11-03T15:55:38.4514520Z 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-11-03T15:55:38.4515670Z 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-11-03T15:55:38.4516710Z 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-11-03T15:55:38.4517850Z 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-11-03T15:55:38.4518940Z 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-11-03T15:55:38.4520210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/cuda 2025-11-03T15:55:38.4521170Z 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-11-03T15:55:38.4522280Z 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-11-03T15:55:38.4523460Z 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-11-03T15:55:38.4524580Z 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-11-03T15:55:38.4525620Z 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-11-03T15:55:38.4526650Z 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-11-03T15:55:38.4527710Z 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-11-03T15:55:38.4528860Z 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-11-03T15:55:38.4530200Z 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-11-03T15:55:38.4531300Z 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-11-03T15:55:38.4532450Z 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-11-03T15:55:38.4533630Z 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-11-03T15:55:38.4534670Z 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-11-03T15:55:38.4535840Z 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-11-03T15:55:38.4537160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-11-03T15:55:38.4538110Z 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-11-03T15:55:38.4539280Z 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-11-03T15:55:38.4540410Z 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-11-03T15:55:38.4541560Z 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-11-03T15:55:38.4542600Z 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-11-03T15:55:38.4543920Z 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-11-03T15:55:38.4544690Z 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-11-03T15:55:38.4545800Z 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-11-03T15:55:38.4546940Z 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-11-03T15:55:38.4548150Z 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-11-03T15:55:38.4549300Z 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-11-03T15:55:38.4550360Z 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-11-03T15:55:38.4551460Z 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-11-03T15:55:38.4552550Z 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-11-03T15:55:38.4553830Z 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-11-03T15:55:38.4554640Z 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-11-03T15:55:38.4555770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_plane 2025-11-03T15:55:38.4556760Z 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-11-03T15:55:38.4557860Z 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-11-03T15:55:38.4558900Z 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-11-03T15:55:38.4560010Z 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-11-03T15:55:38.4561160Z 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-11-03T15:55:38.4562690Z 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-11-03T15:55:38.4563890Z 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-11-03T15:55:38.4565150Z 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-11-03T15:55:38.4567510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-11-03T15:55:38.4568410Z 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-11-03T15:55:38.4569380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/nvshmem_team_manager.hpp -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/torch/csrc/distributed/c10d/symm_mem 2025-11-03T15:55:38.4570540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/env.hpp -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/torch/csrc/distributed/c10d/symm_mem 2025-11-03T15:55:38.4571620Z 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-11-03T15:55:38.4572750Z 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-11-03T15:55:38.4573890Z 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-11-03T15:55:38.4575100Z 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-11-03T15:55:38.4576180Z 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-11-03T15:55:38.4577250Z 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-11-03T15:55:38.4578330Z 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-11-03T15:55:38.4579490Z 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-11-03T15:55:38.4580650Z 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-11-03T15:55:38.4581730Z 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-11-03T15:55:38.4582770Z 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-11-03T15:55:38.4583910Z 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-11-03T15:55:38.4585530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-11-03T15:55:38.4586740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-11-03T15:55:38.4587690Z 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-11-03T15:55:38.4588880Z 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-11-03T15:55:38.4590240Z 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-11-03T15:55:38.4591360Z 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-11-03T15:55:38.4592490Z 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-11-03T15:55:38.4596410Z 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-11-03T15:55:38.4597520Z 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-11-03T15:55:38.4598600Z 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-11-03T15:55:38.4599830Z 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-11-03T15:55:38.4601030Z 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-11-03T15:55:38.4602330Z 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-11-03T15:55:38.4603430Z 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-11-03T15:55:38.4604530Z 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-11-03T15:55:38.4605700Z 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-11-03T15:55:38.4606800Z 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-11-03T15:55:38.4607970Z 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-11-03T15:55:38.4608990Z 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-11-03T15:55:38.4610150Z 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-11-03T15:55:38.4611250Z 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-11-03T15:55:38.4612470Z 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-11-03T15:55:38.4613550Z 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-11-03T15:55:38.4614680Z 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-11-03T15:55:38.4615850Z 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-11-03T15:55:38.4616970Z 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-11-03T15:55:38.4618030Z 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-11-03T15:55:38.4619160Z 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-11-03T15:55:38.4620250Z 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-11-03T15:55:38.4621410Z 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-11-03T15:55:38.4622500Z 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-11-03T15:55:38.4624370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-11-03T15:55:38.4625110Z 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-11-03T15:55:38.4626240Z 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-11-03T15:55:38.4627420Z 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-11-03T15:55:38.4628600Z 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-11-03T15:55:38.4629800Z 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-11-03T15:55:38.4630920Z 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-11-03T15:55:38.4632030Z 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-11-03T15:55:38.4633460Z 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-11-03T15:55:38.4634250Z 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-11-03T15:55:38.4635380Z 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-11-03T15:55:38.4636420Z 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-11-03T15:55:38.4637580Z 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-11-03T15:55:38.4638710Z 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-11-03T15:55:38.4639830Z 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-11-03T15:55:38.4640900Z 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-11-03T15:55:38.4642000Z 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-11-03T15:55:38.4643110Z 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-11-03T15:55:38.4644150Z 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-11-03T15:55:38.4645270Z 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-11-03T15:55:38.4646670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-11-03T15:55:38.4647500Z 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-11-03T15:55:38.4648640Z 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-11-03T15:55:38.4649700Z 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-11-03T15:55:38.4650870Z 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-11-03T15:55:38.4651940Z 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-11-03T15:55:38.4653020Z 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-11-03T15:55:38.4654120Z 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-11-03T15:55:38.4655190Z 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-11-03T15:55:38.4656610Z 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-11-03T15:55:38.4657650Z 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-11-03T15:55:38.4658830Z 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-11-03T15:55:38.4660180Z 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-11-03T15:55:38.4661050Z 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-11-03T15:55:38.4662070Z 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-11-03T15:55:38.4663210Z 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-11-03T15:55:38.4664480Z 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-11-03T15:55:38.4665830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/fx 2025-11-03T15:55:38.4666690Z 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-11-03T15:55:38.4668060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/multiprocessing 2025-11-03T15:55:38.4669060Z 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-11-03T15:55:38.4670300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-11-03T15:55:38.4671500Z 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-11-03T15:55:38.4672350Z 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-11-03T15:55:38.4673460Z 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-11-03T15:55:38.4674580Z 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-11-03T15:55:38.4675650Z 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-11-03T15:55:38.4676750Z 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-11-03T15:55:38.4677810Z 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-11-03T15:55:38.4678950Z 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-11-03T15:55:38.4680070Z 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-11-03T15:55:38.4681180Z 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-11-03T15:55:38.4682210Z 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-11-03T15:55:38.4683310Z 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-11-03T15:55:38.4684390Z 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-11-03T15:55:38.4685510Z 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-11-03T15:55:38.4686540Z 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-11-03T15:55:38.4687620Z 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-11-03T15:55:38.4689110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-11-03T15:55:38.4690230Z 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-11-03T15:55:38.4691550Z 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-11-03T15:55:38.4692730Z 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-11-03T15:55:38.4693830Z 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-11-03T15:55:38.4695460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-11-03T15:55:38.4696350Z 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-11-03T15:55:38.4697520Z 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-11-03T15:55:38.4698630Z 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-11-03T15:55:38.4699710Z 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-11-03T15:55:38.4700910Z 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-11-03T15:55:38.4702060Z 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-11-03T15:55:38.4703130Z 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-11-03T15:55:38.4704230Z 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-11-03T15:55:38.4705730Z 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-11-03T15:55:38.4706970Z 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-11-03T15:55:38.4708030Z 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-11-03T15:55:38.4717680Z 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-11-03T15:55:38.4718450Z 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-11-03T15:55:38.4719580Z 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-11-03T15:55:38.4721590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-11-03T15:55:38.4722130Z 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-11-03T15:55:38.4723290Z 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-11-03T15:55:38.4724410Z 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-11-03T15:55:38.4725600Z 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-11-03T15:55:38.4726700Z 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-11-03T15:55:38.4727840Z 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-11-03T15:55:38.4728900Z 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-11-03T15:55:38.4730050Z 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-11-03T15:55:38.4731110Z 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-11-03T15:55:38.4732180Z 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-11-03T15:55:38.4733280Z 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-11-03T15:55:38.4734350Z 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-11-03T15:55:38.4743490Z 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-11-03T15:55:38.4744190Z 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-11-03T15:55:38.4745400Z 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-11-03T15:55:38.4747560Z 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-11-03T15:55:38.4748210Z 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-11-03T15:55:38.4749370Z 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-11-03T15:55:38.4750530Z 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-11-03T15:55:38.4751590Z 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-11-03T15:55:38.4752720Z 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-11-03T15:55:38.4753890Z 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-11-03T15:55:38.4755260Z 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-11-03T15:55:38.4756370Z 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-11-03T15:55:38.4757520Z 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-11-03T15:55:38.4758560Z 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-11-03T15:55:38.4759740Z 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-11-03T15:55:38.4761030Z 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-11-03T15:55:38.4762100Z 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-11-03T15:55:38.4763160Z 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-11-03T15:55:38.4764320Z 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-11-03T15:55:38.4765470Z 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-11-03T15:55:38.4766630Z 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-11-03T15:55:38.4767750Z 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-11-03T15:55:38.4768860Z 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-11-03T15:55:38.4770060Z 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-11-03T15:55:38.4771210Z 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-11-03T15:55:38.4772290Z 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-11-03T15:55:38.4773400Z 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-11-03T15:55:38.4774510Z 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-11-03T15:55:38.4776000Z 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-11-03T15:55:38.4776810Z 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-11-03T15:55:38.4777850Z 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-11-03T15:55:38.4779060Z 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-11-03T15:55:38.4780170Z 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-11-03T15:55:38.4781280Z 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-11-03T15:55:38.4782420Z 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-11-03T15:55:38.4783730Z 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-11-03T15:55:38.4784800Z 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-11-03T15:55:38.4785960Z 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-11-03T15:55:38.4786990Z 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-11-03T15:55:38.4788100Z 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-11-03T15:55:38.4789630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-11-03T15:55:38.4790410Z 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-11-03T15:55:38.4791890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-11-03T15:55:38.4792770Z 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-11-03T15:55:38.4793890Z 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-11-03T15:55:38.4795270Z 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-11-03T15:55:38.4796470Z 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-11-03T15:55:38.4797570Z 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-11-03T15:55:38.4798650Z 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-11-03T15:55:38.4799730Z 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-11-03T15:55:38.4801100Z 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-11-03T15:55:38.4802170Z 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-11-03T15:55:38.4803250Z 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-11-03T15:55:38.4804380Z 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-11-03T15:55:38.4805570Z 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-11-03T15:55:38.4806770Z 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-11-03T15:55:38.4808230Z 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-11-03T15:55:38.4809170Z 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-11-03T15:55:38.4810430Z 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-11-03T15:55:38.4811860Z 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-11-03T15:55:38.4813050Z 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-11-03T15:55:38.4814280Z 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-11-03T15:55:38.4815530Z 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-11-03T15:55:38.4816770Z 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-11-03T15:55:38.4818030Z 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-11-03T15:55:38.4819200Z 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-11-03T15:55:38.4820750Z 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-11-03T15:55:38.4821870Z 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-11-03T15:55:38.4823100Z 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-11-03T15:55:38.4824270Z 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-11-03T15:55:38.4825550Z 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-11-03T15:55:38.4827030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-11-03T15:55:38.4827990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/opaque_obj.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/torch/csrc/jit/python 2025-11-03T15:55:38.4829070Z 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-11-03T15:55:38.4830210Z 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-11-03T15:55:38.4831250Z 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-11-03T15:55:38.4832470Z 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-11-03T15:55:38.4833760Z 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-11-03T15:55:38.4834890Z 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-11-03T15:55:38.4835970Z 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-11-03T15:55:38.4837030Z 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-11-03T15:55:38.4838200Z 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-11-03T15:55:38.4839320Z 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-11-03T15:55:38.4840400Z 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-11-03T15:55:38.4841470Z 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-11-03T15:55:38.4842880Z 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-11-03T15:55:38.4844060Z 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-11-03T15:55:38.4845200Z 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-11-03T15:55:38.4846290Z 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-11-03T15:55:38.4847840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-11-03T15:55:38.4848780Z 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-11-03T15:55:38.4849930Z 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-11-03T15:55:38.4851030Z 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-11-03T15:55:38.4852140Z 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-11-03T15:55:38.4853230Z 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-11-03T15:55:38.4854320Z 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-11-03T15:55:38.4855380Z 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-11-03T15:55:38.4856750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-11-03T15:55:38.4857700Z 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-11-03T15:55:38.4858830Z 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-11-03T15:55:38.4859920Z 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-11-03T15:55:38.4861310Z 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-11-03T15:55:38.4862140Z 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-11-03T15:55:38.4863250Z 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-11-03T15:55:38.4864380Z 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-11-03T15:55:38.4865550Z 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-11-03T15:55:38.4866650Z 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-11-03T15:55:38.4867680Z 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-11-03T15:55:38.4868760Z 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-11-03T15:55:38.4869990Z 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-11-03T15:55:38.4871040Z 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-11-03T15:55:38.4872370Z 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-11-03T15:55:38.4873470Z 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-11-03T15:55:38.4874590Z 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-11-03T15:55:38.4875700Z 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-11-03T15:55:38.4876800Z 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-11-03T15:55:38.4877970Z 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-11-03T15:55:38.4879080Z 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-11-03T15:55:38.4880200Z 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-11-03T15:55:38.4881300Z 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-11-03T15:55:38.4882460Z 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-11-03T15:55:38.4883570Z 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-11-03T15:55:38.4884720Z 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-11-03T15:55:38.4885850Z 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-11-03T15:55:38.4886960Z 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-11-03T15:55:38.4888170Z 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-11-03T15:55:38.4889260Z 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-11-03T15:55:38.4890450Z 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-11-03T15:55:38.4891490Z 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-11-03T15:55:38.4892610Z 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-11-03T15:55:38.4893910Z 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-11-03T15:55:38.4895110Z 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-11-03T15:55:38.4896260Z 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-11-03T15:55:38.4897400Z 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-11-03T15:55:38.4898570Z 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-11-03T15:55:38.4899690Z 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-11-03T15:55:38.4900980Z 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-11-03T15:55:38.4902090Z 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-11-03T15:55:38.4903220Z 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-11-03T15:55:38.4904350Z 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-11-03T15:55:38.4905420Z 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-11-03T15:55:38.4906540Z 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-11-03T15:55:38.4907900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-11-03T15:55:38.4908790Z 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-11-03T15:55:38.4909900Z 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-11-03T15:55:38.4911040Z 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-11-03T15:55:38.4912480Z 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-11-03T15:55:38.4913580Z 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-11-03T15:55:38.4914770Z 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-11-03T15:55:38.4915890Z 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-11-03T15:55:38.4916950Z 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-11-03T15:55:38.4918090Z 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-11-03T15:55:38.4919160Z 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-11-03T15:55:38.4920250Z 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-11-03T15:55:38.4921390Z 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-11-03T15:55:38.4922480Z 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-11-03T15:55:38.4924180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/cuda 2025-11-03T15:55:38.4924720Z 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-11-03T15:55:38.4926110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-11-03T15:55:38.4927040Z 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-11-03T15:55:38.4928200Z 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-11-03T15:55:38.4929300Z 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-11-03T15:55:38.4930460Z 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-11-03T15:55:38.4931680Z 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-11-03T15:55:38.4932760Z 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-11-03T15:55:38.4933830Z 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-11-03T15:55:38.4934990Z 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-11-03T15:55:38.4936170Z 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-11-03T15:55:38.4937290Z 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-11-03T15:55:38.4938380Z 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-11-03T15:55:38.4939470Z 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-11-03T15:55:38.4940610Z 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-11-03T15:55:38.4941680Z 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-11-03T15:55:38.4942860Z 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-11-03T15:55:38.4944050Z 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-11-03T15:55:38.4945210Z 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-11-03T15:55:38.4946430Z 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-11-03T15:55:38.4947540Z 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-11-03T15:55:38.4948690Z 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-11-03T15:55:38.4949740Z 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-11-03T15:55:38.4951400Z 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-11-03T15:55:38.4952730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-11-03T15:55:38.4953670Z 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-11-03T15:55:38.4954780Z 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-11-03T15:55:38.4955920Z 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-11-03T15:55:38.4957060Z 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-11-03T15:55:38.4958310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml 2025-11-03T15:55:38.4959350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-11-03T15:55:38.4960310Z 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-11-03T15:55:38.4961590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-11-03T15:55:38.4962580Z 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-11-03T15:55:38.4963700Z 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-11-03T15:55:38.4964860Z 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-11-03T15:55:38.4966250Z 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-11-03T15:55:38.4967100Z 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-11-03T15:55:38.4968140Z 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-11-03T15:55:38.4969420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack 2025-11-03T15:55:38.4970520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-11-03T15:55:38.4971500Z 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-11-03T15:55:38.4972590Z 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-11-03T15:55:38.4974040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-11-03T15:55:38.4975260Z 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-11-03T15:55:38.4976730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-11-03T15:55:38.4977860Z 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-11-03T15:55:38.4978910Z 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-11-03T15:55:38.4980180Z 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-11-03T15:55:38.4981330Z 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-11-03T15:55:38.4982440Z 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-11-03T15:55:38.4983940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-11-03T15:55:38.4985050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-11-03T15:55:38.4985980Z 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-11-03T15:55:38.4987200Z 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-11-03T15:55:38.4988300Z 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-11-03T15:55:38.4989680Z 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-11-03T15:55:38.4990800Z 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-11-03T15:55:38.4991890Z 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-11-03T15:55:38.4993080Z 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-11-03T15:55:38.4994200Z 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-11-03T15:55:38.4995280Z 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-11-03T15:55:38.4996460Z 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-11-03T15:55:38.4997640Z 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-11-03T15:55:38.4998940Z 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-11-03T15:55:38.5000080Z 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-11-03T15:55:38.5001140Z 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-11-03T15:55:38.5002300Z 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-11-03T15:55:38.5003450Z 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-11-03T15:55:38.5004520Z 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-11-03T15:55:38.5005950Z 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-11-03T15:55:38.5006830Z 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-11-03T15:55:38.5007980Z 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-11-03T15:55:38.5009070Z 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-11-03T15:55:38.5010480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-11-03T15:55:38.5011400Z 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-11-03T15:55:38.5012690Z 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-11-03T15:55:38.5013770Z 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-11-03T15:55:38.5014880Z 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-11-03T15:55:38.5016010Z 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-11-03T15:55:38.5017090Z 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-11-03T15:55:38.5018120Z 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-11-03T15:55:38.5019250Z 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-11-03T15:55:38.5020660Z 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-11-03T15:55:38.5021800Z 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-11-03T15:55:38.5022860Z 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-11-03T15:55:38.5023970Z 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-11-03T15:55:38.5025140Z 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-11-03T15:55:38.5026260Z 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-11-03T15:55:38.5027400Z 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-11-03T15:55:38.5028550Z 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-11-03T15:55:38.5029730Z 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-11-03T15:55:38.5030800Z 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-11-03T15:55:38.5031890Z 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-11-03T15:55:38.5033000Z 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-11-03T15:55:38.5034100Z 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-11-03T15:55:38.5035240Z 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-11-03T15:55:38.5036340Z 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-11-03T15:55:38.5037720Z 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-11-03T15:55:38.5039310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-11-03T15:55:38.5040180Z 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-11-03T15:55:38.5041370Z 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-11-03T15:55:38.5042510Z 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-11-03T15:55:38.5043590Z 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-11-03T15:55:38.5044710Z 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-11-03T15:55:38.5045880Z 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-11-03T15:55:38.5047060Z 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-11-03T15:55:38.5048130Z 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-11-03T15:55:38.5049280Z 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-11-03T15:55:38.5050370Z 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-11-03T15:55:38.5051470Z 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-11-03T15:55:38.5052590Z 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-11-03T15:55:38.5053890Z 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-11-03T15:55:38.5054900Z 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-11-03T15:55:38.5056030Z 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-11-03T15:55:38.5057180Z 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-11-03T15:55:38.5058630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-11-03T15:55:38.5059560Z 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-11-03T15:55:38.5060740Z 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-11-03T15:55:38.5061910Z 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-11-03T15:55:38.5063050Z 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-11-03T15:55:38.5064170Z 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-11-03T15:55:38.5065290Z 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-11-03T15:55:38.5066380Z 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-11-03T15:55:38.5067650Z 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-11-03T15:55:38.5068820Z 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-11-03T15:55:38.5070030Z 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-11-03T15:55:38.5071120Z 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-11-03T15:55:38.5072220Z 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-11-03T15:55:38.5073430Z 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-11-03T15:55:38.5074550Z 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-11-03T15:55:38.5075670Z 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-11-03T15:55:38.5076770Z 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-11-03T15:55:38.5077910Z 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-11-03T15:55:38.5079060Z 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-11-03T15:55:38.5080490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-11-03T15:55:38.5081430Z 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-11-03T15:55:38.5082650Z 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-11-03T15:55:38.5083850Z 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-11-03T15:55:38.5084950Z 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-11-03T15:55:38.5085970Z 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-11-03T15:55:38.5087160Z 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-11-03T15:55:38.5088330Z 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-11-03T15:55:38.5089720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-11-03T15:55:38.5090720Z 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-11-03T15:55:38.5091890Z 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-11-03T15:55:38.5093070Z 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-11-03T15:55:38.5094130Z 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-11-03T15:55:38.5095330Z 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-11-03T15:55:38.5096480Z 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-11-03T15:55:38.5097580Z 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-11-03T15:55:38.5098680Z 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-11-03T15:55:38.5099830Z 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-11-03T15:55:38.5100850Z 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-11-03T15:55:38.5101930Z 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-11-03T15:55:38.5103140Z 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-11-03T15:55:38.5112500Z 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-11-03T15:55:38.5113050Z 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-11-03T15:55:38.5113520Z 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-11-03T15:55:38.5113970Z 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-11-03T15:55:38.5114440Z 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-11-03T15:55:38.5114860Z 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-11-03T15:55:38.5115040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-11-03T15:55:38.5115520Z 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-11-03T15:55:38.5115970Z 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-11-03T15:55:38.5116460Z 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-11-03T15:55:38.5117060Z 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-11-03T15:55:38.5118160Z 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-11-03T15:55:38.5119220Z 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-11-03T15:55:38.5120400Z 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-11-03T15:55:38.5121700Z 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-11-03T15:55:38.5123340Z 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-11-03T15:55:38.5125520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-11-03T15:55:38.5126150Z 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-11-03T15:55:38.5127810Z 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-11-03T15:55:38.5129250Z 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-11-03T15:55:38.5130480Z 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-11-03T15:55:38.5131690Z 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-11-03T15:55:38.5133550Z 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-11-03T15:55:38.5134750Z 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-11-03T15:55:38.5136270Z 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-11-03T15:55:38.5137410Z 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-11-03T15:55:38.5138850Z 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-11-03T15:55:38.5139720Z 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-11-03T15:55:38.5141090Z 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-11-03T15:55:38.5142300Z 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-11-03T15:55:38.5143370Z 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-11-03T15:55:38.5144440Z 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-11-03T15:55:38.5145600Z 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-11-03T15:55:38.5146720Z 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-11-03T15:55:38.5147800Z 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-11-03T15:55:38.5148920Z 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-11-03T15:55:38.5150070Z 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-11-03T15:55:38.5151240Z 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-11-03T15:55:38.5152370Z 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-11-03T15:55:38.5153520Z 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-11-03T15:55:38.5154530Z 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-11-03T15:55:38.5155680Z 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-11-03T15:55:38.5156770Z 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-11-03T15:55:38.5157910Z 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-11-03T15:55:38.5159030Z 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-11-03T15:55:38.5160170Z 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-11-03T15:55:38.5161260Z 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-11-03T15:55:38.5162420Z 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-11-03T15:55:38.5163450Z 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-11-03T15:55:38.5164570Z 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-11-03T15:55:38.5165710Z 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-11-03T15:55:38.5166730Z 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-11-03T15:55:38.5167870Z 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-11-03T15:55:38.5168950Z 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-11-03T15:55:38.5170190Z 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-11-03T15:55:38.5171400Z 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-11-03T15:55:38.5172600Z 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-11-03T15:55:38.5173800Z 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-11-03T15:55:38.5175070Z 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-11-03T15:55:38.5176360Z 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-11-03T15:55:38.5177570Z 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-11-03T15:55:38.5178770Z 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-11-03T15:55:38.5180000Z 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-11-03T15:55:38.5181230Z 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-11-03T15:55:38.5182470Z 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-11-03T15:55:38.5183630Z 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-11-03T15:55:38.5184830Z 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-11-03T15:55:38.5186140Z 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-11-03T15:55:38.5187290Z 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-11-03T15:55:38.5188460Z 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-11-03T15:55:38.5189740Z 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-11-03T15:55:38.5191000Z 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-11-03T15:55:38.5192070Z 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-11-03T15:55:38.5193310Z 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-11-03T15:55:38.5194440Z 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-11-03T15:55:38.5195890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen 2025-11-03T15:55:38.5197000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/cuda 2025-11-03T15:55:38.5197990Z 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-11-03T15:55:38.5199360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-11-03T15:55:38.5200290Z 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-11-03T15:55:38.5201450Z 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-11-03T15:55:38.5202550Z 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-11-03T15:55:38.5203680Z 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-11-03T15:55:38.5204770Z 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-11-03T15:55:38.5205900Z 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-11-03T15:55:38.5207030Z 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-11-03T15:55:38.5208140Z 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-11-03T15:55:38.5209320Z 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-11-03T15:55:38.5210580Z 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-11-03T15:55:38.5211600Z 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-11-03T15:55:38.5212990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-11-03T15:55:38.5213890Z 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-11-03T15:55:38.5215060Z 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-11-03T15:55:38.5216140Z 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-11-03T15:55:38.5217220Z 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-11-03T15:55:38.5218490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-11-03T15:55:38.5219430Z 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-11-03T15:55:38.5220620Z 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-11-03T15:55:38.5221780Z 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-11-03T15:55:38.5223060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-11-03T15:55:38.5224260Z 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-11-03T15:55:38.5225520Z 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-11-03T15:55:38.5226640Z 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-11-03T15:55:38.5227800Z 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-11-03T15:55:38.5228870Z 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-11-03T15:55:38.5230130Z 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-11-03T15:55:38.5231180Z 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-11-03T15:55:38.5232390Z 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-11-03T15:55:38.5233550Z 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-11-03T15:55:38.5234680Z 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-11-03T15:55:38.5236280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-11-03T15:55:38.5236990Z 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-11-03T15:55:38.5238180Z 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-11-03T15:55:38.5239340Z 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-11-03T15:55:38.5240430Z 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-11-03T15:55:38.5241900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-11-03T15:55:38.5242900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-11-03T15:55:38.5243870Z 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-11-03T15:55:38.5245130Z 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-11-03T15:55:38.5246240Z 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-11-03T15:55:38.5247570Z 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-11-03T15:55:38.5248780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-11-03T15:55:38.5249720Z 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-11-03T15:55:38.5250890Z 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-11-03T15:55:38.5252190Z 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-11-03T15:55:38.5253300Z 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-11-03T15:55:38.5254390Z 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-11-03T15:55:38.5255750Z 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-11-03T15:55:38.5256920Z 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-11-03T15:55:38.5258000Z 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-11-03T15:55:38.5259100Z 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-11-03T15:55:38.5260170Z 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-11-03T15:55:38.5261390Z 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-11-03T15:55:38.5262600Z 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-11-03T15:55:38.5263710Z 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-11-03T15:55:38.5264820Z 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-11-03T15:55:38.5265960Z 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-11-03T15:55:38.5267370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-11-03T15:55:38.5268300Z 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-11-03T15:55:38.5269450Z 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-11-03T15:55:38.5270540Z 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-11-03T15:55:38.5271690Z 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-11-03T15:55:38.5272860Z 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-11-03T15:55:38.5273920Z 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-11-03T15:55:38.5275070Z 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-11-03T15:55:38.5276220Z 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-11-03T15:55:38.5277340Z 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-11-03T15:55:38.5278610Z 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-11-03T15:55:38.5280010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-11-03T15:55:38.5280950Z 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-11-03T15:55:38.5282090Z 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-11-03T15:55:38.5283410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train/optim 2025-11-03T15:55:38.5284280Z 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-11-03T15:55:38.5285450Z 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-11-03T15:55:38.5286560Z 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-11-03T15:55:38.5287730Z 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-11-03T15:55:38.5288790Z 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-11-03T15:55:38.5289940Z 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-11-03T15:55:38.5291090Z 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-11-03T15:55:38.5292160Z 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-11-03T15:55:38.5293280Z 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-11-03T15:55:38.5294650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-11-03T15:55:38.5295640Z 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-11-03T15:55:38.5296760Z 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-11-03T15:55:38.5297970Z 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-11-03T15:55:38.5299140Z 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-11-03T15:55:38.5300190Z 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-11-03T15:55:38.5301400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-11-03T15:55:38.5302330Z 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-11-03T15:55:38.5303500Z 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-11-03T15:55:38.5304560Z 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-11-03T15:55:38.5305660Z 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-11-03T15:55:38.5306740Z 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-11-03T15:55:38.5308630Z 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-11-03T15:55:38.5309370Z 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-11-03T15:55:38.5310420Z 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-11-03T15:55:38.5311720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy 2025-11-03T15:55:38.5312810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-11-03T15:55:38.5313800Z 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-11-03T15:55:38.5315170Z 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-11-03T15:55:38.5316340Z 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-11-03T15:55:38.5319540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-11-03T15:55:38.5320330Z 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-11-03T15:55:38.5321360Z 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-11-03T15:55:38.5322450Z 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-11-03T15:55:38.5323750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/internal_ops 2025-11-03T15:55:38.5324670Z 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-11-03T15:55:38.5325910Z 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-11-03T15:55:38.5327130Z 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-11-03T15:55:38.5328340Z 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-11-03T15:55:38.5329470Z 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-11-03T15:55:38.5330640Z 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-11-03T15:55:38.5331690Z 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-11-03T15:55:38.5332820Z 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-11-03T15:55:38.5334000Z 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-11-03T15:55:38.5335120Z 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-11-03T15:55:38.5336210Z 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-11-03T15:55:38.5337350Z 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-11-03T15:55:38.5338450Z 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-11-03T15:55:38.5339790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-11-03T15:55:38.5340860Z 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-11-03T15:55:38.5341890Z 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-11-03T15:55:38.5343030Z 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-11-03T15:55:38.5344180Z 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-11-03T15:55:38.5345270Z 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-11-03T15:55:38.5346340Z 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-11-03T15:55:38.5347750Z 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-11-03T15:55:38.5348570Z 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-11-03T15:55:38.5349690Z 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-11-03T15:55:38.5350820Z 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-11-03T15:55:38.5351950Z 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-11-03T15:55:38.5353280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/python 2025-11-03T15:55:38.5354230Z 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-11-03T15:55:38.5355320Z 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-11-03T15:55:38.5356810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-11-03T15:55:38.5357620Z 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-11-03T15:55:38.5358830Z 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-11-03T15:55:38.5359900Z 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-11-03T15:55:38.5361000Z 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-11-03T15:55:38.5362130Z 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-11-03T15:55:38.5363300Z 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-11-03T15:55:38.5364520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-11-03T15:55:38.5365440Z 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-11-03T15:55:38.5366610Z 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-11-03T15:55:38.5368300Z 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-11-03T15:55:38.5368820Z 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-11-03T15:55:38.5369930Z 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-11-03T15:55:38.5371100Z 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-11-03T15:55:38.5372230Z 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-11-03T15:55:38.5373530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-11-03T15:55:38.5374440Z 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-11-03T15:55:38.5375530Z 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-11-03T15:55:38.5376700Z 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-11-03T15:55:38.5377870Z 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-11-03T15:55:38.5379020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia 2025-11-03T15:55:38.5380130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia/profiler 2025-11-03T15:55:38.5381050Z 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-11-03T15:55:38.5382270Z 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-11-03T15:55:38.5383430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api 2025-11-03T15:55:38.5384390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include 2025-11-03T15:55:38.5385530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-11-03T15:55:38.5386420Z 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-11-03T15:55:38.5387610Z 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-11-03T15:55:38.5388910Z 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-11-03T15:55:38.5389750Z 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-11-03T15:55:38.5391130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-11-03T15:55:38.5392220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-11-03T15:55:38.5393240Z 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-11-03T15:55:38.5394300Z 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-11-03T15:55:38.5395460Z 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-11-03T15:55:38.5396570Z 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-11-03T15:55:38.5397770Z 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-11-03T15:55:38.5398920Z 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-11-03T15:55:38.5400030Z 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-11-03T15:55:38.5401270Z 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-11-03T15:55:38.5402350Z 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-11-03T15:55:38.5403520Z 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-11-03T15:55:38.5404660Z 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-11-03T15:55:38.5405740Z 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-11-03T15:55:38.5406880Z 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-11-03T15:55:38.5408260Z 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-11-03T15:55:38.5409390Z 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-11-03T15:55:38.5410960Z 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-11-03T15:55:38.5412000Z 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-11-03T15:55:38.5413130Z 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-11-03T15:55:38.5414320Z 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-11-03T15:55:38.5415450Z 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-11-03T15:55:38.5416480Z 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-11-03T15:55:38.5417770Z 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-11-03T15:55:38.5419230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-11-03T15:55:38.5420370Z 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-11-03T15:55:38.5421500Z 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-11-03T15:55:38.5422770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-11-03T15:55:38.5423850Z 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-11-03T15:55:38.5424870Z 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-11-03T15:55:38.5426060Z 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-11-03T15:55:38.5427120Z 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-11-03T15:55:38.5428280Z 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-11-03T15:55:38.5429360Z 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-11-03T15:55:38.5430530Z 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-11-03T15:55:38.5431650Z 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-11-03T15:55:38.5433310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-11-03T15:55:38.5434170Z 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-11-03T15:55:38.5435370Z 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-11-03T15:55:38.5436530Z 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-11-03T15:55:38.5437710Z 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-11-03T15:55:38.5438880Z 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-11-03T15:55:38.5439940Z 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-11-03T15:55:38.5441110Z 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-11-03T15:55:38.5442280Z 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-11-03T15:55:38.5443390Z 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-11-03T15:55:38.5444760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-11-03T15:55:38.5446010Z 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-11-03T15:55:38.5447490Z 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-11-03T15:55:38.5448650Z 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-11-03T15:55:38.5449940Z 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-11-03T15:55:38.5451050Z 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-11-03T15:55:38.5452280Z 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-11-03T15:55:38.5453470Z 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-11-03T15:55:38.5454620Z 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-11-03T15:55:38.5455740Z 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-11-03T15:55:38.5456910Z 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-11-03T15:55:38.5457970Z 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-11-03T15:55:38.5459180Z 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-11-03T15:55:38.5460320Z 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-11-03T15:55:38.5461380Z 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-11-03T15:55:38.5462500Z 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-11-03T15:55:38.5463650Z 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-11-03T15:55:38.5465060Z 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-11-03T15:55:38.5466190Z 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-11-03T15:55:38.5467750Z 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-11-03T15:55:38.5468850Z 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-11-03T15:55:38.5470050Z 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-11-03T15:55:38.5471160Z 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-11-03T15:55:38.5472280Z 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-11-03T15:55:38.5473360Z 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-11-03T15:55:38.5474660Z 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-11-03T15:55:38.5475840Z 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-11-03T15:55:38.5477300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-11-03T15:55:38.5478310Z 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-11-03T15:55:38.5479420Z 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-11-03T15:55:38.5480850Z 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-11-03T15:55:38.5481670Z 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-11-03T15:55:38.5482870Z 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-11-03T15:55:38.5483920Z 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-11-03T15:55:38.5485050Z 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-11-03T15:55:38.5486220Z 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-11-03T15:55:38.5487330Z 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-11-03T15:55:38.5488410Z 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-11-03T15:55:38.5489570Z 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-11-03T15:55:38.5490920Z 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-11-03T15:55:38.5492260Z 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-11-03T15:55:38.5493410Z 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-11-03T15:55:38.5494510Z 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-11-03T15:55:38.5495600Z 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-11-03T15:55:38.5497300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/python 2025-11-03T15:55:38.5498130Z 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-11-03T15:55:38.5499190Z 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-11-03T15:55:38.5500310Z 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-11-03T15:55:38.5501420Z 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-11-03T15:55:38.5502550Z 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-11-03T15:55:38.5503670Z 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-11-03T15:55:38.5504770Z 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-11-03T15:55:38.5506090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-11-03T15:55:38.5507080Z 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-11-03T15:55:38.5508240Z 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-11-03T15:55:38.5509360Z 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-11-03T15:55:38.5510550Z 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-11-03T15:55:38.5511850Z 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-11-03T15:55:38.5512770Z 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-11-03T15:55:38.5513870Z 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-11-03T15:55:38.5515210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-11-03T15:55:38.5516240Z 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-11-03T15:55:38.5517390Z 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-11-03T15:55:38.5518490Z 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-11-03T15:55:38.5519630Z 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-11-03T15:55:38.5520900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-11-03T15:55:38.5521830Z 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-11-03T15:55:38.5522990Z 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-11-03T15:55:38.5524130Z 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-11-03T15:55:38.5525290Z 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-11-03T15:55:38.5526340Z 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-11-03T15:55:38.5527650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nativert 2025-11-03T15:55:38.5528710Z 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-11-03T15:55:38.5529700Z 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-11-03T15:55:38.5530820Z 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-11-03T15:55:38.5532200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-11-03T15:55:38.5533040Z 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-11-03T15:55:38.5534180Z 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-11-03T15:55:38.5535250Z 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-11-03T15:55:38.5536430Z 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-11-03T15:55:38.5537620Z 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-11-03T15:55:38.5538900Z 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-11-03T15:55:38.5540920Z 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-11-03T15:55:38.5541940Z 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-11-03T15:55:38.5543040Z 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-11-03T15:55:38.5544330Z 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-11-03T15:55:38.5545920Z 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-11-03T15:55:38.5546910Z 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-11-03T15:55:38.5548500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-11-03T15:55:38.5549680Z 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-11-03T15:55:38.5551120Z 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-11-03T15:55:38.5552570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-11-03T15:55:38.5553720Z 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-11-03T15:55:38.5554900Z 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-11-03T15:55:38.5556220Z 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-11-03T15:55:38.5557460Z 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-11-03T15:55:38.5559210Z 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-11-03T15:55:38.5560530Z 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-11-03T15:55:38.5561790Z 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-11-03T15:55:38.5563100Z 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-11-03T15:55:38.5564260Z 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-11-03T15:55:38.5565630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-11-03T15:55:38.5566680Z 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-11-03T15:55:38.5567890Z 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-11-03T15:55:38.5569020Z 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-11-03T15:55:38.5570610Z 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-11-03T15:55:38.5571420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-11-03T15:55:38.5573040Z 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-11-03T15:55:38.5574190Z 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-11-03T15:55:38.5575340Z 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-11-03T15:55:38.5576530Z 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-11-03T15:55:38.5577680Z 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-11-03T15:55:38.5578550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-11-03T15:55:38.5579380Z 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-11-03T15:55:38.5580540Z 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-11-03T15:55:38.5581720Z 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-11-03T15:55:38.5582850Z 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-11-03T15:55:38.5584030Z 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-11-03T15:55:38.5585170Z 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-11-03T15:55:38.5586330Z 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-11-03T15:55:38.5587590Z 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-11-03T15:55:38.5588680Z 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-11-03T15:55:38.5589880Z 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-11-03T15:55:38.5591180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-11-03T15:55:38.5592180Z 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-11-03T15:55:38.5593360Z 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-11-03T15:55:38.5594510Z 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-11-03T15:55:38.5595580Z 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-11-03T15:55:38.5596820Z 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-11-03T15:55:38.5597940Z 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-11-03T15:55:38.5599280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-11-03T15:55:38.5600310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/stubs 2025-11-03T15:55:38.5601220Z 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-11-03T15:55:38.5602380Z 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-11-03T15:55:38.5603680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-11-03T15:55:38.5604620Z 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-11-03T15:55:38.5605720Z 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-11-03T15:55:38.5606840Z 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-11-03T15:55:38.5608030Z 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-11-03T15:55:38.5609200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-11-03T15:55:38.5610080Z 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-11-03T15:55:38.5611300Z 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-11-03T15:55:38.5617050Z 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-11-03T15:55:38.5617930Z 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-11-03T15:55:38.5618790Z 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-11-03T15:55:38.5619630Z 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-11-03T15:55:38.5620500Z 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-11-03T15:55:38.5621380Z 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-11-03T15:55:38.5622020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-11-03T15:55:38.5622770Z 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-11-03T15:55:38.5623830Z 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-11-03T15:55:38.5624870Z 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-11-03T15:55:38.5625630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-11-03T15:55:38.5626310Z 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-11-03T15:55:38.5627250Z 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-11-03T15:55:38.5628190Z 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-11-03T15:55:38.5629130Z 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-11-03T15:55:38.5630080Z 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-11-03T15:55:38.5631020Z 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-11-03T15:55:38.5631960Z 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-11-03T15:55:38.5632930Z 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-11-03T15:55:38.5633880Z 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-11-03T15:55:38.5634830Z 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-11-03T15:55:38.5636040Z 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-11-03T15:55:38.5636990Z 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-11-03T15:55:38.5638110Z 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-11-03T15:55:38.5639260Z 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-11-03T15:55:38.5640440Z 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-11-03T15:55:38.5641530Z 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-11-03T15:55:38.5642710Z 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-11-03T15:55:38.5643800Z 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-11-03T15:55:38.5645090Z 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-11-03T15:55:38.5646240Z 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-11-03T15:55:38.5647310Z 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-11-03T15:55:38.5648620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/tensor 2025-11-03T15:55:38.5649620Z 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-11-03T15:55:38.5650720Z 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-11-03T15:55:38.5651820Z 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-11-03T15:55:38.5653090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-11-03T15:55:38.5654350Z 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-11-03T15:55:38.5655630Z 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-11-03T15:55:38.5656830Z 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-11-03T15:55:38.5657980Z 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-11-03T15:55:38.5659110Z 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-11-03T15:55:38.5660590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/functionalization 2025-11-03T15:55:38.5661630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functionalization/Module.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/torch/csrc/functionalization 2025-11-03T15:55:38.5662680Z 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-11-03T15:55:38.5663850Z 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-11-03T15:55:38.5665110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/functorch 2025-11-03T15:55:38.5666020Z 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-11-03T15:55:38.5667120Z 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-11-03T15:55:38.5668280Z 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-11-03T15:55:38.5669440Z 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-11-03T15:55:38.5670760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/acc 2025-11-03T15:55:38.5671590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/acc/Module.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/torch/csrc/acc 2025-11-03T15:55:38.5673090Z 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-11-03T15:55:38.5674200Z 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-11-03T15:55:38.5675650Z 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-11-03T15:55:38.5676780Z 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-11-03T15:55:38.5678070Z 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-11-03T15:55:38.5679410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/nnpack.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include 2025-11-03T15:55:38.5681140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-11-03T15:55:38.5682010Z 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-11-03T15:55:38.5683200Z 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-11-03T15:55:38.5684520Z 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-11-03T15:55:38.5685310Z 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-11-03T15:55:38.5686410Z 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-11-03T15:55:38.5687550Z 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-11-03T15:55:38.5688630Z 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-11-03T15:55:38.5689760Z 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-11-03T15:55:38.5690880Z 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-11-03T15:55:38.5691940Z 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-11-03T15:55:38.5693000Z 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-11-03T15:55:38.5694110Z 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-11-03T15:55:38.5695200Z 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-11-03T15:55:38.5696360Z 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-11-03T15:55:38.5697430Z 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-11-03T15:55:38.5698530Z 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-11-03T15:55:38.5699570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/xnnpack.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include 2025-11-03T15:55:38.5702090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/libshm.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include 2025-11-03T15:55:38.5702870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include 2025-11-03T15:55:38.5703970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/qnnpack_func.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include 2025-11-03T15:55:38.5705510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai 2025-11-03T15:55:38.5706180Z 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-11-03T15:55:38.5707590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels 2025-11-03T15:55:38.5708560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/dwconv 2025-11-03T15:55:38.5709610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/dwconv/pack 2025-11-03T15:55:38.5710570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/dwconv/pack/kai_rhs_dwconv_pack_x32p1vlx1b_x32_x32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/dwconv/pack 2025-11-03T15:55:38.5712050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/dwconv/dwconv_f32_f32_f32p 2025-11-03T15:55:38.5712970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/dwconv/dwconv_f32_f32_f32p/kai_dwconv_clamp_f32_f32_f32p1vlx1b_3x3_s1_4xc_sme2_mla.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/dwconv/dwconv_f32_f32_f32p 2025-11-03T15:55:38.5714710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/dwconv/dwconv_f32_f32_f32p/kai_dwconv_clamp_f32_f32_f32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/dwconv/dwconv_f32_f32_f32p 2025-11-03T15:55:38.5715740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul 2025-11-03T15:55:38.5716920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-11-03T15:55:38.5718010Z 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-11-03T15:55:38.5719450Z 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-11-03T15:55:38.5720880Z 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-11-03T15:55:38.5722420Z 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-11-03T15:55:38.5723880Z 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-11-03T15:55:38.5725360Z 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-11-03T15:55:38.5726790Z 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-11-03T15:55:38.5728190Z 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-11-03T15:55:38.5729600Z 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-11-03T15:55:38.5731030Z 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-11-03T15:55:38.5732480Z 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-11-03T15:55:38.5733940Z 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-11-03T15:55:38.5734940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p 2025-11-03T15:55:38.5735980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p/kai_matmul_clamp_bf16_qai8dxp4x8_qsi4c32p4x8_16x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p 2025-11-03T15:55:38.5737430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p/kai_matmul_clamp_bf16_qai8dxp_qsi4c32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p 2025-11-03T15:55:38.5738860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p/kai_matmul_clamp_bf16_qai8dxp1x8_qsi4c32p4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p 2025-11-03T15:55:38.5739880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-11-03T15:55:38.5740880Z 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-11-03T15:55:38.5742300Z 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-11-03T15:55:38.5743790Z 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-11-03T15:55:38.5745220Z 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-11-03T15:55:38.5746650Z 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-11-03T15:55:38.5747630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-11-03T15:55:38.5748560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p32x1b_6x32_neon_mla_cortexa55.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-11-03T15:55:38.5749860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p32x1b_6x32_neon_mla.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-11-03T15:55:38.5751140Z 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_1x8vl_sme_mla.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-11-03T15:55:38.5752440Z 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-11-03T15:55:38.5753850Z 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-11-03T15:55:38.5755170Z 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-11-03T15:55:38.5756110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-11-03T15:55:38.5757000Z 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-11-03T15:55:38.5758270Z 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_1x8vl_sme_mla.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-11-03T15:55:38.5759570Z 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-11-03T15:55:38.5760860Z 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-11-03T15:55:38.5762180Z 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-11-03T15:55:38.5763520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16x1b_6x16_neon_mla_cortexa55.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-11-03T15:55:38.5764810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16x1b_6x16_neon_mla.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-11-03T15:55:38.5765740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-11-03T15:55:38.5766770Z 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-11-03T15:55:38.5768220Z 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-11-03T15:55:38.5769630Z 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-11-03T15:55:38.5771100Z 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-11-03T15:55:38.5772600Z 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-11-03T15:55:38.5774050Z 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-11-03T15:55:38.5775510Z 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-11-03T15:55:38.5776960Z 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-11-03T15:55:38.5777970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-11-03T15:55:38.5778980Z 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-11-03T15:55:38.5780450Z 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-11-03T15:55:38.5781920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x4_qai4c32p4vlx4_1x4vl_sme2_dot.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-11-03T15:55:38.5783330Z 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-11-03T15:55:38.5784750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x4_qai4c32p4x4_8x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-11-03T15:55:38.5786210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x4_qai4c32p4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-11-03T15:55:38.5787660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1vlx4_qai4c32p4vlx4_1vlx4vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-11-03T15:55:38.5788610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:38.5789380Z 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-11-03T15:55:38.5790430Z 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-11-03T15:55:38.5791520Z 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-11-03T15:55:38.5792550Z 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-11-03T15:55:38.5793580Z 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-11-03T15:55:38.5794610Z 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-11-03T15:55:38.5795650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p4x8sb_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:38.5796690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x32p16x1b_x32_x32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:38.5797730Z 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-11-03T15:55:38.5798790Z 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-11-03T15:55:38.5799780Z 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-11-03T15:55:38.5800880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32ps1s0nrx4_qau4c32s1s0_f32_f32_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:38.5801980Z 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-11-03T15:55:38.5803010Z 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-11-03T15:55:38.5804040Z 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-11-03T15:55:38.5805100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pnrx4_qsu4c32s1s0_neon.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:38.5806180Z 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-11-03T15:55:38.5807250Z 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-11-03T15:55:38.5808300Z 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-11-03T15:55:38.5809410Z 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-11-03T15:55:38.5810460Z 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-11-03T15:55:38.5811490Z 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-11-03T15:55:38.5812500Z 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-11-03T15:55:38.5813510Z 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-11-03T15:55:38.5814550Z 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-11-03T15:55:38.5815660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32ps1s0nrx4_qau4c32s0s1_f32_f32_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:38.5816770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_bf16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:38.5817790Z 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-11-03T15:55:38.5818820Z 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-11-03T15:55:38.5819860Z 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-11-03T15:55:38.5820940Z 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-11-03T15:55:38.5822000Z 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-11-03T15:55:38.5823060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pnrx8_qsu4c32s1s0_neon.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:38.5824130Z 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-11-03T15:55:38.5825260Z 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-11-03T15:55:38.5826330Z 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-11-03T15:55:38.5827380Z 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-11-03T15:55:38.5828460Z 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-11-03T15:55:38.5829510Z 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-11-03T15:55:38.5830510Z 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-11-03T15:55:38.5831580Z 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-11-03T15:55:38.5832660Z 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-11-03T15:55:38.5833710Z 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-11-03T15:55:38.5834810Z 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-11-03T15:55:38.5835870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p32x1b_x16_x16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/pack 2025-11-03T15:55:38.5836910Z 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-11-03T15:55:38.5838080Z 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-11-03T15:55:38.5839120Z 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-11-03T15:55:38.5840180Z 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-11-03T15:55:38.5841530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-11-03T15:55:38.5842710Z 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-11-03T15:55:38.5844210Z 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-11-03T15:55:38.5845680Z 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-11-03T15:55:38.5847130Z 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-11-03T15:55:38.5848570Z 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-11-03T15:55:38.5850000Z 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-11-03T15:55:38.5851430Z 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-11-03T15:55:38.5852870Z 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-11-03T15:55:38.5854360Z 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-11-03T15:55:38.5855840Z 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-11-03T15:55:38.5857270Z 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-11-03T15:55:38.5858710Z 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-11-03T15:55:38.5859720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-11-03T15:55:38.5860670Z 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-11-03T15:55:38.5862060Z 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-11-03T15:55:38.5863080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-11-03T15:55:38.5864230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxp2vlx4sb_2vlx2vl_sme_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-11-03T15:55:38.5865720Z 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-11-03T15:55:38.5867140Z 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-11-03T15:55:38.5868110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-11-03T15:55:38.5869110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4vlx4_1x4vl_sme_dot.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-11-03T15:55:38.5870550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1vlx4_qsi8cxp4vlx4_1vlx4vl_sme_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-11-03T15:55:38.5872000Z 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-11-03T15:55:38.5873420Z 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-11-03T15:55:38.5874880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4vlx4_1x4vl_sme2_dot.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-11-03T15:55:38.5876300Z 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-11-03T15:55:38.5877730Z 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-11-03T15:55:38.5879160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1vlx4_qsi8cxp4vlx4_1vlx4vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-11-03T15:55:38.5880560Z 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-11-03T15:55:38.5881560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-11-03T15:55:38.5882560Z 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-11-03T15:55:38.5884000Z 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-11-03T15:55:38.5885390Z 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-11-03T15:55:38.5886790Z 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-11-03T15:55:38.5888210Z 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-11-03T15:55:38.5889260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-11-03T15:55:38.5890220Z 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-11-03T15:55:38.5891580Z 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-11-03T15:55:38.5892930Z 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-11-03T15:55:38.5893890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-11-03T15:55:38.5894920Z 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-11-03T15:55:38.5896360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qai4c32p4vlx4_1x4vl_sme2_dot.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-11-03T15:55:38.5897810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qai4c32p4x4_8x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-11-03T15:55:38.5899250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qai4c32p4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-11-03T15:55:38.5900710Z 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-11-03T15:55:38.5902170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qai4c32p4vlx4_1vlx4vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-11-03T15:55:38.5903620Z 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-11-03T15:55:38.5904620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-11-03T15:55:38.5905590Z 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-11-03T15:55:38.5906950Z 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-11-03T15:55:38.5907890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp 2025-11-03T15:55:38.5908920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp/kai_matmul_clamp_bf16_qai8dxp1x8_qsi4cxp8x8_1x8_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp 2025-11-03T15:55:38.5910360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp/kai_matmul_clamp_bf16_qai8dxp4x8_qsi4cxp8x8_8x8_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp 2025-11-03T15:55:38.5911790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp/kai_matmul_clamp_bf16_qai8dxp_qsi4cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp 2025-11-03T15:55:38.5912750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-11-03T15:55:38.5913650Z 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-11-03T15:55:38.5914970Z 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-11-03T15:55:38.5916310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-11-03T15:55:38.5917250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-11-03T15:55:38.5918190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2b_2vlx2vl_sme_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-11-03T15:55:38.5919560Z 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-11-03T15:55:38.5920890Z 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-11-03T15:55:38.5921800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-11-03T15:55:38.5922770Z 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-11-03T15:55:38.5924170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxp2vlx4sb_2vlx2vl_sme_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-11-03T15:55:38.5925620Z 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-11-03T15:55:38.5926610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-11-03T15:55:38.5927570Z 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-11-03T15:55:38.5928890Z 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-11-03T15:55:38.5930290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2b_2vlx2vl_sme_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-11-03T15:55:38.5931250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-11-03T15:55:38.5932190Z 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-11-03T15:55:38.5933510Z 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-11-03T15:55:38.5934450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-11-03T15:55:38.5935400Z 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_sme_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-11-03T15:55:38.5936780Z 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-11-03T15:55:38.5938130Z 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-11-03T15:55:38.5939140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pthreadpool.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include 2025-11-03T15:55:38.5939760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/clog.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include 2025-11-03T15:55:38.5940350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/omp.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include 2025-11-03T15:55:38.5945700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-11-03T15:55:38.5946250Z 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-11-03T15:55:38.5946990Z 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-11-03T15:55:38.5947720Z 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-11-03T15:55:38.5948450Z 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-11-03T15:55:38.5949210Z 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-11-03T15:55:38.5949960Z 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-11-03T15:55:38.5950840Z 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-11-03T15:55:38.5951690Z 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-11-03T15:55:38.5952410Z 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-11-03T15:55:38.5953110Z 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-11-03T15:55:38.5953840Z 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-11-03T15:55:38.5954560Z 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-11-03T15:55:38.5955270Z 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-11-03T15:55:38.5956020Z 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-11-03T15:55:38.5956780Z 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-11-03T15:55:38.5957530Z 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-11-03T15:55:38.5958400Z 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-11-03T15:55:38.5959480Z 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-11-03T15:55:38.5960580Z 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-11-03T15:55:38.5961680Z 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-11-03T15:55:38.5963500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-11-03T15:55:38.5964730Z 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-11-03T15:55:38.5966160Z 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-11-03T15:55:38.5967280Z 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-11-03T15:55:38.5970440Z 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-11-03T15:55:38.5971490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-11-03T15:55:38.5972450Z 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-11-03T15:55:38.5973600Z 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-11-03T15:55:38.5974780Z 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-11-03T15:55:38.5976180Z 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-11-03T15:55:38.5977210Z 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-11-03T15:55:38.5978530Z 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-11-03T15:55:38.5979650Z 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-11-03T15:55:38.5980760Z 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-11-03T15:55:38.5981900Z 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-11-03T15:55:38.5982960Z 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-11-03T15:55:38.5984140Z 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-11-03T15:55:38.5985190Z 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-11-03T15:55:38.5986400Z 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-11-03T15:55:38.5987550Z 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-11-03T15:55:38.5988590Z 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-11-03T15:55:38.5989770Z 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-11-03T15:55:38.5991060Z 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-11-03T15:55:38.5992510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-11-03T15:55:38.5993410Z 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-11-03T15:55:38.5994580Z 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-11-03T15:55:38.5995670Z 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-11-03T15:55:38.5996800Z 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-11-03T15:55:38.5997910Z 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-11-03T15:55:38.5999280Z 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-11-03T15:55:38.6000380Z 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-11-03T15:55:38.6001480Z 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-11-03T15:55:38.6002540Z 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-11-03T15:55:38.6004010Z 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-11-03T15:55:38.6005110Z 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-11-03T15:55:38.6006220Z 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-11-03T15:55:38.6007400Z 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-11-03T15:55:38.6008550Z 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-11-03T15:55:38.6009640Z 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-11-03T15:55:38.6010740Z 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-11-03T15:55:38.6011820Z 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-11-03T15:55:38.6012890Z 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-11-03T15:55:38.6014010Z 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-11-03T15:55:38.6015190Z 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-11-03T15:55:38.6016700Z 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-11-03T15:55:38.6017840Z 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-11-03T15:55:38.6018890Z 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-11-03T15:55:38.6019910Z 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-11-03T15:55:38.6021020Z 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-11-03T15:55:38.6022090Z 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-11-03T15:55:38.6023230Z 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-11-03T15:55:38.6024340Z 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-11-03T15:55:38.6025440Z 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-11-03T15:55:38.6026620Z 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-11-03T15:55:38.6027640Z 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-11-03T15:55:38.6028720Z 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-11-03T15:55:38.6029740Z 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-11-03T15:55:38.6030780Z 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-11-03T15:55:38.6031900Z 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-11-03T15:55:38.6033010Z 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-11-03T15:55:38.6034090Z 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-11-03T15:55:38.6035150Z 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-11-03T15:55:38.6036390Z 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-11-03T15:55:38.6037550Z 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-11-03T15:55:38.6038580Z 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-11-03T15:55:38.6039830Z 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-11-03T15:55:38.6040960Z 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-11-03T15:55:38.6042080Z 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-11-03T15:55:38.6043150Z 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-11-03T15:55:38.6044210Z 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-11-03T15:55:38.6045390Z 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-11-03T15:55:38.6046520Z 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-11-03T15:55:38.6047640Z 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-11-03T15:55:38.6049110Z 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-11-03T15:55:38.6050180Z 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-11-03T15:55:38.6067030Z 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-11-03T15:55:38.6068210Z 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-11-03T15:55:38.6069330Z 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-11-03T15:55:38.6070950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-11-03T15:55:38.6072070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-11-03T15:55:38.6073210Z 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-11-03T15:55:38.6075410Z 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-11-03T15:55:38.6076820Z 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-11-03T15:55:38.6078590Z 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-11-03T15:55:38.6079620Z 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-11-03T15:55:38.6080760Z 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-11-03T15:55:38.6081920Z 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-11-03T15:55:38.6083110Z 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-11-03T15:55:38.6084420Z 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-11-03T15:55:38.6085650Z 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-11-03T15:55:38.6086730Z 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-11-03T15:55:38.6087920Z 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-11-03T15:55:38.6089000Z 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-11-03T15:55:38.6090100Z 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-11-03T15:55:38.6091220Z 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-11-03T15:55:38.6092280Z 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-11-03T15:55:38.6093440Z 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-11-03T15:55:38.6094590Z 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-11-03T15:55:38.6095660Z 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-11-03T15:55:38.6097320Z 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-11-03T15:55:38.6098580Z 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-11-03T15:55:38.6099670Z 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-11-03T15:55:38.6100830Z 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-11-03T15:55:38.6102480Z 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-11-03T15:55:38.6103900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-11-03T15:55:38.6104850Z 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-11-03T15:55:38.6106120Z 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-11-03T15:55:38.6107230Z 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-11-03T15:55:38.6108470Z 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-11-03T15:55:38.6109580Z 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-11-03T15:55:38.6110700Z 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-11-03T15:55:38.6111770Z 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-11-03T15:55:38.6112870Z 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-11-03T15:55:38.6113960Z 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-11-03T15:55:38.6115120Z 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-11-03T15:55:38.6116230Z 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-11-03T15:55:38.6118230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-11-03T15:55:38.6119130Z 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-11-03T15:55:38.6120180Z 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-11-03T15:55:38.6121270Z 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-11-03T15:55:38.6122390Z 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-11-03T15:55:38.6123530Z 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-11-03T15:55:38.6125000Z 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-11-03T15:55:38.6125920Z 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-11-03T15:55:38.6126980Z 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-11-03T15:55:38.6128370Z 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-11-03T15:55:38.6129470Z 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-11-03T15:55:38.6130590Z 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-11-03T15:55:38.6131670Z 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-11-03T15:55:38.6132730Z 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-11-03T15:55:38.6133850Z 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-11-03T15:55:38.6134930Z 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-11-03T15:55:38.6136250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse 2025-11-03T15:55:38.6137620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized 2025-11-03T15:55:38.6138360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-11-03T15:55:38.6139330Z 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-11-03T15:55:38.6140620Z 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-11-03T15:55:38.6141760Z 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-11-03T15:55:38.6142750Z 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-11-03T15:55:38.6143830Z 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-11-03T15:55:38.6144950Z 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-11-03T15:55:38.6146100Z 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-11-03T15:55:38.6147120Z 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-11-03T15:55:38.6148230Z 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-11-03T15:55:38.6149340Z 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-11-03T15:55:38.6150480Z 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-11-03T15:55:38.6151670Z 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-11-03T15:55:38.6152730Z 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-11-03T15:55:38.6153810Z 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-11-03T15:55:38.6154930Z 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-11-03T15:55:38.6156080Z 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-11-03T15:55:38.6157410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-11-03T15:55:38.6158310Z 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-11-03T15:55:38.6159670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/kernels 2025-11-03T15:55:38.6160600Z 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-11-03T15:55:38.6161720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels/LinearAlgebra.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/native/mps/kernels 2025-11-03T15:55:38.6163100Z 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-11-03T15:55:38.6163890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels/Shape.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/native/mps/kernels 2025-11-03T15:55:38.6165080Z 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-11-03T15:55:38.6166100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels/EmbeddingBag.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/native/mps/kernels 2025-11-03T15:55:38.6167420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-11-03T15:55:38.6168420Z 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-11-03T15:55:38.6169600Z 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-11-03T15:55:38.6170720Z 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-11-03T15:55:38.6171820Z 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-11-03T15:55:38.6173040Z 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-11-03T15:55:38.6174100Z 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-11-03T15:55:38.6175190Z 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-11-03T15:55:38.6176350Z 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-11-03T15:55:38.6177480Z 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-11-03T15:55:38.6178750Z 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-11-03T15:55:38.6179870Z 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-11-03T15:55:38.6181180Z 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-11-03T15:55:38.6182280Z 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-11-03T15:55:38.6187970Z 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-11-03T15:55:38.6188570Z 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-11-03T15:55:38.6190030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-11-03T15:55:38.6191030Z 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-11-03T15:55:38.6192180Z 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-11-03T15:55:38.6193340Z 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-11-03T15:55:38.6194390Z 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-11-03T15:55:38.6195570Z 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-11-03T15:55:38.6196690Z 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-11-03T15:55:38.6197890Z 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-11-03T15:55:38.6199650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-11-03T15:55:38.6200420Z 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-11-03T15:55:38.6201740Z 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-11-03T15:55:38.6202790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn/tests 2025-11-03T15:55:38.6203810Z 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-11-03T15:55:38.6204950Z 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-11-03T15:55:38.6206070Z 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-11-03T15:55:38.6207160Z 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-11-03T15:55:38.6208280Z 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-11-03T15:55:38.6209340Z 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-11-03T15:55:38.6210470Z 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-11-03T15:55:38.6211590Z 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-11-03T15:55:38.6212710Z 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-11-03T15:55:38.6213980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/ops 2025-11-03T15:55:38.6214930Z 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-11-03T15:55:38.6216110Z 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-11-03T15:55:38.6217210Z 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-11-03T15:55:38.6218280Z 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-11-03T15:55:38.6219340Z 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-11-03T15:55:38.6220760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-11-03T15:55:38.6221790Z 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-11-03T15:55:38.6222790Z 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-11-03T15:55:38.6224110Z 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-11-03T15:55:38.6225230Z 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-11-03T15:55:38.6226410Z 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-11-03T15:55:38.6227480Z 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-11-03T15:55:38.6228540Z 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-11-03T15:55:38.6229720Z 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-11-03T15:55:38.6230820Z 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-11-03T15:55:38.6232020Z 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-11-03T15:55:38.6233130Z 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-11-03T15:55:38.6234200Z 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-11-03T15:55:38.6235310Z 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-11-03T15:55:38.6236390Z 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-11-03T15:55:38.6237510Z 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-11-03T15:55:38.6238560Z 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-11-03T15:55:38.6239710Z 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-11-03T15:55:38.6240810Z 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-11-03T15:55:38.6241910Z 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-11-03T15:55:38.6243010Z 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-11-03T15:55:38.6244100Z 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-11-03T15:55:38.6245220Z 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-11-03T15:55:38.6246290Z 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-11-03T15:55:38.6247470Z 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-11-03T15:55:38.6248580Z 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-11-03T15:55:38.6249690Z 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-11-03T15:55:38.6250900Z 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-11-03T15:55:38.6252150Z 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-11-03T15:55:38.6253290Z 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-11-03T15:55:38.6254690Z 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-11-03T15:55:38.6255720Z 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-11-03T15:55:38.6257010Z 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-11-03T15:55:38.6258130Z 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-11-03T15:55:38.6259260Z 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-11-03T15:55:38.6260390Z 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-11-03T15:55:38.6261430Z 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-11-03T15:55:38.6262670Z 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-11-03T15:55:38.6263760Z 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-11-03T15:55:38.6264860Z 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-11-03T15:55:38.6266010Z 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-11-03T15:55:38.6267040Z 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-11-03T15:55:38.6268780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-11-03T15:55:38.6269660Z 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-11-03T15:55:38.6270720Z 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-11-03T15:55:38.6272310Z 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-11-03T15:55:38.6273280Z 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-11-03T15:55:38.6274410Z 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-11-03T15:55:38.6275530Z 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-11-03T15:55:38.6276730Z 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-11-03T15:55:38.6277780Z 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-11-03T15:55:38.6279100Z 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-11-03T15:55:38.6280380Z 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-11-03T15:55:38.6281420Z 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-11-03T15:55:38.6282540Z 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-11-03T15:55:38.6283670Z 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-11-03T15:55:38.6284810Z 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-11-03T15:55:38.6285880Z 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-11-03T15:55:38.6286960Z 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-11-03T15:55:38.6288090Z 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-11-03T15:55:38.6289200Z 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-11-03T15:55:38.6290350Z 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-11-03T15:55:38.6291600Z 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-11-03T15:55:38.6292420Z 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-11-03T15:55:38.6293510Z 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-11-03T15:55:38.6294660Z 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-11-03T15:55:38.6295730Z 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-11-03T15:55:38.6296820Z 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-11-03T15:55:38.6298000Z 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-11-03T15:55:38.6299170Z 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-11-03T15:55:38.6300220Z 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-11-03T15:55:38.6302500Z 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-11-03T15:55:38.6303330Z 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-11-03T15:55:38.6304530Z 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-11-03T15:55:38.6305770Z 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-11-03T15:55:38.6306910Z 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-11-03T15:55:38.6308330Z 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-11-03T15:55:38.6309510Z 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-11-03T15:55:38.6310740Z 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-11-03T15:55:38.6312030Z 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-11-03T15:55:38.6313240Z 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-11-03T15:55:38.6314460Z 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-11-03T15:55:38.6315710Z 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-11-03T15:55:38.6316880Z 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-11-03T15:55:38.6318200Z 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-11-03T15:55:38.6319380Z 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-11-03T15:55:38.6320500Z 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-11-03T15:55:38.6321610Z 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-11-03T15:55:38.6322780Z 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-11-03T15:55:38.6323910Z 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-11-03T15:55:38.6324970Z 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-11-03T15:55:38.6326160Z 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-11-03T15:55:38.6327250Z 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-11-03T15:55:38.6328380Z 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-11-03T15:55:38.6329450Z 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-11-03T15:55:38.6330570Z 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-11-03T15:55:38.6331920Z 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-11-03T15:55:38.6333230Z 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-11-03T15:55:38.6334390Z 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-11-03T15:55:38.6335600Z 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-11-03T15:55:38.6336940Z 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-11-03T15:55:38.6337970Z 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-11-03T15:55:38.6339230Z 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-11-03T15:55:38.6340220Z 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-11-03T15:55:38.6341300Z 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-11-03T15:55:38.6342390Z 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-11-03T15:55:38.6343450Z 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-11-03T15:55:38.6344570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/cuBlasCommonArgs.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/native/cuda 2025-11-03T15:55:38.6346160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-11-03T15:55:38.6346970Z 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-11-03T15:55:38.6348070Z 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-11-03T15:55:38.6349210Z 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-11-03T15:55:38.6350290Z 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-11-03T15:55:38.6351640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-11-03T15:55:38.6352930Z 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-11-03T15:55:38.6354130Z 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-11-03T15:55:38.6355330Z 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-11-03T15:55:38.6356540Z 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-11-03T15:55:38.6357760Z 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-11-03T15:55:38.6359150Z 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-11-03T15:55:38.6360000Z 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-11-03T15:55:38.6361100Z 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-11-03T15:55:38.6362240Z 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-11-03T15:55:38.6363580Z 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-11-03T15:55:38.6364670Z 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-11-03T15:55:38.6365780Z 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-11-03T15:55:38.6366920Z 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-11-03T15:55:38.6368040Z 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-11-03T15:55:38.6369160Z 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-11-03T15:55:38.6370230Z 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-11-03T15:55:38.6371340Z 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-11-03T15:55:38.6372510Z 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-11-03T15:55:38.6373560Z 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-11-03T15:55:38.6374680Z 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-11-03T15:55:38.6376120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cudnn 2025-11-03T15:55:38.6376990Z 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-11-03T15:55:38.6378060Z 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-11-03T15:55:38.6379180Z 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-11-03T15:55:38.6380320Z 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-11-03T15:55:38.6381360Z 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-11-03T15:55:38.6382470Z 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-11-03T15:55:38.6383590Z 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-11-03T15:55:38.6384750Z 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-11-03T15:55:38.6385800Z 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-11-03T15:55:38.6386910Z 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-11-03T15:55:38.6387980Z 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-11-03T15:55:38.6389500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-11-03T15:55:38.6390380Z 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-11-03T15:55:38.6391520Z 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-11-03T15:55:38.6392610Z 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-11-03T15:55:38.6393740Z 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-11-03T15:55:38.6394880Z 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-11-03T15:55:38.6395920Z 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-11-03T15:55:38.6397070Z 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-11-03T15:55:38.6398150Z 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-11-03T15:55:38.6399230Z 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-11-03T15:55:38.6400380Z 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-11-03T15:55:38.6401820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-11-03T15:55:38.6402650Z 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-11-03T15:55:38.6403890Z 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-11-03T15:55:38.6409390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda 2025-11-03T15:55:38.6409850Z 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-11-03T15:55:38.6410100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-11-03T15:55:38.6410360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-11-03T15:55:38.6410960Z 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-11-03T15:55:38.6411610Z 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-11-03T15:55:38.6412410Z 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-11-03T15:55:38.6413730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-11-03T15:55:38.6414750Z 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-11-03T15:55:38.6415950Z 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-11-03T15:55:38.6417090Z 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-11-03T15:55:38.6418420Z 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-11-03T15:55:38.6420220Z 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-11-03T15:55:38.6421570Z 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-11-03T15:55:38.6422790Z 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-11-03T15:55:38.6424150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-11-03T15:55:38.6425180Z 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-11-03T15:55:38.6426340Z 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-11-03T15:55:38.6427490Z 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-11-03T15:55:38.6428770Z 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-11-03T15:55:38.6429960Z 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-11-03T15:55:38.6431470Z 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-11-03T15:55:38.6432730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-11-03T15:55:38.6433790Z 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-11-03T15:55:38.6435000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-11-03T15:55:38.6436050Z 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-11-03T15:55:38.6437270Z 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-11-03T15:55:38.6438890Z 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-11-03T15:55:38.6440520Z 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-11-03T15:55:38.6441800Z 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-11-03T15:55:38.6442950Z 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-11-03T15:55:38.6444380Z 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-11-03T15:55:38.6445840Z 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-11-03T15:55:38.6447860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/flash_attn 2025-11-03T15:55:38.6448660Z 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-11-03T15:55:38.6449820Z 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-11-03T15:55:38.6450930Z 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-11-03T15:55:38.6452430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip 2025-11-03T15:55:38.6453440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/aotriton_versions.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/native/transformers/hip 2025-11-03T15:55:38.6454570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/gemm_kernel_utils.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/native/transformers/hip 2025-11-03T15:55:38.6455740Z 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-11-03T15:55:38.6457020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn 2025-11-03T15:55:38.6458060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-11-03T15:55:38.6459040Z 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-11-03T15:55:38.6460230Z 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-11-03T15:55:38.6461400Z 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-11-03T15:55:38.6462540Z 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-11-03T15:55:38.6463630Z 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-11-03T15:55:38.6464790Z 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-11-03T15:55:38.6465820Z 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-11-03T15:55:38.6467170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-11-03T15:55:38.6468040Z 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-11-03T15:55:38.6469140Z 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-11-03T15:55:38.6470250Z 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-11-03T15:55:38.6471630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip/bgemm_kernels 2025-11-03T15:55:38.6472550Z 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-11-03T15:55:38.6473820Z 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-11-03T15:55:38.6474970Z 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-11-03T15:55:38.6476010Z 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-11-03T15:55:38.6477090Z 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-11-03T15:55:38.6478410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mtia 2025-11-03T15:55:38.6479280Z 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-11-03T15:55:38.6480500Z 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-11-03T15:55:38.6481510Z 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-11-03T15:55:38.6482570Z 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-11-03T15:55:38.6483860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-11-03T15:55:38.6484750Z 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-11-03T15:55:38.6485950Z 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-11-03T15:55:38.6486980Z 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-11-03T15:55:38.6488060Z 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-11-03T15:55:38.6489140Z 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-11-03T15:55:38.6491580Z 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-11-03T15:55:38.6492230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/GroupedMMUtils.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/native 2025-11-03T15:55:38.6493350Z 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-11-03T15:55:38.6494380Z 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-11-03T15:55:38.6495630Z 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-11-03T15:55:38.6496710Z 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-11-03T15:55:38.6497790Z 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-11-03T15:55:38.6498870Z 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-11-03T15:55:38.6500140Z 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-11-03T15:55:38.6501310Z 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-11-03T15:55:38.6502540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-11-03T15:55:38.6503480Z 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-11-03T15:55:38.6504640Z 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-11-03T15:55:38.6505760Z 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-11-03T15:55:38.6506860Z 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-11-03T15:55:38.6508130Z 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-11-03T15:55:38.6509140Z 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-11-03T15:55:38.6510480Z 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-11-03T15:55:38.6511470Z 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-11-03T15:55:38.6512820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn 2025-11-03T15:55:38.6514210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-11-03T15:55:38.6514750Z 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-11-03T15:55:38.6515840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/qlinear.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/native/mkldnn/xpu 2025-11-03T15:55:38.6517400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-11-03T15:55:38.6518250Z 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-11-03T15:55:38.6519390Z 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-11-03T15:55:38.6520680Z 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-11-03T15:55:38.6521810Z 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-11-03T15:55:38.6523110Z 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-11-03T15:55:38.6524210Z 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-11-03T15:55:38.6525340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/qconv.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/native/mkldnn/xpu 2025-11-03T15:55:38.6526400Z 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-11-03T15:55:38.6527480Z 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-11-03T15:55:38.6528540Z 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-11-03T15:55:38.6529620Z 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-11-03T15:55:38.6530780Z 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-11-03T15:55:38.6531900Z 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-11-03T15:55:38.6533070Z 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-11-03T15:55:38.6534110Z 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-11-03T15:55:38.6535260Z 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-11-03T15:55:38.6536420Z 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-11-03T15:55:38.6537670Z 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-11-03T15:55:38.6538660Z 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-11-03T15:55:38.6539950Z 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-11-03T15:55:38.6541040Z 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-11-03T15:55:38.6542150Z 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-11-03T15:55:38.6543330Z 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-11-03T15:55:38.6544430Z 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-11-03T15:55:38.6545560Z 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-11-03T15:55:38.6546630Z 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-11-03T15:55:38.6548070Z 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-11-03T15:55:38.6549170Z 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-11-03T15:55:38.6550300Z 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-11-03T15:55:38.6551530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/metal 2025-11-03T15:55:38.6552370Z 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-11-03T15:55:38.6553470Z 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-11-03T15:55:38.6554870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-11-03T15:55:38.6555680Z 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-11-03T15:55:38.6556840Z 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-11-03T15:55:38.6557850Z 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-11-03T15:55:38.6559310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-11-03T15:55:38.6560040Z 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-11-03T15:55:38.6561220Z 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-11-03T15:55:38.6562550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-11-03T15:55:38.6563460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_int_aarch64.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/cpu/vec/vec128 2025-11-03T15:55:38.6564820Z 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-11-03T15:55:38.6565970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_double_neon.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/cpu/vec/vec128 2025-11-03T15:55:38.6567330Z 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-11-03T15:55:38.6568420Z 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-11-03T15:55:38.6569480Z 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-11-03T15:55:38.6570800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_uint_aarch64.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/cpu/vec/vec128 2025-11-03T15:55:38.6572260Z 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-11-03T15:55:38.6573320Z 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-11-03T15:55:38.6574490Z 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-11-03T15:55:38.6575840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-11-03T15:55:38.6576780Z 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-11-03T15:55:38.6577900Z 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-11-03T15:55:38.6579060Z 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-11-03T15:55:38.6580170Z 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-11-03T15:55:38.6581290Z 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-11-03T15:55:38.6582740Z 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-11-03T15:55:38.6583970Z 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-11-03T15:55:38.6585100Z 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-11-03T15:55:38.6586650Z 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-11-03T15:55:38.6587910Z 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-11-03T15:55:38.6589080Z 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-11-03T15:55:38.6590570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/zarch 2025-11-03T15:55:38.6591460Z 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-11-03T15:55:38.6593210Z 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-11-03T15:55:38.6594580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-11-03T15:55:38.6595440Z 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-11-03T15:55:38.6596610Z 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-11-03T15:55:38.6597770Z 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-11-03T15:55:38.6598880Z 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-11-03T15:55:38.6600040Z 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-11-03T15:55:38.6601310Z 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-11-03T15:55:38.6602640Z 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-11-03T15:55:38.6603890Z 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-11-03T15:55:38.6605030Z 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-11-03T15:55:38.6606340Z 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-11-03T15:55:38.6607430Z 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-11-03T15:55:38.6608770Z 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-11-03T15:55:38.6609990Z 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-11-03T15:55:38.6611100Z 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-11-03T15:55:38.6612750Z 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-11-03T15:55:38.6613990Z 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-11-03T15:55:38.6615170Z 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-11-03T15:55:38.6616320Z 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-11-03T15:55:38.6617460Z 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-11-03T15:55:38.6618770Z 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-11-03T15:55:38.6620160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-11-03T15:55:38.6621050Z 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-11-03T15:55:38.6622620Z 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-11-03T15:55:38.6623690Z 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-11-03T15:55:38.6625240Z 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-11-03T15:55:38.6626470Z 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-11-03T15:55:38.6627730Z 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-11-03T15:55:38.6628890Z 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-11-03T15:55:38.6630220Z 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-11-03T15:55:38.6631600Z 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-11-03T15:55:38.6633000Z 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-11-03T15:55:38.6634210Z 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-11-03T15:55:38.6635570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-11-03T15:55:38.6636460Z 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-11-03T15:55:38.6637770Z 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-11-03T15:55:38.6638970Z 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-11-03T15:55:38.6640240Z 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-11-03T15:55:38.6641480Z 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-11-03T15:55:38.6642610Z 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-11-03T15:55:38.6643730Z 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-11-03T15:55:38.6644980Z 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-11-03T15:55:38.6646210Z 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-11-03T15:55:38.6647260Z 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-11-03T15:55:38.6648790Z 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-11-03T15:55:38.6650010Z 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-11-03T15:55:38.6651050Z 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-11-03T15:55:38.6652090Z 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-11-03T15:55:38.6653310Z 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-11-03T15:55:38.6659090Z 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-11-03T15:55:38.6659770Z 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-11-03T15:55:38.6660840Z 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-11-03T15:55:38.6661890Z 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-11-03T15:55:38.6663760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-11-03T15:55:38.6664260Z 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-11-03T15:55:38.6665390Z 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-11-03T15:55:38.6666470Z 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-11-03T15:55:38.6667570Z 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-11-03T15:55:38.6668690Z 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-11-03T15:55:38.6669840Z 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-11-03T15:55:38.6670900Z 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-11-03T15:55:38.6672050Z 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-11-03T15:55:38.6673380Z 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-11-03T15:55:38.6674500Z 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-11-03T15:55:38.6675600Z 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-11-03T15:55:38.6676710Z 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-11-03T15:55:38.6677710Z 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-11-03T15:55:38.6678860Z 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-11-03T15:55:38.6680050Z 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-11-03T15:55:38.6681260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAGreenContext.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/cuda 2025-11-03T15:55:38.6682380Z 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-11-03T15:55:38.6683630Z 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-11-03T15:55:38.6684880Z 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-11-03T15:55:38.6686040Z 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-11-03T15:55:38.6687260Z 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-11-03T15:55:38.6688410Z 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-11-03T15:55:38.6689660Z 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-11-03T15:55:38.6690830Z 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-11-03T15:55:38.6692250Z 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-11-03T15:55:38.6693390Z 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-11-03T15:55:38.6694420Z 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-11-03T15:55:38.6695580Z 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-11-03T15:55:38.6696710Z 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-11-03T15:55:38.6697840Z 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-11-03T15:55:38.6698980Z 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-11-03T15:55:38.6700650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-11-03T15:55:38.6701630Z 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-11-03T15:55:38.6703000Z 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-11-03T15:55:38.6704230Z 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-11-03T15:55:38.6705480Z 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-11-03T15:55:38.6706690Z 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-11-03T15:55:38.6707970Z 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-11-03T15:55:38.6709190Z 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-11-03T15:55:38.6710290Z 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-11-03T15:55:38.6711380Z 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-11-03T15:55:38.6712560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/BLASConstants.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/cuda/detail 2025-11-03T15:55:38.6713650Z 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-11-03T15:55:38.6714720Z 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-11-03T15:55:38.6715790Z 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-11-03T15:55:38.6717090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAScaledBlas.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/cuda 2025-11-03T15:55:38.6718230Z 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-11-03T15:55:38.6719320Z 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-11-03T15:55:38.6720380Z 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-11-03T15:55:38.6721480Z 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-11-03T15:55:38.6722860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-11-03T15:55:38.6723710Z 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-11-03T15:55:38.6724790Z 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-11-03T15:55:38.6725880Z 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-11-03T15:55:38.6726970Z 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-11-03T15:55:38.6728310Z 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-11-03T15:55:38.6729580Z 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-11-03T15:55:38.6730630Z 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-11-03T15:55:38.6731690Z 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-11-03T15:55:38.6732800Z 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-11-03T15:55:38.6734300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/quantized 2025-11-03T15:55:38.6735070Z 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-11-03T15:55:38.6736150Z 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-11-03T15:55:38.6737220Z 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-11-03T15:55:38.6738440Z 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-11-03T15:55:38.6739820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-11-03T15:55:38.6740680Z 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-11-03T15:55:38.6741780Z 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-11-03T15:55:38.6742920Z 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-11-03T15:55:38.6744000Z 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-11-03T15:55:38.6745920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu/detail 2025-11-03T15:55:38.6746300Z 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-11-03T15:55:38.6747270Z 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-11-03T15:55:38.6748360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/XPUGraphsUtils.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/xpu 2025-11-03T15:55:38.6749480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/PhiloxXpuState.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/xpu 2025-11-03T15:55:38.6750630Z 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-11-03T15:55:38.6751970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-11-03T15:55:38.6752910Z 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-11-03T15:55:38.6754180Z 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-11-03T15:55:38.6755320Z 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-11-03T15:55:38.6756540Z 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-11-03T15:55:38.6757580Z 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-11-03T15:55:38.6758760Z 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-11-03T15:55:38.6760090Z 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-11-03T15:55:38.6771820Z 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-11-03T15:55:38.6772960Z 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-11-03T15:55:38.6774180Z 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-11-03T15:55:38.6775280Z 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-11-03T15:55:38.6776350Z 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-11-03T15:55:38.6777650Z 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-11-03T15:55:38.6778940Z 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-11-03T15:55:38.6780000Z 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-11-03T15:55:38.6781090Z 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-11-03T15:55:38.6791050Z 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-11-03T15:55:38.6791880Z 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-11-03T15:55:38.6793000Z 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-11-03T15:55:38.6794040Z 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-11-03T15:55:38.6795130Z 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-11-03T15:55:38.6796160Z 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-11-03T15:55:38.6797400Z 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-11-03T15:55:38.6798490Z 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-11-03T15:55:38.6799450Z 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-11-03T15:55:38.6800520Z 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-11-03T15:55:38.6801730Z 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-11-03T15:55:38.6802780Z 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-11-03T15:55:38.6803840Z 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-11-03T15:55:38.6804890Z 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-11-03T15:55:38.6805960Z 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-11-03T15:55:38.6807520Z 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-11-03T15:55:38.6808650Z 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-11-03T15:55:38.6809880Z 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-11-03T15:55:38.6810970Z 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-11-03T15:55:38.6811980Z 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-11-03T15:55:38.6813070Z 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-11-03T15:55:38.6814170Z 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-11-03T15:55:38.6815190Z 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-11-03T15:55:38.6827770Z 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-11-03T15:55:38.6828830Z 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-11-03T15:55:38.6829970Z 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-11-03T15:55:38.6832010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-11-03T15:55:38.6832580Z 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-11-03T15:55:38.6833730Z 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-11-03T15:55:38.6834840Z 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-11-03T15:55:38.6835970Z 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-11-03T15:55:38.6837100Z 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-11-03T15:55:38.6838180Z 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-11-03T15:55:38.6839380Z 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-11-03T15:55:38.6840590Z 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-11-03T15:55:38.6841650Z 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-11-03T15:55:38.6842720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/XLAHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/detail 2025-11-03T15:55:38.6843810Z 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-11-03T15:55:38.6844950Z 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-11-03T15:55:38.6846130Z 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-11-03T15:55:38.6847480Z 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-11-03T15:55:38.6848540Z 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-11-03T15:55:38.6849600Z 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-11-03T15:55:38.6850780Z 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-11-03T15:55:38.6851820Z 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-11-03T15:55:38.6853240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip 2025-11-03T15:55:38.6854270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-11-03T15:55:38.6855290Z 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-11-03T15:55:38.6856460Z 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-11-03T15:55:38.6857660Z 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-11-03T15:55:38.6858760Z 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-11-03T15:55:38.6859800Z 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-11-03T15:55:38.6860930Z 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-11-03T15:55:38.6861970Z 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-11-03T15:55:38.6863440Z 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-11-03T15:55:38.6864570Z 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-11-03T15:55:38.6865660Z 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-11-03T15:55:38.6866800Z 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-11-03T15:55:38.6867930Z 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-11-03T15:55:38.6869000Z 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-11-03T15:55:38.6870160Z 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-11-03T15:55:38.6871160Z 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-11-03T15:55:38.6872600Z 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-11-03T15:55:38.6873670Z 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-11-03T15:55:38.6874730Z 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-11-03T15:55:38.6876200Z 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-11-03T15:55:38.6916100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-11-03T15:55:38.6916770Z 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-11-03T15:55:38.6917930Z 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-11-03T15:55:38.6919250Z 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-11-03T15:55:38.6920620Z 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-11-03T15:55:38.6921990Z 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-11-03T15:55:38.6923350Z 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-11-03T15:55:38.6924460Z 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-11-03T15:55:38.6925560Z 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-11-03T15:55:38.6926720Z 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-11-03T15:55:38.6927810Z 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-11-03T15:55:38.6929050Z 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-11-03T15:55:38.6930090Z 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-11-03T15:55:38.6931210Z 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-11-03T15:55:38.6932360Z 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-11-03T15:55:38.6933550Z 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-11-03T15:55:38.6934680Z 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-11-03T15:55:38.6935790Z 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-11-03T15:55:38.6936910Z 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-11-03T15:55:38.6938040Z 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-11-03T15:55:38.6939170Z 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-11-03T15:55:38.6940330Z 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-11-03T15:55:38.6941400Z 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-11-03T15:55:38.6942550Z 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-11-03T15:55:38.6943700Z 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-11-03T15:55:38.6944850Z 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-11-03T15:55:38.6946320Z 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-11-03T15:55:38.6947000Z 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-11-03T15:55:38.6948170Z 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-11-03T15:55:38.6949220Z 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-11-03T15:55:38.6950280Z 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-11-03T15:55:38.6951500Z 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-11-03T15:55:38.6952600Z 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-11-03T15:55:38.6953720Z 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-11-03T15:55:38.6954930Z 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-11-03T15:55:38.6956140Z 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-11-03T15:55:38.6957210Z 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-11-03T15:55:38.6958330Z 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-11-03T15:55:38.6959480Z 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-11-03T15:55:38.6960590Z 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-11-03T15:55:38.6961700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.6962750Z 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-11-03T15:55:38.6963850Z 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-11-03T15:55:38.6964890Z 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-11-03T15:55:38.6965970Z 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-11-03T15:55:38.6967170Z 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-11-03T15:55:38.6968180Z 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-11-03T15:55:38.6969280Z 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-11-03T15:55:38.6970340Z 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-11-03T15:55:38.6975190Z 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-11-03T15:55:38.6976200Z 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-11-03T15:55:38.6977320Z 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-11-03T15:55:38.6978410Z 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-11-03T15:55:38.6979820Z 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-11-03T15:55:38.6980630Z 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-11-03T15:55:38.6981750Z 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-11-03T15:55:38.6982860Z 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-11-03T15:55:38.6983950Z 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-11-03T15:55:38.6985090Z 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-11-03T15:55:38.6986320Z 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-11-03T15:55:38.6987400Z 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-11-03T15:55:38.6988520Z 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-11-03T15:55:38.6989530Z 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-11-03T15:55:38.6990620Z 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-11-03T15:55:38.6991730Z 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-11-03T15:55:38.6992990Z 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-11-03T15:55:38.6994070Z 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-11-03T15:55:38.6995090Z 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-11-03T15:55:38.6996250Z 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-11-03T15:55:38.6997390Z 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-11-03T15:55:38.6998460Z 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-11-03T15:55:38.6999550Z 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-11-03T15:55:38.7000590Z 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-11-03T15:55:38.7001720Z 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-11-03T15:55:38.7002890Z 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-11-03T15:55:38.7003980Z 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-11-03T15:55:38.7005090Z 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-11-03T15:55:38.7006180Z 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-11-03T15:55:38.7007340Z 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-11-03T15:55:38.7008330Z 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-11-03T15:55:38.7009480Z 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-11-03T15:55:38.7010540Z 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-11-03T15:55:38.7011800Z 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-11-03T15:55:38.7012940Z 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-11-03T15:55:38.7013990Z 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-11-03T15:55:38.7015150Z 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-11-03T15:55:38.7016450Z 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-11-03T15:55:38.7017750Z 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-11-03T15:55:38.7018910Z 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-11-03T15:55:38.7020070Z 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-11-03T15:55:38.7021350Z 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-11-03T15:55:38.7022430Z 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-11-03T15:55:38.7023630Z 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-11-03T15:55:38.7024820Z 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-11-03T15:55:38.7025810Z 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-11-03T15:55:38.7027010Z 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-11-03T15:55:38.7028130Z 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-11-03T15:55:38.7029370Z 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-11-03T15:55:38.7030650Z 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-11-03T15:55:38.7031550Z 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-11-03T15:55:38.7032640Z 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-11-03T15:55:38.7033740Z 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-11-03T15:55:38.7034930Z 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-11-03T15:55:38.7035900Z 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-11-03T15:55:38.7037060Z 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-11-03T15:55:38.7038080Z 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-11-03T15:55:38.7039210Z 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-11-03T15:55:38.7040320Z 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-11-03T15:55:38.7041560Z 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-11-03T15:55:38.7042620Z 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-11-03T15:55:38.7043800Z 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-11-03T15:55:38.7044880Z 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-11-03T15:55:38.7046020Z 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-11-03T15:55:38.7047110Z 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-11-03T15:55:38.7048220Z 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-11-03T15:55:38.7049330Z 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-11-03T15:55:38.7050390Z 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-11-03T15:55:38.7051510Z 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-11-03T15:55:38.7052640Z 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-11-03T15:55:38.7053810Z 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-11-03T15:55:38.7054870Z 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-11-03T15:55:38.7055940Z 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-11-03T15:55:38.7057040Z 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-11-03T15:55:38.7058130Z 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-11-03T15:55:38.7059220Z 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-11-03T15:55:38.7060330Z 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-11-03T15:55:38.7061480Z 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-11-03T15:55:38.7062450Z 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-11-03T15:55:38.7063540Z 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-11-03T15:55:38.7064640Z 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-11-03T15:55:38.7065750Z 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-11-03T15:55:38.7066870Z 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-11-03T15:55:38.7068020Z 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-11-03T15:55:38.7069020Z 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-11-03T15:55:38.7070180Z 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-11-03T15:55:38.7071290Z 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-11-03T15:55:38.7072490Z 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-11-03T15:55:38.7073610Z 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-11-03T15:55:38.7074900Z 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-11-03T15:55:38.7076140Z 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-11-03T15:55:38.7077200Z 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-11-03T15:55:38.7078330Z 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-11-03T15:55:38.7079490Z 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-11-03T15:55:38.7080560Z 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-11-03T15:55:38.7081680Z 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-11-03T15:55:38.7082710Z 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-11-03T15:55:38.7083860Z 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-11-03T15:55:38.7084950Z 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-11-03T15:55:38.7086040Z 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-11-03T15:55:38.7087090Z 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-11-03T15:55:38.7088220Z 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-11-03T15:55:38.7089550Z 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-11-03T15:55:38.7090650Z 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-11-03T15:55:38.7091710Z 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-11-03T15:55:38.7092910Z 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-11-03T15:55:38.7094070Z 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-11-03T15:55:38.7095180Z 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-11-03T15:55:38.7100250Z 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-11-03T15:55:38.7100870Z 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-11-03T15:55:38.7101270Z 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-11-03T15:55:38.7101640Z 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-11-03T15:55:38.7102040Z 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-11-03T15:55:38.7102980Z 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-11-03T15:55:38.7104290Z 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-11-03T15:55:38.7105370Z 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-11-03T15:55:38.7106610Z 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-11-03T15:55:38.7107650Z 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-11-03T15:55:38.7108900Z 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-11-03T15:55:38.7110060Z 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-11-03T15:55:38.7111230Z 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-11-03T15:55:38.7112300Z 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-11-03T15:55:38.7113410Z 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-11-03T15:55:38.7114590Z 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-11-03T15:55:38.7115700Z 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-11-03T15:55:38.7116890Z 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-11-03T15:55:38.7118040Z 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-11-03T15:55:38.7119070Z 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-11-03T15:55:38.7120340Z 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-11-03T15:55:38.7121390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.7122490Z 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-11-03T15:55:38.7123700Z 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-11-03T15:55:38.7125070Z 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-11-03T15:55:38.7126460Z 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-11-03T15:55:38.7127670Z 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-11-03T15:55:38.7129030Z 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-11-03T15:55:38.7130300Z 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-11-03T15:55:38.7131670Z 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-11-03T15:55:38.7132990Z 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-11-03T15:55:38.7134230Z 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-11-03T15:55:38.7135490Z 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-11-03T15:55:38.7136730Z 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-11-03T15:55:38.7137900Z 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-11-03T15:55:38.7139300Z 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-11-03T15:55:38.7140530Z 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-11-03T15:55:38.7141840Z 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-11-03T15:55:38.7143100Z 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-11-03T15:55:38.7144340Z 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-11-03T15:55:38.7145630Z 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-11-03T15:55:38.7146940Z 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-11-03T15:55:38.7148440Z 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-11-03T15:55:38.7150500Z 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-11-03T15:55:38.7151500Z 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-11-03T15:55:38.7153200Z 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-11-03T15:55:38.7154630Z 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-11-03T15:55:38.7155930Z 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-11-03T15:55:38.7157260Z 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-11-03T15:55:38.7158570Z 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-11-03T15:55:38.7159790Z 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-11-03T15:55:38.7160950Z 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-11-03T15:55:38.7162190Z 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-11-03T15:55:38.7163550Z 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-11-03T15:55:38.7165130Z 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-11-03T15:55:38.7166240Z 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-11-03T15:55:38.7167540Z 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-11-03T15:55:38.7168780Z 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-11-03T15:55:38.7170070Z 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-11-03T15:55:38.7171380Z 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-11-03T15:55:38.7172510Z 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-11-03T15:55:38.7173530Z 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-11-03T15:55:38.7174670Z 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-11-03T15:55:38.7175910Z 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-11-03T15:55:38.7177090Z 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-11-03T15:55:38.7178080Z 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-11-03T15:55:38.7179230Z 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-11-03T15:55:38.7180730Z 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-11-03T15:55:38.7181420Z 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-11-03T15:55:38.7182580Z 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-11-03T15:55:38.7183670Z 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-11-03T15:55:38.7184860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.7185910Z 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-11-03T15:55:38.7187050Z 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-11-03T15:55:38.7188220Z 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-11-03T15:55:38.7189280Z 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-11-03T15:55:38.7190380Z 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-11-03T15:55:38.7191420Z 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-11-03T15:55:38.7192510Z 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-11-03T15:55:38.7193700Z 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-11-03T15:55:38.7194820Z 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-11-03T15:55:38.7195930Z 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-11-03T15:55:38.7197030Z 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-11-03T15:55:38.7198040Z 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-11-03T15:55:38.7199180Z 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-11-03T15:55:38.7200230Z 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-11-03T15:55:38.7201450Z 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-11-03T15:55:38.7202580Z 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-11-03T15:55:38.7203600Z 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-11-03T15:55:38.7204800Z 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-11-03T15:55:38.7205880Z 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-11-03T15:55:38.7206960Z 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-11-03T15:55:38.7208050Z 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-11-03T15:55:38.7209490Z 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-11-03T15:55:38.7210460Z 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-11-03T15:55:38.7211490Z 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-11-03T15:55:38.7212610Z 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-11-03T15:55:38.7213650Z 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-11-03T15:55:38.7214920Z 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-11-03T15:55:38.7216110Z 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-11-03T15:55:38.7217360Z 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-11-03T15:55:38.7218620Z 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-11-03T15:55:38.7219950Z 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-11-03T15:55:38.7221140Z 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-11-03T15:55:38.7222350Z 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-11-03T15:55:38.7223520Z 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-11-03T15:55:38.7224670Z 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-11-03T15:55:38.7225850Z 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-11-03T15:55:38.7227020Z 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-11-03T15:55:38.7228310Z 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-11-03T15:55:38.7229590Z 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-11-03T15:55:38.7230790Z 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-11-03T15:55:38.7232050Z 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-11-03T15:55:38.7233410Z 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-11-03T15:55:38.7234420Z 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-11-03T15:55:38.7235880Z 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-11-03T15:55:38.7237130Z 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-11-03T15:55:38.7238210Z 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-11-03T15:55:38.7239260Z 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-11-03T15:55:38.7240460Z 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-11-03T15:55:38.7241720Z 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-11-03T15:55:38.7243010Z 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-11-03T15:55:38.7243850Z 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-11-03T15:55:38.7244870Z 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-11-03T15:55:38.7245960Z 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-11-03T15:55:38.7247110Z 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-11-03T15:55:38.7248220Z 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-11-03T15:55:38.7249220Z 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-11-03T15:55:38.7250390Z 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-11-03T15:55:38.7251460Z 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-11-03T15:55:38.7252850Z 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-11-03T15:55:38.7253870Z 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-11-03T15:55:38.7254980Z 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-11-03T15:55:38.7256250Z 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-11-03T15:55:38.7257310Z 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-11-03T15:55:38.7258470Z 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-11-03T15:55:38.7259640Z 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-11-03T15:55:38.7260630Z 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-11-03T15:55:38.7261800Z 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-11-03T15:55:38.7262810Z 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-11-03T15:55:38.7263930Z 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-11-03T15:55:38.7264990Z 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-11-03T15:55:38.7266170Z 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-11-03T15:55:38.7267340Z 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-11-03T15:55:38.7268470Z 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-11-03T15:55:38.7269510Z 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-11-03T15:55:38.7270750Z 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-11-03T15:55:38.7271770Z 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-11-03T15:55:38.7272830Z 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-11-03T15:55:38.7273920Z 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-11-03T15:55:38.7275010Z 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-11-03T15:55:38.7276260Z 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-11-03T15:55:38.7277340Z 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-11-03T15:55:38.7278430Z 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-11-03T15:55:38.7279650Z 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-11-03T15:55:38.7280670Z 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-11-03T15:55:38.7281820Z 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-11-03T15:55:38.7282940Z 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-11-03T15:55:38.7283950Z 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-11-03T15:55:38.7284990Z 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-11-03T15:55:38.7286160Z 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-11-03T15:55:38.7287390Z 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-11-03T15:55:38.7288520Z 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-11-03T15:55:38.7289520Z 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-11-03T15:55:38.7290680Z 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-11-03T15:55:38.7291750Z 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-11-03T15:55:38.7292940Z 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-11-03T15:55:38.7294010Z 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-11-03T15:55:38.7295270Z 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-11-03T15:55:38.7296330Z 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-11-03T15:55:38.7297440Z 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-11-03T15:55:38.7298500Z 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-11-03T15:55:38.7299570Z 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-11-03T15:55:38.7300720Z 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-11-03T15:55:38.7301790Z 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-11-03T15:55:38.7302860Z 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-11-03T15:55:38.7304010Z 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-11-03T15:55:38.7305170Z 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-11-03T15:55:38.7306350Z 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-11-03T15:55:38.7307470Z 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-11-03T15:55:38.7308590Z 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-11-03T15:55:38.7309640Z 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-11-03T15:55:38.7310750Z 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-11-03T15:55:38.7311930Z 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-11-03T15:55:38.7313050Z 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-11-03T15:55:38.7314140Z 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-11-03T15:55:38.7315170Z 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-11-03T15:55:38.7316240Z 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-11-03T15:55:38.7317350Z 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-11-03T15:55:38.7318520Z 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-11-03T15:55:38.7319620Z 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-11-03T15:55:38.7320810Z 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-11-03T15:55:38.7321880Z 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-11-03T15:55:38.7322980Z 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-11-03T15:55:38.7324200Z 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-11-03T15:55:38.7325230Z 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-11-03T15:55:38.7326370Z 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-11-03T15:55:38.7327560Z 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-11-03T15:55:38.7328590Z 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-11-03T15:55:38.7329730Z 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-11-03T15:55:38.7330790Z 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-11-03T15:55:38.7331900Z 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-11-03T15:55:38.7333030Z 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-11-03T15:55:38.7334100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.7335260Z 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-11-03T15:55:38.7336380Z 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-11-03T15:55:38.7337470Z 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-11-03T15:55:38.7338550Z 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-11-03T15:55:38.7339590Z 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-11-03T15:55:38.7340740Z 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-11-03T15:55:38.7341850Z 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-11-03T15:55:38.7342900Z 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-11-03T15:55:38.7344030Z 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-11-03T15:55:38.7345110Z 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-11-03T15:55:38.7346210Z 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-11-03T15:55:38.7347480Z 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-11-03T15:55:38.7348510Z 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-11-03T15:55:38.7349660Z 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-11-03T15:55:38.7351000Z 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-11-03T15:55:38.7352100Z 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-11-03T15:55:38.7353110Z 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-11-03T15:55:38.7354220Z 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-11-03T15:55:38.7355340Z 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-11-03T15:55:38.7356390Z 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-11-03T15:55:38.7357640Z 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-11-03T15:55:38.7358780Z 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-11-03T15:55:38.7359860Z 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-11-03T15:55:38.7361150Z 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-11-03T15:55:38.7362300Z 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-11-03T15:55:38.7363450Z 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-11-03T15:55:38.7364490Z 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-11-03T15:55:38.7365550Z 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-11-03T15:55:38.7366710Z 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-11-03T15:55:38.7367820Z 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-11-03T15:55:38.7368860Z 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-11-03T15:55:38.7370070Z 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-11-03T15:55:38.7371090Z 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-11-03T15:55:38.7372240Z 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-11-03T15:55:38.7373340Z 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-11-03T15:55:38.7374430Z 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-11-03T15:55:38.7375620Z 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-11-03T15:55:38.7376680Z 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-11-03T15:55:38.7377740Z 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-11-03T15:55:38.7378810Z 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-11-03T15:55:38.7379930Z 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-11-03T15:55:38.7381060Z 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-11-03T15:55:38.7382100Z 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-11-03T15:55:38.7383260Z 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-11-03T15:55:38.7384420Z 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-11-03T15:55:38.7385450Z 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-11-03T15:55:38.7386540Z 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-11-03T15:55:38.7387620Z 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-11-03T15:55:38.7388910Z 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-11-03T15:55:38.7389870Z 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-11-03T15:55:38.7391040Z 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-11-03T15:55:38.7392050Z 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-11-03T15:55:38.7393350Z 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-11-03T15:55:38.7394370Z 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-11-03T15:55:38.7395570Z 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-11-03T15:55:38.7396710Z 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-11-03T15:55:38.7397840Z 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-11-03T15:55:38.7399010Z 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-11-03T15:55:38.7400110Z 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-11-03T15:55:38.7401240Z 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-11-03T15:55:38.7402380Z 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-11-03T15:55:38.7403400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.7404590Z 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-11-03T15:55:38.7405740Z 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-11-03T15:55:38.7406750Z 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-11-03T15:55:38.7407970Z 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-11-03T15:55:38.7409040Z 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-11-03T15:55:38.7410100Z 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-11-03T15:55:38.7411230Z 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-11-03T15:55:38.7412320Z 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-11-03T15:55:38.7413650Z 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-11-03T15:55:38.7414730Z 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-11-03T15:55:38.7415750Z 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-11-03T15:55:38.7416940Z 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-11-03T15:55:38.7418090Z 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-11-03T15:55:38.7419130Z 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-11-03T15:55:38.7420240Z 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-11-03T15:55:38.7421360Z 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-11-03T15:55:38.7422530Z 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-11-03T15:55:38.7423670Z 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-11-03T15:55:38.7424780Z 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-11-03T15:55:38.7425950Z 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-11-03T15:55:38.7427020Z 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-11-03T15:55:38.7428130Z 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-11-03T15:55:38.7429190Z 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-11-03T15:55:38.7430250Z 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-11-03T15:55:38.7431380Z 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-11-03T15:55:38.7432460Z 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-11-03T15:55:38.7433580Z 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-11-03T15:55:38.7434660Z 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-11-03T15:55:38.7435840Z 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-11-03T15:55:38.7436980Z 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-11-03T15:55:38.7438070Z 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-11-03T15:55:38.7439070Z 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-11-03T15:55:38.7440320Z 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-11-03T15:55:38.7441420Z 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-11-03T15:55:38.7442500Z 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-11-03T15:55:38.7443540Z 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-11-03T15:55:38.7444640Z 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-11-03T15:55:38.7445670Z 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-11-03T15:55:38.7446920Z 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-11-03T15:55:38.7448000Z 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-11-03T15:55:38.7449270Z 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-11-03T15:55:38.7450160Z 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-11-03T15:55:38.7451290Z 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-11-03T15:55:38.7452630Z 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-11-03T15:55:38.7453520Z 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-11-03T15:55:38.7454670Z 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-11-03T15:55:38.7455710Z 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-11-03T15:55:38.7456890Z 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-11-03T15:55:38.7457990Z 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-11-03T15:55:38.7459230Z 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-11-03T15:55:38.7460240Z 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-11-03T15:55:38.7461470Z 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-11-03T15:55:38.7462480Z 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-11-03T15:55:38.7463580Z 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-11-03T15:55:38.7464720Z 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-11-03T15:55:38.7465730Z 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-11-03T15:55:38.7466830Z 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-11-03T15:55:38.7468100Z 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-11-03T15:55:38.7469110Z 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-11-03T15:55:38.7470170Z 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-11-03T15:55:38.7471250Z 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-11-03T15:55:38.7472380Z 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-11-03T15:55:38.7473600Z 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-11-03T15:55:38.7474690Z 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-11-03T15:55:38.7475760Z 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-11-03T15:55:38.7476850Z 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-11-03T15:55:38.7477990Z 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-11-03T15:55:38.7479130Z 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-11-03T15:55:38.7480230Z 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-11-03T15:55:38.7481350Z 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-11-03T15:55:38.7482430Z 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-11-03T15:55:38.7483670Z 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-11-03T15:55:38.7484750Z 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-11-03T15:55:38.7486040Z 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-11-03T15:55:38.7487170Z 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-11-03T15:55:38.7488430Z 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-11-03T15:55:38.7489520Z 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-11-03T15:55:38.7490670Z 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-11-03T15:55:38.7491760Z 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-11-03T15:55:38.7492880Z 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-11-03T15:55:38.7493930Z 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-11-03T15:55:38.7495050Z 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-11-03T15:55:38.7496070Z 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-11-03T15:55:38.7497140Z 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-11-03T15:55:38.7498260Z 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-11-03T15:55:38.7499480Z 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-11-03T15:55:38.7500600Z 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-11-03T15:55:38.7501740Z 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-11-03T15:55:38.7502750Z 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-11-03T15:55:38.7503890Z 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-11-03T15:55:38.7505050Z 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-11-03T15:55:38.7506270Z 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-11-03T15:55:38.7507690Z 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-11-03T15:55:38.7508780Z 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-11-03T15:55:38.7509980Z 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-11-03T15:55:38.7511160Z 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-11-03T15:55:38.7512540Z 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-11-03T15:55:38.7513600Z 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-11-03T15:55:38.7514730Z 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-11-03T15:55:38.7515790Z 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-11-03T15:55:38.7516970Z 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-11-03T15:55:38.7518220Z 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-11-03T15:55:38.7519450Z 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-11-03T15:55:38.7520680Z 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-11-03T15:55:38.7521790Z 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-11-03T15:55:38.7523060Z 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-11-03T15:55:38.7524310Z 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-11-03T15:55:38.7525520Z 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-11-03T15:55:38.7526710Z 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-11-03T15:55:38.7527990Z 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-11-03T15:55:38.7529110Z 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-11-03T15:55:38.7530150Z 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-11-03T15:55:38.7531210Z 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-11-03T15:55:38.7532530Z 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-11-03T15:55:38.7533760Z 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-11-03T15:55:38.7535030Z 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-11-03T15:55:38.7536160Z 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-11-03T15:55:38.7537490Z 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-11-03T15:55:38.7538500Z 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-11-03T15:55:38.7539580Z 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-11-03T15:55:38.7540660Z 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-11-03T15:55:38.7541760Z 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-11-03T15:55:38.7542920Z 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-11-03T15:55:38.7544040Z 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-11-03T15:55:38.7545130Z 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-11-03T15:55:38.7546270Z 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-11-03T15:55:38.7547380Z 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-11-03T15:55:38.7548550Z 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-11-03T15:55:38.7549590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm_v2_native.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.7550700Z 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-11-03T15:55:38.7551800Z 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-11-03T15:55:38.7552930Z 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-11-03T15:55:38.7554190Z 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-11-03T15:55:38.7555330Z 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-11-03T15:55:38.7556390Z 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-11-03T15:55:38.7557530Z 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-11-03T15:55:38.7558620Z 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-11-03T15:55:38.7559800Z 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-11-03T15:55:38.7560950Z 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-11-03T15:55:38.7562140Z 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-11-03T15:55:38.7563240Z 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-11-03T15:55:38.7564260Z 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-11-03T15:55:38.7565460Z 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-11-03T15:55:38.7566440Z 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-11-03T15:55:38.7567580Z 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-11-03T15:55:38.7568750Z 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-11-03T15:55:38.7569830Z 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-11-03T15:55:38.7570960Z 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-11-03T15:55:38.7571990Z 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-11-03T15:55:38.7573070Z 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-11-03T15:55:38.7574120Z 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-11-03T15:55:38.7575220Z 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-11-03T15:55:38.7576310Z 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-11-03T15:55:38.7577390Z 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-11-03T15:55:38.7578490Z 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-11-03T15:55:38.7579590Z 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-11-03T15:55:38.7580640Z 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-11-03T15:55:38.7581790Z 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-11-03T15:55:38.7583100Z 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-11-03T15:55:38.7584060Z 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-11-03T15:55:38.7585120Z 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-11-03T15:55:38.7586190Z 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-11-03T15:55:38.7587390Z 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-11-03T15:55:38.7588470Z 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-11-03T15:55:38.7589530Z 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-11-03T15:55:38.7590650Z 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-11-03T15:55:38.7591750Z 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-11-03T15:55:38.7592850Z 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-11-03T15:55:38.7593910Z 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-11-03T15:55:38.7595110Z 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-11-03T15:55:38.7596220Z 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-11-03T15:55:38.7597330Z 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-11-03T15:55:38.7598440Z 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-11-03T15:55:38.7599510Z 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-11-03T15:55:38.7600580Z 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-11-03T15:55:38.7601600Z 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-11-03T15:55:38.7602750Z 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-11-03T15:55:38.7603790Z 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-11-03T15:55:38.7604850Z 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-11-03T15:55:38.7605900Z 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-11-03T15:55:38.7607090Z 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-11-03T15:55:38.7608130Z 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-11-03T15:55:38.7609290Z 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-11-03T15:55:38.7610300Z 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-11-03T15:55:38.7611510Z 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-11-03T15:55:38.7612810Z 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-11-03T15:55:38.7613930Z 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-11-03T15:55:38.7614990Z 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-11-03T15:55:38.7616160Z 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-11-03T15:55:38.7617250Z 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-11-03T15:55:38.7618280Z 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-11-03T15:55:38.7619330Z 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-11-03T15:55:38.7620420Z 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-11-03T15:55:38.7621630Z 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-11-03T15:55:38.7622810Z 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-11-03T15:55:38.7623850Z 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-11-03T15:55:38.7624980Z 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-11-03T15:55:38.7626110Z 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-11-03T15:55:38.7627390Z 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-11-03T15:55:38.7628520Z 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-11-03T15:55:38.7629590Z 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-11-03T15:55:38.7630650Z 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-11-03T15:55:38.7631910Z 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-11-03T15:55:38.7633030Z 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-11-03T15:55:38.7634090Z 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-11-03T15:55:38.7635140Z 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-11-03T15:55:38.7636260Z 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-11-03T15:55:38.7637330Z 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-11-03T15:55:38.7638440Z 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-11-03T15:55:38.7639540Z 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-11-03T15:55:38.7640640Z 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-11-03T15:55:38.7641770Z 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-11-03T15:55:38.7642890Z 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-11-03T15:55:38.7643930Z 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-11-03T15:55:38.7645000Z 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-11-03T15:55:38.7646130Z 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-11-03T15:55:38.7647240Z 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-11-03T15:55:38.7648360Z 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-11-03T15:55:38.7649370Z 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-11-03T15:55:38.7650480Z 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-11-03T15:55:38.7651570Z 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-11-03T15:55:38.7652640Z 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-11-03T15:55:38.7653700Z 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-11-03T15:55:38.7654880Z 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-11-03T15:55:38.7656020Z 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-11-03T15:55:38.7657180Z 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-11-03T15:55:38.7658260Z 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-11-03T15:55:38.7659330Z 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-11-03T15:55:38.7660570Z 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-11-03T15:55:38.7661630Z 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-11-03T15:55:38.7662810Z 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-11-03T15:55:38.7663900Z 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-11-03T15:55:38.7664960Z 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-11-03T15:55:38.7666090Z 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-11-03T15:55:38.7667130Z 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-11-03T15:55:38.7668270Z 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-11-03T15:55:38.7669400Z 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-11-03T15:55:38.7670530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.7671600Z 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-11-03T15:55:38.7672700Z 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-11-03T15:55:38.7673710Z 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-11-03T15:55:38.7674830Z 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-11-03T15:55:38.7675960Z 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-11-03T15:55:38.7677320Z 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-11-03T15:55:38.7678240Z 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-11-03T15:55:38.7679310Z 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-11-03T15:55:38.7680390Z 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-11-03T15:55:38.7681500Z 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-11-03T15:55:38.7682720Z 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-11-03T15:55:38.7683770Z 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-11-03T15:55:38.7684880Z 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-11-03T15:55:38.7685980Z 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-11-03T15:55:38.7687120Z 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-11-03T15:55:38.7688270Z 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-11-03T15:55:38.7689350Z 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-11-03T15:55:38.7690470Z 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-11-03T15:55:38.7691720Z 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-11-03T15:55:38.7692770Z 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-11-03T15:55:38.7694120Z 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-11-03T15:55:38.7695020Z 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-11-03T15:55:38.7696130Z 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-11-03T15:55:38.7697260Z 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-11-03T15:55:38.7698360Z 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-11-03T15:55:38.7699430Z 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-11-03T15:55:38.7704960Z 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-11-03T15:55:38.7705560Z 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-11-03T15:55:38.7705910Z 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-11-03T15:55:38.7706380Z 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-11-03T15:55:38.7706730Z 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-11-03T15:55:38.7707130Z 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-11-03T15:55:38.7707570Z 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-11-03T15:55:38.7708240Z 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-11-03T15:55:38.7709410Z 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-11-03T15:55:38.7710540Z 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-11-03T15:55:38.7711590Z 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-11-03T15:55:38.7712790Z 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-11-03T15:55:38.7714010Z 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-11-03T15:55:38.7714990Z 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-11-03T15:55:38.7716080Z 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-11-03T15:55:38.7717230Z 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-11-03T15:55:38.7718350Z 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-11-03T15:55:38.7719450Z 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-11-03T15:55:38.7720530Z 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-11-03T15:55:38.7721560Z 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-11-03T15:55:38.7722830Z 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-11-03T15:55:38.7723980Z 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-11-03T15:55:38.7724960Z 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-11-03T15:55:38.7726050Z 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-11-03T15:55:38.7727170Z 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-11-03T15:55:38.7728250Z 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-11-03T15:55:38.7729370Z 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-11-03T15:55:38.7730380Z 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-11-03T15:55:38.7731460Z 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-11-03T15:55:38.7732520Z 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-11-03T15:55:38.7733680Z 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-11-03T15:55:38.7734710Z 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-11-03T15:55:38.7735780Z 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-11-03T15:55:38.7737120Z 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-11-03T15:55:38.7738320Z 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-11-03T15:55:38.7739520Z 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-11-03T15:55:38.7740540Z 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-11-03T15:55:38.7741610Z 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-11-03T15:55:38.7742920Z 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-11-03T15:55:38.7744060Z 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-11-03T15:55:38.7745080Z 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-11-03T15:55:38.7746130Z 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-11-03T15:55:38.7747330Z 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-11-03T15:55:38.7748580Z 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-11-03T15:55:38.7749720Z 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-11-03T15:55:38.7750680Z 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-11-03T15:55:38.7751800Z 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-11-03T15:55:38.7752950Z 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-11-03T15:55:38.7754050Z 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-11-03T15:55:38.7755200Z 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-11-03T15:55:38.7756250Z 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-11-03T15:55:38.7757430Z 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-11-03T15:55:38.7758470Z 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-11-03T15:55:38.7759670Z 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-11-03T15:55:38.7760760Z 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-11-03T15:55:38.7761780Z 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-11-03T15:55:38.7763120Z 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-11-03T15:55:38.7764180Z 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-11-03T15:55:38.7765180Z 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-11-03T15:55:38.7766350Z 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-11-03T15:55:38.7767650Z 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-11-03T15:55:38.7768460Z 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-11-03T15:55:38.7769530Z 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-11-03T15:55:38.7770620Z 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-11-03T15:55:38.7771710Z 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-11-03T15:55:38.7772810Z 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-11-03T15:55:38.7773980Z 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-11-03T15:55:38.7775130Z 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-11-03T15:55:38.7776170Z 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-11-03T15:55:38.7777190Z 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-11-03T15:55:38.7778300Z 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-11-03T15:55:38.7779480Z 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-11-03T15:55:38.7780570Z 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-11-03T15:55:38.7781630Z 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-11-03T15:55:38.7782750Z 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-11-03T15:55:38.7783880Z 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-11-03T15:55:38.7785030Z 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-11-03T15:55:38.7786010Z 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-11-03T15:55:38.7787070Z 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-11-03T15:55:38.7788340Z 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-11-03T15:55:38.7789330Z 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-11-03T15:55:38.7790500Z 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-11-03T15:55:38.7791620Z 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-11-03T15:55:38.7792740Z 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-11-03T15:55:38.7793910Z 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-11-03T15:55:38.7794950Z 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-11-03T15:55:38.7796150Z 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-11-03T15:55:38.7797360Z 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-11-03T15:55:38.7798320Z 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-11-03T15:55:38.7799430Z 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-11-03T15:55:38.7800590Z 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-11-03T15:55:38.7801630Z 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-11-03T15:55:38.7802800Z 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-11-03T15:55:38.7804050Z 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-11-03T15:55:38.7805270Z 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-11-03T15:55:38.7806340Z 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-11-03T15:55:38.7807440Z 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-11-03T15:55:38.7808590Z 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-11-03T15:55:38.7809770Z 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-11-03T15:55:38.7810970Z 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-11-03T15:55:38.7812020Z 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-11-03T15:55:38.7813260Z 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-11-03T15:55:38.7814360Z 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-11-03T15:55:38.7815550Z 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-11-03T15:55:38.7816890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.7817770Z 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-11-03T15:55:38.7818830Z 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-11-03T15:55:38.7819980Z 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-11-03T15:55:38.7821270Z 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-11-03T15:55:38.7822340Z 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-11-03T15:55:38.7823410Z 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-11-03T15:55:38.7824620Z 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-11-03T15:55:38.7825750Z 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-11-03T15:55:38.7826790Z 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-11-03T15:55:38.7827860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.7829140Z 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-11-03T15:55:38.7830220Z 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-11-03T15:55:38.7831230Z 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-11-03T15:55:38.7832440Z 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-11-03T15:55:38.7833550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.7834660Z 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-11-03T15:55:38.7835740Z 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-11-03T15:55:38.7836810Z 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-11-03T15:55:38.7838150Z 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-11-03T15:55:38.7839000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.7840120Z 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-11-03T15:55:38.7841230Z 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-11-03T15:55:38.7842430Z 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-11-03T15:55:38.7843430Z 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-11-03T15:55:38.7844600Z 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-11-03T15:55:38.7845690Z 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-11-03T15:55:38.7846770Z 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-11-03T15:55:38.7847960Z 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-11-03T15:55:38.7848950Z 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-11-03T15:55:38.7850130Z 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-11-03T15:55:38.7851310Z 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-11-03T15:55:38.7852460Z 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-11-03T15:55:38.7853440Z 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-11-03T15:55:38.7854520Z 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-11-03T15:55:38.7855820Z 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-11-03T15:55:38.7856840Z 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-11-03T15:55:38.7858050Z 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-11-03T15:55:38.7859370Z 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-11-03T15:55:38.7860130Z 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-11-03T15:55:38.7861310Z 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-11-03T15:55:38.7862550Z 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-11-03T15:55:38.7863690Z 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-11-03T15:55:38.7864900Z 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-11-03T15:55:38.7865910Z 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-11-03T15:55:38.7867040Z 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-11-03T15:55:38.7868230Z 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-11-03T15:55:38.7869390Z 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-11-03T15:55:38.7870400Z 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-11-03T15:55:38.7871620Z 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-11-03T15:55:38.7872900Z 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-11-03T15:55:38.7874070Z 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-11-03T15:55:38.7875440Z 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-11-03T15:55:38.7876540Z 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-11-03T15:55:38.7877840Z 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-11-03T15:55:38.7879040Z 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-11-03T15:55:38.7880280Z 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-11-03T15:55:38.7881530Z 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-11-03T15:55:38.7883060Z 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-11-03T15:55:38.7884720Z 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-11-03T15:55:38.7885930Z 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-11-03T15:55:38.7887170Z 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-11-03T15:55:38.7888400Z 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-11-03T15:55:38.7889700Z 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-11-03T15:55:38.7890910Z 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-11-03T15:55:38.7892270Z 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-11-03T15:55:38.7893440Z 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-11-03T15:55:38.7894690Z 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-11-03T15:55:38.7895780Z 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-11-03T15:55:38.7896830Z 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-11-03T15:55:38.7897960Z 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-11-03T15:55:38.7899100Z 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-11-03T15:55:38.7900290Z 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-11-03T15:55:38.7901310Z 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-11-03T15:55:38.7902410Z 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-11-03T15:55:38.7903520Z 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-11-03T15:55:38.7904650Z 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-11-03T15:55:38.7905730Z 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-11-03T15:55:38.7906890Z 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-11-03T15:55:38.7908010Z 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-11-03T15:55:38.7909070Z 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-11-03T15:55:38.7910180Z 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-11-03T15:55:38.7911270Z 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-11-03T15:55:38.7912280Z 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-11-03T15:55:38.7913510Z 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-11-03T15:55:38.7914600Z 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-11-03T15:55:38.7915610Z 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-11-03T15:55:38.7916710Z 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-11-03T15:55:38.7917920Z 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-11-03T15:55:38.7919020Z 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-11-03T15:55:38.7920060Z 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-11-03T15:55:38.7921170Z 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-11-03T15:55:38.7922250Z 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-11-03T15:55:38.7923470Z 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-11-03T15:55:38.7924550Z 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-11-03T15:55:38.7925810Z 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-11-03T15:55:38.7927010Z 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-11-03T15:55:38.7927830Z 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-11-03T15:55:38.7928990Z 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-11-03T15:55:38.7930060Z 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-11-03T15:55:38.7931130Z 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-11-03T15:55:38.7932240Z 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-11-03T15:55:38.7933360Z 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-11-03T15:55:38.7934500Z 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-11-03T15:55:38.7935610Z 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-11-03T15:55:38.7936650Z 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-11-03T15:55:38.7937680Z 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-11-03T15:55:38.7938860Z 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-11-03T15:55:38.7940040Z 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-11-03T15:55:38.7941120Z 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-11-03T15:55:38.7942240Z 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-11-03T15:55:38.7943420Z 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-11-03T15:55:38.7944490Z 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-11-03T15:55:38.7945580Z 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-11-03T15:55:38.7946710Z 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-11-03T15:55:38.7948000Z 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-11-03T15:55:38.7949140Z 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-11-03T15:55:38.7950200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.7951230Z 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-11-03T15:55:38.7952310Z 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-11-03T15:55:38.7953530Z 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-11-03T15:55:38.7954750Z 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-11-03T15:55:38.7955980Z 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-11-03T15:55:38.7956930Z 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-11-03T15:55:38.7958080Z 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-11-03T15:55:38.7959120Z 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-11-03T15:55:38.7960220Z 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-11-03T15:55:38.7961310Z 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-11-03T15:55:38.7962500Z 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-11-03T15:55:38.7963600Z 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-11-03T15:55:38.7964670Z 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-11-03T15:55:38.7965890Z 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-11-03T15:55:38.7967140Z 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-11-03T15:55:38.7968350Z 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-11-03T15:55:38.7969500Z 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-11-03T15:55:38.7970470Z 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-11-03T15:55:38.7971550Z 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-11-03T15:55:38.7972590Z 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-11-03T15:55:38.7973740Z 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-11-03T15:55:38.7974900Z 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-11-03T15:55:38.7975880Z 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-11-03T15:55:38.7976990Z 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-11-03T15:55:38.7978150Z 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-11-03T15:55:38.7979320Z 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-11-03T15:55:38.7980420Z 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-11-03T15:55:38.7981610Z 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-11-03T15:55:38.7982570Z 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-11-03T15:55:38.7983660Z 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-11-03T15:55:38.7984750Z 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-11-03T15:55:38.7985870Z 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-11-03T15:55:38.7986940Z 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-11-03T15:55:38.7988000Z 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-11-03T15:55:38.7989200Z 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-11-03T15:55:38.7990550Z 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-11-03T15:55:38.7991510Z 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-11-03T15:55:38.7992620Z 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-11-03T15:55:38.7993650Z 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-11-03T15:55:38.7994750Z 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-11-03T15:55:38.7995980Z 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-11-03T15:55:38.7996990Z 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-11-03T15:55:38.7998230Z 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-11-03T15:55:38.7999220Z 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-11-03T15:55:38.8000380Z 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-11-03T15:55:38.8001550Z 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-11-03T15:55:38.8002710Z 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-11-03T15:55:38.8003750Z 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-11-03T15:55:38.8004860Z 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-11-03T15:55:38.8006010Z 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-11-03T15:55:38.8007140Z 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-11-03T15:55:38.8008370Z 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-11-03T15:55:38.8009450Z 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-11-03T15:55:38.8010530Z 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-11-03T15:55:38.8011720Z 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-11-03T15:55:38.8012810Z 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-11-03T15:55:38.8013850Z 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-11-03T15:55:38.8015060Z 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-11-03T15:55:38.8016230Z 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-11-03T15:55:38.8017360Z 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-11-03T15:55:38.8018560Z 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-11-03T15:55:38.8019640Z 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-11-03T15:55:38.8020700Z 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-11-03T15:55:38.8021840Z 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-11-03T15:55:38.8022950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.8024150Z 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-11-03T15:55:38.8025310Z 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-11-03T15:55:38.8026740Z 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-11-03T15:55:38.8027510Z 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-11-03T15:55:38.8028640Z 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-11-03T15:55:38.8029710Z 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-11-03T15:55:38.8030770Z 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-11-03T15:55:38.8031910Z 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-11-03T15:55:38.8033100Z 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-11-03T15:55:38.8034170Z 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-11-03T15:55:38.8035270Z 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-11-03T15:55:38.8036430Z 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-11-03T15:55:38.8037470Z 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-11-03T15:55:38.8038550Z 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-11-03T15:55:38.8039730Z 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-11-03T15:55:38.8040790Z 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-11-03T15:55:38.8041930Z 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-11-03T15:55:38.8042960Z 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-11-03T15:55:38.8044230Z 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-11-03T15:55:38.8045360Z 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-11-03T15:55:38.8046650Z 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-11-03T15:55:38.8047800Z 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-11-03T15:55:38.8049060Z 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-11-03T15:55:38.8050510Z 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-11-03T15:55:38.8051530Z 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-11-03T15:55:38.8052690Z 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-11-03T15:55:38.8053690Z 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-11-03T15:55:38.8054950Z 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-11-03T15:55:38.8056050Z 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-11-03T15:55:38.8057170Z 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-11-03T15:55:38.8058190Z 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-11-03T15:55:38.8059270Z 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-11-03T15:55:38.8060540Z 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-11-03T15:55:38.8061590Z 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-11-03T15:55:38.8062670Z 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-11-03T15:55:38.8063770Z 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-11-03T15:55:38.8064820Z 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-11-03T15:55:38.8066520Z 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-11-03T15:55:38.8067190Z 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-11-03T15:55:38.8068290Z 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-11-03T15:55:38.8069520Z 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-11-03T15:55:38.8070610Z 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-11-03T15:55:38.8071740Z 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-11-03T15:55:38.8072950Z 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-11-03T15:55:38.8074020Z 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-11-03T15:55:38.8075060Z 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-11-03T15:55:38.8076360Z 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-11-03T15:55:38.8077420Z 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-11-03T15:55:38.8078550Z 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-11-03T15:55:38.8079640Z 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-11-03T15:55:38.8080690Z 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-11-03T15:55:38.8081880Z 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-11-03T15:55:38.8082990Z 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-11-03T15:55:38.8084190Z 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-11-03T15:55:38.8085230Z 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-11-03T15:55:38.8086360Z 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-11-03T15:55:38.8087410Z 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-11-03T15:55:38.8088530Z 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-11-03T15:55:38.8089890Z 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-11-03T15:55:38.8090700Z 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-11-03T15:55:38.8091750Z 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-11-03T15:55:38.8092930Z 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-11-03T15:55:38.8094000Z 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-11-03T15:55:38.8095080Z 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-11-03T15:55:38.8096260Z 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-11-03T15:55:38.8097360Z 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-11-03T15:55:38.8098420Z 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-11-03T15:55:38.8099600Z 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-11-03T15:55:38.8100630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.8101790Z 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-11-03T15:55:38.8102930Z 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-11-03T15:55:38.8104050Z 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-11-03T15:55:38.8105120Z 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-11-03T15:55:38.8106220Z 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-11-03T15:55:38.8107400Z 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-11-03T15:55:38.8108670Z 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-11-03T15:55:38.8109670Z 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-11-03T15:55:38.8110750Z 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-11-03T15:55:38.8111930Z 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-11-03T15:55:38.8113040Z 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-11-03T15:55:38.8114140Z 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-11-03T15:55:38.8115270Z 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-11-03T15:55:38.8116480Z 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-11-03T15:55:38.8117610Z 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-11-03T15:55:38.8118740Z 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-11-03T15:55:38.8120050Z 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-11-03T15:55:38.8121080Z 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-11-03T15:55:38.8122350Z 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-11-03T15:55:38.8123320Z 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-11-03T15:55:38.8124410Z 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-11-03T15:55:38.8125520Z 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-11-03T15:55:38.8126610Z 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-11-03T15:55:38.8127740Z 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-11-03T15:55:38.8128830Z 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-11-03T15:55:38.8129970Z 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-11-03T15:55:38.8131020Z 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-11-03T15:55:38.8132090Z 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-11-03T15:55:38.8133270Z 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-11-03T15:55:38.8134480Z 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-11-03T15:55:38.8135480Z 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-11-03T15:55:38.8136490Z 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-11-03T15:55:38.8137670Z 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-11-03T15:55:38.8138850Z 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-11-03T15:55:38.8139940Z 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-11-03T15:55:38.8141050Z 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-11-03T15:55:38.8142220Z 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-11-03T15:55:38.8143350Z 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-11-03T15:55:38.8144580Z 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-11-03T15:55:38.8145570Z 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-11-03T15:55:38.8146730Z 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-11-03T15:55:38.8147810Z 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-11-03T15:55:38.8148900Z 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-11-03T15:55:38.8149980Z 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-11-03T15:55:38.8151200Z 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-11-03T15:55:38.8152260Z 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-11-03T15:55:38.8153510Z 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-11-03T15:55:38.8154520Z 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-11-03T15:55:38.8155700Z 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-11-03T15:55:38.8156880Z 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-11-03T15:55:38.8158010Z 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-11-03T15:55:38.8159070Z 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-11-03T15:55:38.8160130Z 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-11-03T15:55:38.8161240Z 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-11-03T15:55:38.8162290Z 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-11-03T15:55:38.8163460Z 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-11-03T15:55:38.8164630Z 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-11-03T15:55:38.8165720Z 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-11-03T15:55:38.8166810Z 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-11-03T15:55:38.8167980Z 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-11-03T15:55:38.8169080Z 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-11-03T15:55:38.8170180Z 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-11-03T15:55:38.8171210Z 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-11-03T15:55:38.8172440Z 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-11-03T15:55:38.8173550Z 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-11-03T15:55:38.8174700Z 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-11-03T15:55:38.8175810Z 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-11-03T15:55:38.8176900Z 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-11-03T15:55:38.8178050Z 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-11-03T15:55:38.8179180Z 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-11-03T15:55:38.8180300Z 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-11-03T15:55:38.8181310Z 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-11-03T15:55:38.8182440Z 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-11-03T15:55:38.8183600Z 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-11-03T15:55:38.8184750Z 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-11-03T15:55:38.8185820Z 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-11-03T15:55:38.8186940Z 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-11-03T15:55:38.8188030Z 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-11-03T15:55:38.8189160Z 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-11-03T15:55:38.8190330Z 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-11-03T15:55:38.8191360Z 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-11-03T15:55:38.8192530Z 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-11-03T15:55:38.8193780Z 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-11-03T15:55:38.8194800Z 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-11-03T15:55:38.8195940Z 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-11-03T15:55:38.8196990Z 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-11-03T15:55:38.8198240Z 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-11-03T15:55:38.8199380Z 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-11-03T15:55:38.8200630Z 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-11-03T15:55:38.8201630Z 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-11-03T15:55:38.8202780Z 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-11-03T15:55:38.8203920Z 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-11-03T15:55:38.8205140Z 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-11-03T15:55:38.8206190Z 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-11-03T15:55:38.8207290Z 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-11-03T15:55:38.8208550Z 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-11-03T15:55:38.8209550Z 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-11-03T15:55:38.8210740Z 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-11-03T15:55:38.8212000Z 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-11-03T15:55:38.8212880Z 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-11-03T15:55:38.8213960Z 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-11-03T15:55:38.8215080Z 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-11-03T15:55:38.8216130Z 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-11-03T15:55:38.8217170Z 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-11-03T15:55:38.8218290Z 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-11-03T15:55:38.8219480Z 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-11-03T15:55:38.8220520Z 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-11-03T15:55:38.8221570Z 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-11-03T15:55:38.8222680Z 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-11-03T15:55:38.8223850Z 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-11-03T15:55:38.8224850Z 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-11-03T15:55:38.8225920Z 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-11-03T15:55:38.8227010Z 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-11-03T15:55:38.8228080Z 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-11-03T15:55:38.8229230Z 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-11-03T15:55:38.8230270Z 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-11-03T15:55:38.8231410Z 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-11-03T15:55:38.8232620Z 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-11-03T15:55:38.8233880Z 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-11-03T15:55:38.8235090Z 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-11-03T15:55:38.8236200Z 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-11-03T15:55:38.8237400Z 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-11-03T15:55:38.8238840Z 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-11-03T15:55:38.8240100Z 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-11-03T15:55:38.8241220Z 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-11-03T15:55:38.8242570Z 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-11-03T15:55:38.8243790Z 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-11-03T15:55:38.8244980Z 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-11-03T15:55:38.8246260Z 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-11-03T15:55:38.8247350Z 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-11-03T15:55:38.8248520Z 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-11-03T15:55:38.8249850Z 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-11-03T15:55:38.8250940Z 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-11-03T15:55:38.8252150Z 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-11-03T15:55:38.8253270Z 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-11-03T15:55:38.8254390Z 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-11-03T15:55:38.8255640Z 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-11-03T15:55:38.8256780Z 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-11-03T15:55:38.8257820Z 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-11-03T15:55:38.8258960Z 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-11-03T15:55:38.8260160Z 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-11-03T15:55:38.8261210Z 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-11-03T15:55:38.8262280Z 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-11-03T15:55:38.8263500Z 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-11-03T15:55:38.8264590Z 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-11-03T15:55:38.8265710Z 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-11-03T15:55:38.8266770Z 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-11-03T15:55:38.8268010Z 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-11-03T15:55:38.8269040Z 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-11-03T15:55:38.8270150Z 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-11-03T15:55:38.8271310Z 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-11-03T15:55:38.8272390Z 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-11-03T15:55:38.8273530Z 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-11-03T15:55:38.8274740Z 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-11-03T15:55:38.8276600Z 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-11-03T15:55:38.8277820Z 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-11-03T15:55:38.8279060Z 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-11-03T15:55:38.8280250Z 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-11-03T15:55:38.8281400Z 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-11-03T15:55:38.8282700Z 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-11-03T15:55:38.8283810Z 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-11-03T15:55:38.8284910Z 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-11-03T15:55:38.8286000Z 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-11-03T15:55:38.8287090Z 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-11-03T15:55:38.8288210Z 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-11-03T15:55:38.8289350Z 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-11-03T15:55:38.8290640Z 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-11-03T15:55:38.8291720Z 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-11-03T15:55:38.8292970Z 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-11-03T15:55:38.8293970Z 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-11-03T15:55:38.8295140Z 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-11-03T15:55:38.8296190Z 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-11-03T15:55:38.8297280Z 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-11-03T15:55:38.8302060Z 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-11-03T15:55:38.8302820Z 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-11-03T15:55:38.8303180Z 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-11-03T15:55:38.8303560Z 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-11-03T15:55:38.8303890Z 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-11-03T15:55:38.8304320Z 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-11-03T15:55:38.8305180Z 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-11-03T15:55:38.8306320Z 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-11-03T15:55:38.8307480Z 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-11-03T15:55:38.8308600Z 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-11-03T15:55:38.8309640Z 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-11-03T15:55:38.8310660Z 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-11-03T15:55:38.8311810Z 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-11-03T15:55:38.8313030Z 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-11-03T15:55:38.8314080Z 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-11-03T15:55:38.8315140Z 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-11-03T15:55:38.8316180Z 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-11-03T15:55:38.8317410Z 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-11-03T15:55:38.8318650Z 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-11-03T15:55:38.8319640Z 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-11-03T15:55:38.8320700Z 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-11-03T15:55:38.8321900Z 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-11-03T15:55:38.8322980Z 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-11-03T15:55:38.8324160Z 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-11-03T15:55:38.8325240Z 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-11-03T15:55:38.8326290Z 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-11-03T15:55:38.8327400Z 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-11-03T15:55:38.8328580Z 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-11-03T15:55:38.8329620Z 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-11-03T15:55:38.8330860Z 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-11-03T15:55:38.8331890Z 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-11-03T15:55:38.8333100Z 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-11-03T15:55:38.8334210Z 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-11-03T15:55:38.8335360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm_v2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.8336470Z 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-11-03T15:55:38.8337650Z 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-11-03T15:55:38.8338760Z 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-11-03T15:55:38.8339880Z 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-11-03T15:55:38.8341030Z 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-11-03T15:55:38.8342160Z 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-11-03T15:55:38.8343320Z 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-11-03T15:55:38.8344510Z 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-11-03T15:55:38.8345590Z 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-11-03T15:55:38.8346700Z 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-11-03T15:55:38.8347900Z 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-11-03T15:55:38.8349080Z 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-11-03T15:55:38.8350120Z 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-11-03T15:55:38.8351230Z 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-11-03T15:55:38.8352320Z 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-11-03T15:55:38.8353430Z 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-11-03T15:55:38.8354540Z 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-11-03T15:55:38.8355650Z 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-11-03T15:55:38.8356730Z 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-11-03T15:55:38.8357810Z 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-11-03T15:55:38.8359100Z 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-11-03T15:55:38.8360160Z 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-11-03T15:55:38.8361240Z 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-11-03T15:55:38.8362300Z 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-11-03T15:55:38.8363570Z 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-11-03T15:55:38.8364510Z 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-11-03T15:55:38.8365600Z 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-11-03T15:55:38.8366760Z 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-11-03T15:55:38.8367780Z 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-11-03T15:55:38.8368930Z 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-11-03T15:55:38.8370180Z 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-11-03T15:55:38.8371290Z 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-11-03T15:55:38.8372350Z 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-11-03T15:55:38.8373530Z 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-11-03T15:55:38.8374650Z 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-11-03T15:55:38.8375810Z 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-11-03T15:55:38.8376890Z 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-11-03T15:55:38.8377980Z 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-11-03T15:55:38.8379050Z 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-11-03T15:55:38.8380170Z 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-11-03T15:55:38.8381170Z 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-11-03T15:55:38.8382440Z 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-11-03T15:55:38.8383510Z 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-11-03T15:55:38.8384600Z 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-11-03T15:55:38.8385830Z 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-11-03T15:55:38.8386780Z 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-11-03T15:55:38.8387930Z 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-11-03T15:55:38.8389010Z 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-11-03T15:55:38.8390090Z 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-11-03T15:55:38.8391170Z 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-11-03T15:55:38.8392280Z 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-11-03T15:55:38.8393460Z 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-11-03T15:55:38.8394660Z 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-11-03T15:55:38.8395890Z 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-11-03T15:55:38.8396940Z 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-11-03T15:55:38.8397930Z 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-11-03T15:55:38.8399060Z 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-11-03T15:55:38.8400160Z 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-11-03T15:55:38.8401320Z 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-11-03T15:55:38.8402510Z 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-11-03T15:55:38.8403560Z 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-11-03T15:55:38.8404690Z 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-11-03T15:55:38.8405770Z 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-11-03T15:55:38.8407020Z 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-11-03T15:55:38.8408050Z 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-11-03T15:55:38.8409240Z 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-11-03T15:55:38.8410400Z 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-11-03T15:55:38.8411470Z 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-11-03T15:55:38.8412580Z 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-11-03T15:55:38.8413660Z 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-11-03T15:55:38.8414830Z 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-11-03T15:55:38.8416020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_is_contiguous_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.8417260Z 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-11-03T15:55:38.8418240Z 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-11-03T15:55:38.8419430Z 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-11-03T15:55:38.8420540Z 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-11-03T15:55:38.8421660Z 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-11-03T15:55:38.8422890Z 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-11-03T15:55:38.8423920Z 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-11-03T15:55:38.8424970Z 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-11-03T15:55:38.8426050Z 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-11-03T15:55:38.8427130Z 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-11-03T15:55:38.8428280Z 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-11-03T15:55:38.8429320Z 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-11-03T15:55:38.8430360Z 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-11-03T15:55:38.8431490Z 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-11-03T15:55:38.8432740Z 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-11-03T15:55:38.8433680Z 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-11-03T15:55:38.8434870Z 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-11-03T15:55:38.8435940Z 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-11-03T15:55:38.8437050Z 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-11-03T15:55:38.8438150Z 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-11-03T15:55:38.8439190Z 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-11-03T15:55:38.8440370Z 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-11-03T15:55:38.8441460Z 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-11-03T15:55:38.8442650Z 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-11-03T15:55:38.8443730Z 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-11-03T15:55:38.8444950Z 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-11-03T15:55:38.8445950Z 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-11-03T15:55:38.8447040Z 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-11-03T15:55:38.8448230Z 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-11-03T15:55:38.8449240Z 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-11-03T15:55:38.8450360Z 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-11-03T15:55:38.8451440Z 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-11-03T15:55:38.8452730Z 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-11-03T15:55:38.8453710Z 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-11-03T15:55:38.8454870Z 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-11-03T15:55:38.8455900Z 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-11-03T15:55:38.8457140Z 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-11-03T15:55:38.8458190Z 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-11-03T15:55:38.8459310Z 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-11-03T15:55:38.8460410Z 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-11-03T15:55:38.8461600Z 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-11-03T15:55:38.8462750Z 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-11-03T15:55:38.8463810Z 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-11-03T15:55:38.8464860Z 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-11-03T15:55:38.8465970Z 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-11-03T15:55:38.8467190Z 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-11-03T15:55:38.8468220Z 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-11-03T15:55:38.8469360Z 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-11-03T15:55:38.8470520Z 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-11-03T15:55:38.8471570Z 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-11-03T15:55:38.8472890Z 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-11-03T15:55:38.8473890Z 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-11-03T15:55:38.8475030Z 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-11-03T15:55:38.8476110Z 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-11-03T15:55:38.8477310Z 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-11-03T15:55:38.8478540Z 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-11-03T15:55:38.8479580Z 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-11-03T15:55:38.8480800Z 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-11-03T15:55:38.8482050Z 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-11-03T15:55:38.8483030Z 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-11-03T15:55:38.8484070Z 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-11-03T15:55:38.8485240Z 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-11-03T15:55:38.8486320Z 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-11-03T15:55:38.8487390Z 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-11-03T15:55:38.8488490Z 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-11-03T15:55:38.8489580Z 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-11-03T15:55:38.8490740Z 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-11-03T15:55:38.8492100Z 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-11-03T15:55:38.8492990Z 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-11-03T15:55:38.8494080Z 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-11-03T15:55:38.8495490Z 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-11-03T15:55:38.8496600Z 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-11-03T15:55:38.8497810Z 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-11-03T15:55:38.8498840Z 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-11-03T15:55:38.8500000Z 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-11-03T15:55:38.8501090Z 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-11-03T15:55:38.8502150Z 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-11-03T15:55:38.8503420Z 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-11-03T15:55:38.8504490Z 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-11-03T15:55:38.8505590Z 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-11-03T15:55:38.8506710Z 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-11-03T15:55:38.8507810Z 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-11-03T15:55:38.8508890Z 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-11-03T15:55:38.8510100Z 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-11-03T15:55:38.8511160Z 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-11-03T15:55:38.8512250Z 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-11-03T15:55:38.8513370Z 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-11-03T15:55:38.8514480Z 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-11-03T15:55:38.8515550Z 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-11-03T15:55:38.8516560Z 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-11-03T15:55:38.8517720Z 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-11-03T15:55:38.8518820Z 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-11-03T15:55:38.8520010Z 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-11-03T15:55:38.8521000Z 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-11-03T15:55:38.8522100Z 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-11-03T15:55:38.8523220Z 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-11-03T15:55:38.8524330Z 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-11-03T15:55:38.8525430Z 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-11-03T15:55:38.8526600Z 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-11-03T15:55:38.8527780Z 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-11-03T15:55:38.8528770Z 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-11-03T15:55:38.8529870Z 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-11-03T15:55:38.8531160Z 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-11-03T15:55:38.8532180Z 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-11-03T15:55:38.8533410Z 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-11-03T15:55:38.8534470Z 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-11-03T15:55:38.8535590Z 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-11-03T15:55:38.8536730Z 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-11-03T15:55:38.8537980Z 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-11-03T15:55:38.8539020Z 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-11-03T15:55:38.8540150Z 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-11-03T15:55:38.8541220Z 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-11-03T15:55:38.8542380Z 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-11-03T15:55:38.8543510Z 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-11-03T15:55:38.8544650Z 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-11-03T15:55:38.8545780Z 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-11-03T15:55:38.8546860Z 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-11-03T15:55:38.8548110Z 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-11-03T15:55:38.8549240Z 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-11-03T15:55:38.8550290Z 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-11-03T15:55:38.8551460Z 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-11-03T15:55:38.8552560Z 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-11-03T15:55:38.8553670Z 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-11-03T15:55:38.8554870Z 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-11-03T15:55:38.8555870Z 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-11-03T15:55:38.8556990Z 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-11-03T15:55:38.8558100Z 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-11-03T15:55:38.8559300Z 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-11-03T15:55:38.8560470Z 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-11-03T15:55:38.8561540Z 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-11-03T15:55:38.8562710Z 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-11-03T15:55:38.8563730Z 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-11-03T15:55:38.8564800Z 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-11-03T15:55:38.8565870Z 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-11-03T15:55:38.8567000Z 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-11-03T15:55:38.8568140Z 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-11-03T15:55:38.8569190Z 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-11-03T15:55:38.8570270Z 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-11-03T15:55:38.8571290Z 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-11-03T15:55:38.8572460Z 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-11-03T15:55:38.8573540Z 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-11-03T15:55:38.8574600Z 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-11-03T15:55:38.8575680Z 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-11-03T15:55:38.8576800Z 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-11-03T15:55:38.8578020Z 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-11-03T15:55:38.8579090Z 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-11-03T15:55:38.8580160Z 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-11-03T15:55:38.8581290Z 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-11-03T15:55:38.8582370Z 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-11-03T15:55:38.8583430Z 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-11-03T15:55:38.8584660Z 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-11-03T15:55:38.8585640Z 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-11-03T15:55:38.8586910Z 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-11-03T15:55:38.8588060Z 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-11-03T15:55:38.8589060Z 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-11-03T15:55:38.8590120Z 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-11-03T15:55:38.8591180Z 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-11-03T15:55:38.8592390Z 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-11-03T15:55:38.8593500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.8594610Z 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-11-03T15:55:38.8595630Z 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-11-03T15:55:38.8596730Z 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-11-03T15:55:38.8597880Z 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-11-03T15:55:38.8598980Z 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-11-03T15:55:38.8600030Z 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-11-03T15:55:38.8601090Z 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-11-03T15:55:38.8602440Z 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-11-03T15:55:38.8603470Z 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-11-03T15:55:38.8604480Z 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-11-03T15:55:38.8610020Z 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-11-03T15:55:38.8611000Z 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-11-03T15:55:38.8612200Z 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-11-03T15:55:38.8613260Z 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-11-03T15:55:38.8614480Z 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-11-03T15:55:38.8615620Z 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-11-03T15:55:38.8616790Z 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-11-03T15:55:38.8618000Z 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-11-03T15:55:38.8619150Z 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-11-03T15:55:38.8620340Z 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-11-03T15:55:38.8621730Z 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-11-03T15:55:38.8623270Z 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-11-03T15:55:38.8624110Z 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-11-03T15:55:38.8625470Z 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-11-03T15:55:38.8626750Z 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-11-03T15:55:38.8627940Z 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-11-03T15:55:38.8629300Z 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-11-03T15:55:38.8630900Z 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-11-03T15:55:38.8631700Z 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-11-03T15:55:38.8632930Z 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-11-03T15:55:38.8633990Z 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-11-03T15:55:38.8635160Z 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-11-03T15:55:38.8636250Z 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-11-03T15:55:38.8637340Z 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-11-03T15:55:38.8638460Z 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-11-03T15:55:38.8639580Z 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-11-03T15:55:38.8640960Z 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-11-03T15:55:38.8642420Z 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-11-03T15:55:38.8643180Z 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-11-03T15:55:38.8644250Z 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-11-03T15:55:38.8645390Z 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-11-03T15:55:38.8646590Z 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-11-03T15:55:38.8647580Z 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-11-03T15:55:38.8648730Z 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-11-03T15:55:38.8649910Z 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-11-03T15:55:38.8650990Z 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-11-03T15:55:38.8652080Z 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-11-03T15:55:38.8653270Z 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-11-03T15:55:38.8654390Z 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-11-03T15:55:38.8655460Z 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-11-03T15:55:38.8656550Z 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-11-03T15:55:38.8657570Z 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-11-03T15:55:38.8658830Z 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-11-03T15:55:38.8659980Z 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-11-03T15:55:38.8661040Z 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-11-03T15:55:38.8662040Z 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-11-03T15:55:38.8666950Z 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-11-03T15:55:38.8667920Z 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-11-03T15:55:38.8669040Z 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-11-03T15:55:38.8670190Z 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-11-03T15:55:38.8671380Z 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-11-03T15:55:38.8672510Z 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-11-03T15:55:38.8673550Z 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-11-03T15:55:38.8674720Z 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-11-03T15:55:38.8675760Z 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-11-03T15:55:38.8676830Z 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-11-03T15:55:38.8677970Z 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-11-03T15:55:38.8679060Z 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-11-03T15:55:38.8680260Z 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-11-03T15:55:38.8681320Z 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-11-03T15:55:38.8682510Z 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-11-03T15:55:38.8683620Z 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-11-03T15:55:38.8684740Z 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-11-03T15:55:38.8685910Z 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-11-03T15:55:38.8686950Z 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-11-03T15:55:38.8688050Z 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-11-03T15:55:38.8689160Z 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-11-03T15:55:38.8690260Z 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-11-03T15:55:38.8691350Z 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-11-03T15:55:38.8692410Z 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-11-03T15:55:38.8693480Z 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-11-03T15:55:38.8694630Z 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-11-03T15:55:38.8695730Z 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-11-03T15:55:38.8696890Z 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-11-03T15:55:38.8698150Z 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-11-03T15:55:38.8699170Z 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-11-03T15:55:38.8700280Z 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-11-03T15:55:38.8701440Z 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-11-03T15:55:38.8702530Z 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-11-03T15:55:38.8703600Z 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-11-03T15:55:38.8704720Z 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-11-03T15:55:38.8705910Z 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-11-03T15:55:38.8707060Z 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-11-03T15:55:38.8708020Z 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-11-03T15:55:38.8709090Z 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-11-03T15:55:38.8710240Z 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-11-03T15:55:38.8711330Z 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-11-03T15:55:38.8712520Z 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-11-03T15:55:38.8713540Z 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-11-03T15:55:38.8714750Z 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-11-03T15:55:38.8715900Z 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-11-03T15:55:38.8717000Z 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-11-03T15:55:38.8717990Z 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-11-03T15:55:38.8719130Z 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-11-03T15:55:38.8720350Z 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-11-03T15:55:38.8721500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.8722550Z 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-11-03T15:55:38.8723630Z 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-11-03T15:55:38.8724920Z 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-11-03T15:55:38.8725950Z 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-11-03T15:55:38.8727130Z 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-11-03T15:55:38.8728200Z 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-11-03T15:55:38.8729630Z 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-11-03T15:55:38.8730380Z 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-11-03T15:55:38.8731510Z 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-11-03T15:55:38.8732580Z 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-11-03T15:55:38.8733760Z 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-11-03T15:55:38.8734880Z 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-11-03T15:55:38.8735950Z 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-11-03T15:55:38.8737140Z 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-11-03T15:55:38.8738190Z 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-11-03T15:55:38.8739550Z 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-11-03T15:55:38.8740330Z 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-11-03T15:55:38.8741460Z 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-11-03T15:55:38.8742580Z 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-11-03T15:55:38.8743780Z 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-11-03T15:55:38.8744830Z 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-11-03T15:55:38.8745910Z 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-11-03T15:55:38.8747160Z 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-11-03T15:55:38.8748310Z 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-11-03T15:55:38.8749540Z 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-11-03T15:55:38.8750490Z 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-11-03T15:55:38.8751630Z 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-11-03T15:55:38.8752750Z 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-11-03T15:55:38.8753840Z 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-11-03T15:55:38.8755170Z 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-11-03T15:55:38.8756190Z 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-11-03T15:55:38.8757580Z 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-11-03T15:55:38.8758740Z 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-11-03T15:55:38.8759750Z 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-11-03T15:55:38.8760860Z 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-11-03T15:55:38.8761950Z 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-11-03T15:55:38.8763000Z 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-11-03T15:55:38.8764070Z 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-11-03T15:55:38.8765220Z 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-11-03T15:55:38.8766350Z 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-11-03T15:55:38.8767440Z 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-11-03T15:55:38.8768770Z 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-11-03T15:55:38.8769580Z 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-11-03T15:55:38.8770750Z 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-11-03T15:55:38.8771870Z 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-11-03T15:55:38.8773130Z 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-11-03T15:55:38.8774010Z 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-11-03T15:55:38.8775270Z 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-11-03T15:55:38.8776270Z 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-11-03T15:55:38.8777510Z 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-11-03T15:55:38.8778520Z 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-11-03T15:55:38.8779620Z 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-11-03T15:55:38.8780780Z 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-11-03T15:55:38.8781910Z 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-11-03T15:55:38.8782970Z 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-11-03T15:55:38.8783990Z 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-11-03T15:55:38.8785160Z 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-11-03T15:55:38.8786260Z 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-11-03T15:55:38.8787370Z 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-11-03T15:55:38.8788410Z 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-11-03T15:55:38.8789510Z 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-11-03T15:55:38.8790650Z 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-11-03T15:55:38.8791780Z 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-11-03T15:55:38.8792870Z 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-11-03T15:55:38.8794010Z 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-11-03T15:55:38.8795010Z 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-11-03T15:55:38.8796210Z 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-11-03T15:55:38.8797220Z 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-11-03T15:55:38.8798370Z 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-11-03T15:55:38.8799560Z 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-11-03T15:55:38.8800750Z 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-11-03T15:55:38.8801840Z 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-11-03T15:55:38.8802990Z 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-11-03T15:55:38.8805710Z 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-11-03T15:55:38.8806730Z 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-11-03T15:55:38.8807950Z 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-11-03T15:55:38.8809160Z 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-11-03T15:55:38.8810290Z 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-11-03T15:55:38.8811380Z 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-11-03T15:55:38.8812490Z 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-11-03T15:55:38.8814130Z 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-11-03T15:55:38.8815400Z 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-11-03T15:55:38.8816650Z 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-11-03T15:55:38.8817800Z 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-11-03T15:55:38.8818890Z 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-11-03T15:55:38.8819990Z 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-11-03T15:55:38.8821140Z 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-11-03T15:55:38.8822710Z 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-11-03T15:55:38.8823830Z 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-11-03T15:55:38.8824890Z 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-11-03T15:55:38.8825990Z 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-11-03T15:55:38.8827120Z 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-11-03T15:55:38.8828290Z 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-11-03T15:55:38.8829410Z 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-11-03T15:55:38.8830490Z 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-11-03T15:55:38.8831560Z 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-11-03T15:55:38.8832700Z 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-11-03T15:55:38.8833750Z 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-11-03T15:55:38.8834830Z 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-11-03T15:55:38.8835960Z 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-11-03T15:55:38.8837070Z 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-11-03T15:55:38.8838250Z 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-11-03T15:55:38.8839600Z 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-11-03T15:55:38.8840610Z 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-11-03T15:55:38.8841660Z 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-11-03T15:55:38.8842860Z 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-11-03T15:55:38.8843910Z 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-11-03T15:55:38.8845010Z 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-11-03T15:55:38.8846220Z 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-11-03T15:55:38.8847360Z 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-11-03T15:55:38.8848380Z 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-11-03T15:55:38.8849460Z 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-11-03T15:55:38.8850630Z 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-11-03T15:55:38.8851680Z 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-11-03T15:55:38.8852790Z 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-11-03T15:55:38.8853950Z 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-11-03T15:55:38.8855200Z 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-11-03T15:55:38.8856450Z 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-11-03T15:55:38.8857610Z 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-11-03T15:55:38.8858760Z 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-11-03T15:55:38.8859850Z 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-11-03T15:55:38.8860910Z 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-11-03T15:55:38.8861940Z 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-11-03T15:55:38.8863050Z 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-11-03T15:55:38.8864210Z 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-11-03T15:55:38.8865270Z 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-11-03T15:55:38.8866320Z 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-11-03T15:55:38.8867430Z 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-11-03T15:55:38.8868580Z 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-11-03T15:55:38.8869670Z 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-11-03T15:55:38.8870750Z 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-11-03T15:55:38.8871870Z 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-11-03T15:55:38.8873070Z 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-11-03T15:55:38.8874190Z 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-11-03T15:55:38.8875380Z 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-11-03T15:55:38.8876480Z 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-11-03T15:55:38.8877560Z 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-11-03T15:55:38.8878680Z 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-11-03T15:55:38.8879800Z 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-11-03T15:55:38.8881070Z 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-11-03T15:55:38.8882120Z 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-11-03T15:55:38.8883240Z 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-11-03T15:55:38.8884260Z 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-11-03T15:55:38.8885410Z 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-11-03T15:55:38.8886530Z 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-11-03T15:55:38.8887700Z 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-11-03T15:55:38.8888670Z 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-11-03T15:55:38.8889820Z 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-11-03T15:55:38.8891010Z 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-11-03T15:55:38.8892020Z 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-11-03T15:55:38.8893060Z 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-11-03T15:55:38.8894190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.8895270Z 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-11-03T15:55:38.8896460Z 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-11-03T15:55:38.8897580Z 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-11-03T15:55:38.8898550Z 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-11-03T15:55:38.8899680Z 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-11-03T15:55:38.8900750Z 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-11-03T15:55:38.8901750Z 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-11-03T15:55:38.8906560Z 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-11-03T15:55:38.8907130Z 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-11-03T15:55:38.8907520Z 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-11-03T15:55:38.8907980Z 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-11-03T15:55:38.8908360Z 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-11-03T15:55:38.8908780Z 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-11-03T15:55:38.8909650Z 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-11-03T15:55:38.8910970Z 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-11-03T15:55:38.8911910Z 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-11-03T15:55:38.8913060Z 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-11-03T15:55:38.8914060Z 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-11-03T15:55:38.8915200Z 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-11-03T15:55:38.8916380Z 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-11-03T15:55:38.8917460Z 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-11-03T15:55:38.8918610Z 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-11-03T15:55:38.8919640Z 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-11-03T15:55:38.8920740Z 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-11-03T15:55:38.8921830Z 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-11-03T15:55:38.8922920Z 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-11-03T15:55:38.8924110Z 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-11-03T15:55:38.8925140Z 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-11-03T15:55:38.8926340Z 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-11-03T15:55:38.8927390Z 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-11-03T15:55:38.8928590Z 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-11-03T15:55:38.8929580Z 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-11-03T15:55:38.8930710Z 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-11-03T15:55:38.8931930Z 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-11-03T15:55:38.8933100Z 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-11-03T15:55:38.8934080Z 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-11-03T15:55:38.8935180Z 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-11-03T15:55:38.8936330Z 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-11-03T15:55:38.8937430Z 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-11-03T15:55:38.8938560Z 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-11-03T15:55:38.8939670Z 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-11-03T15:55:38.8940750Z 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-11-03T15:55:38.8941830Z 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-11-03T15:55:38.8942990Z 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-11-03T15:55:38.8944010Z 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-11-03T15:55:38.8945110Z 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-11-03T15:55:38.8946340Z 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-11-03T15:55:38.8947590Z 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-11-03T15:55:38.8948660Z 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-11-03T15:55:38.8949840Z 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-11-03T15:55:38.8950850Z 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-11-03T15:55:38.8952020Z 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-11-03T15:55:38.8953120Z 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-11-03T15:55:38.8954150Z 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-11-03T15:55:38.8955240Z 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-11-03T15:55:38.8956500Z 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-11-03T15:55:38.8957570Z 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-11-03T15:55:38.8958740Z 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-11-03T15:55:38.8959860Z 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-11-03T15:55:38.8960870Z 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-11-03T15:55:38.8961960Z 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-11-03T15:55:38.8963060Z 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-11-03T15:55:38.8964070Z 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-11-03T15:55:38.8965240Z 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-11-03T15:55:38.8966290Z 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-11-03T15:55:38.8967460Z 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-11-03T15:55:38.8968540Z 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-11-03T15:55:38.8969580Z 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-11-03T15:55:38.8970720Z 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-11-03T15:55:38.8971840Z 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-11-03T15:55:38.8974260Z 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-11-03T15:55:38.8974850Z 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-11-03T15:55:38.8976080Z 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-11-03T15:55:38.8977380Z 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-11-03T15:55:38.8978590Z 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-11-03T15:55:38.8979830Z 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-11-03T15:55:38.8981090Z 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-11-03T15:55:38.8982340Z 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-11-03T15:55:38.8983660Z 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-11-03T15:55:38.8984820Z 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-11-03T15:55:38.8985890Z 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-11-03T15:55:38.8987000Z 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-11-03T15:55:38.8988210Z 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-11-03T15:55:38.8989310Z 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-11-03T15:55:38.8990430Z 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-11-03T15:55:38.8991530Z 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-11-03T15:55:38.8992590Z 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-11-03T15:55:38.8993680Z 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-11-03T15:55:38.8994700Z 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-11-03T15:55:38.8995930Z 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-11-03T15:55:38.8996950Z 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-11-03T15:55:38.8998200Z 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-11-03T15:55:38.8999310Z 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-11-03T15:55:38.9000420Z 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-11-03T15:55:38.9001460Z 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-11-03T15:55:38.9002590Z 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-11-03T15:55:38.9003660Z 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-11-03T15:55:38.9004740Z 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-11-03T15:55:38.9005880Z 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-11-03T15:55:38.9007030Z 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-11-03T15:55:38.9008250Z 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-11-03T15:55:38.9009390Z 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-11-03T15:55:38.9010450Z 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-11-03T15:55:38.9011610Z 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-11-03T15:55:38.9012680Z 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-11-03T15:55:38.9013900Z 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-11-03T15:55:38.9015020Z 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-11-03T15:55:38.9016300Z 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-11-03T15:55:38.9017460Z 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-11-03T15:55:38.9018460Z 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-11-03T15:55:38.9019650Z 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-11-03T15:55:38.9020720Z 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-11-03T15:55:38.9021910Z 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-11-03T15:55:38.9023040Z 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-11-03T15:55:38.9024080Z 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-11-03T15:55:38.9025280Z 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-11-03T15:55:38.9026370Z 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-11-03T15:55:38.9027530Z 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-11-03T15:55:38.9028490Z 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-11-03T15:55:38.9029540Z 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-11-03T15:55:38.9030650Z 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-11-03T15:55:38.9032670Z 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-11-03T15:55:38.9033790Z 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-11-03T15:55:38.9035160Z 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-11-03T15:55:38.9036390Z 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-11-03T15:55:38.9037480Z 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-11-03T15:55:38.9038710Z 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-11-03T15:55:38.9039760Z 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-11-03T15:55:38.9041060Z 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-11-03T15:55:38.9042280Z 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-11-03T15:55:38.9043360Z 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-11-03T15:55:38.9044480Z 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-11-03T15:55:38.9045680Z 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-11-03T15:55:38.9046840Z 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-11-03T15:55:38.9048120Z 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-11-03T15:55:38.9049330Z 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-11-03T15:55:38.9050380Z 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-11-03T15:55:38.9051550Z 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-11-03T15:55:38.9052780Z 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-11-03T15:55:38.9053840Z 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-11-03T15:55:38.9054980Z 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-11-03T15:55:38.9056100Z 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-11-03T15:55:38.9057230Z 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-11-03T15:55:38.9058360Z 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-11-03T15:55:38.9059570Z 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-11-03T15:55:38.9060820Z 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-11-03T15:55:38.9061720Z 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-11-03T15:55:38.9063120Z 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-11-03T15:55:38.9064530Z 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-11-03T15:55:38.9065600Z 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-11-03T15:55:38.9066680Z 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-11-03T15:55:38.9068150Z 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-11-03T15:55:38.9069230Z 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-11-03T15:55:38.9070450Z 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-11-03T15:55:38.9071660Z 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-11-03T15:55:38.9073020Z 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-11-03T15:55:38.9074040Z 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-11-03T15:55:38.9075370Z 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-11-03T15:55:38.9076360Z 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-11-03T15:55:38.9077490Z 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-11-03T15:55:38.9078640Z 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-11-03T15:55:38.9079860Z 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-11-03T15:55:38.9080860Z 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-11-03T15:55:38.9081870Z 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-11-03T15:55:38.9082980Z 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-11-03T15:55:38.9084060Z 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-11-03T15:55:38.9085130Z 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-11-03T15:55:38.9086250Z 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-11-03T15:55:38.9087470Z 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-11-03T15:55:38.9088500Z 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-11-03T15:55:38.9089610Z 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-11-03T15:55:38.9090750Z 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-11-03T15:55:38.9091980Z 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-11-03T15:55:38.9092980Z 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-11-03T15:55:38.9094060Z 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-11-03T15:55:38.9095130Z 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-11-03T15:55:38.9096230Z 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-11-03T15:55:38.9097360Z 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-11-03T15:55:38.9098580Z 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-11-03T15:55:38.9099560Z 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-11-03T15:55:38.9100760Z 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-11-03T15:55:38.9101780Z 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-11-03T15:55:38.9102900Z 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-11-03T15:55:38.9104000Z 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-11-03T15:55:38.9105190Z 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-11-03T15:55:38.9106280Z 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-11-03T15:55:38.9107360Z 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-11-03T15:55:38.9108480Z 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-11-03T15:55:38.9109580Z 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-11-03T15:55:38.9110750Z 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-11-03T15:55:38.9111800Z 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-11-03T15:55:38.9113030Z 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-11-03T15:55:38.9114000Z 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-11-03T15:55:38.9115210Z 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-11-03T15:55:38.9116200Z 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-11-03T15:55:38.9117370Z 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-11-03T15:55:38.9118490Z 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-11-03T15:55:38.9119460Z 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-11-03T15:55:38.9120600Z 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-11-03T15:55:38.9121740Z 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-11-03T15:55:38.9122820Z 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-11-03T15:55:38.9123920Z 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-11-03T15:55:38.9124990Z 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-11-03T15:55:38.9126070Z 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-11-03T15:55:38.9127250Z 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-11-03T15:55:38.9128420Z 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-11-03T15:55:38.9129460Z 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-11-03T15:55:38.9130500Z 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-11-03T15:55:38.9131690Z 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-11-03T15:55:38.9132780Z 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-11-03T15:55:38.9133900Z 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-11-03T15:55:38.9134950Z 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-11-03T15:55:38.9136000Z 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-11-03T15:55:38.9137220Z 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-11-03T15:55:38.9138410Z 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-11-03T15:55:38.9139530Z 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-11-03T15:55:38.9140590Z 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-11-03T15:55:38.9141780Z 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-11-03T15:55:38.9142910Z 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-11-03T15:55:38.9144130Z 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-11-03T15:55:38.9145420Z 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-11-03T15:55:38.9146270Z 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-11-03T15:55:38.9147440Z 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-11-03T15:55:38.9148600Z 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-11-03T15:55:38.9149690Z 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-11-03T15:55:38.9150800Z 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-11-03T15:55:38.9151910Z 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-11-03T15:55:38.9153160Z 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-11-03T15:55:38.9154210Z 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-11-03T15:55:38.9155300Z 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-11-03T15:55:38.9156670Z 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-11-03T15:55:38.9157510Z 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-11-03T15:55:38.9158670Z 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-11-03T15:55:38.9159910Z 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-11-03T15:55:38.9160960Z 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-11-03T15:55:38.9162100Z 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-11-03T15:55:38.9163250Z 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-11-03T15:55:38.9164300Z 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-11-03T15:55:38.9165440Z 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-11-03T15:55:38.9166530Z 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-11-03T15:55:38.9167720Z 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-11-03T15:55:38.9168800Z 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-11-03T15:55:38.9169890Z 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-11-03T15:55:38.9171020Z 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-11-03T15:55:38.9172210Z 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-11-03T15:55:38.9173320Z 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-11-03T15:55:38.9174350Z 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-11-03T15:55:38.9175550Z 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-11-03T15:55:38.9176580Z 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-11-03T15:55:38.9177740Z 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-11-03T15:55:38.9178940Z 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-11-03T15:55:38.9179910Z 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-11-03T15:55:38.9180980Z 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-11-03T15:55:38.9182250Z 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-11-03T15:55:38.9183390Z 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-11-03T15:55:38.9184620Z 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-11-03T15:55:38.9185580Z 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-11-03T15:55:38.9186670Z 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-11-03T15:55:38.9187810Z 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-11-03T15:55:38.9188930Z 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-11-03T15:55:38.9190230Z 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-11-03T15:55:38.9191340Z 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-11-03T15:55:38.9192460Z 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-11-03T15:55:38.9193530Z 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-11-03T15:55:38.9194700Z 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-11-03T15:55:38.9195790Z 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-11-03T15:55:38.9197130Z 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-11-03T15:55:38.9198320Z 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-11-03T15:55:38.9199440Z 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-11-03T15:55:38.9200510Z 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-11-03T15:55:38.9201640Z 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-11-03T15:55:38.9202920Z 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-11-03T15:55:38.9204000Z 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-11-03T15:55:38.9205070Z 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-11-03T15:55:38.9206200Z 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-11-03T15:55:38.9207290Z 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-11-03T15:55:38.9208470Z 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-11-03T15:55:38.9209520Z 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-11-03T15:55:38.9210620Z 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-11-03T15:55:38.9211640Z 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-11-03T15:55:38.9212820Z 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-11-03T15:55:38.9214020Z 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-11-03T15:55:38.9215020Z 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-11-03T15:55:38.9216270Z 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-11-03T15:55:38.9217390Z 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-11-03T15:55:38.9218460Z 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-11-03T15:55:38.9219560Z 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-11-03T15:55:38.9220740Z 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-11-03T15:55:38.9222050Z 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-11-03T15:55:38.9222940Z 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-11-03T15:55:38.9224060Z 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-11-03T15:55:38.9225160Z 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-11-03T15:55:38.9226200Z 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-11-03T15:55:38.9227290Z 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-11-03T15:55:38.9228470Z 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-11-03T15:55:38.9229650Z 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-11-03T15:55:38.9230720Z 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-11-03T15:55:38.9231770Z 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-11-03T15:55:38.9232870Z 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-11-03T15:55:38.9233970Z 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-11-03T15:55:38.9235060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.9236180Z 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-11-03T15:55:38.9237270Z 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-11-03T15:55:38.9238390Z 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-11-03T15:55:38.9239520Z 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-11-03T15:55:38.9241210Z 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-11-03T15:55:38.9242250Z 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-11-03T15:55:38.9243480Z 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-11-03T15:55:38.9244580Z 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-11-03T15:55:38.9245680Z 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-11-03T15:55:38.9246860Z 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-11-03T15:55:38.9247980Z 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-11-03T15:55:38.9249170Z 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-11-03T15:55:38.9250320Z 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-11-03T15:55:38.9251310Z 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-11-03T15:55:38.9252600Z 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-11-03T15:55:38.9253570Z 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-11-03T15:55:38.9254730Z 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-11-03T15:55:38.9255770Z 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-11-03T15:55:38.9256870Z 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-11-03T15:55:38.9258070Z 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-11-03T15:55:38.9259170Z 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-11-03T15:55:38.9260360Z 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-11-03T15:55:38.9261410Z 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-11-03T15:55:38.9262600Z 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-11-03T15:55:38.9263780Z 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-11-03T15:55:38.9264850Z 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-11-03T15:55:38.9266000Z 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-11-03T15:55:38.9267010Z 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-11-03T15:55:38.9268300Z 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-11-03T15:55:38.9269550Z 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-11-03T15:55:38.9270620Z 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-11-03T15:55:38.9271780Z 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-11-03T15:55:38.9272980Z 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-11-03T15:55:38.9274190Z 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-11-03T15:55:38.9275290Z 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-11-03T15:55:38.9276330Z 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-11-03T15:55:38.9277410Z 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-11-03T15:55:38.9278570Z 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-11-03T15:55:38.9279650Z 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-11-03T15:55:38.9280790Z 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-11-03T15:55:38.9281920Z 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-11-03T15:55:38.9283050Z 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-11-03T15:55:38.9284330Z 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-11-03T15:55:38.9285240Z 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-11-03T15:55:38.9286430Z 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-11-03T15:55:38.9287400Z 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-11-03T15:55:38.9288540Z 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-11-03T15:55:38.9289630Z 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-11-03T15:55:38.9290720Z 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-11-03T15:55:38.9291810Z 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-11-03T15:55:38.9292940Z 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-11-03T15:55:38.9294160Z 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-11-03T15:55:38.9295200Z 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-11-03T15:55:38.9296240Z 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-11-03T15:55:38.9297410Z 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-11-03T15:55:38.9298560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clone_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.9299560Z 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-11-03T15:55:38.9300640Z 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-11-03T15:55:38.9301760Z 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-11-03T15:55:38.9302980Z 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-11-03T15:55:38.9303930Z 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-11-03T15:55:38.9305060Z 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-11-03T15:55:38.9306170Z 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-11-03T15:55:38.9307480Z 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-11-03T15:55:38.9308340Z 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-11-03T15:55:38.9309420Z 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-11-03T15:55:38.9310610Z 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-11-03T15:55:38.9311750Z 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-11-03T15:55:38.9312860Z 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-11-03T15:55:38.9313960Z 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-11-03T15:55:38.9315120Z 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-11-03T15:55:38.9316160Z 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-11-03T15:55:38.9317190Z 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-11-03T15:55:38.9318250Z 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-11-03T15:55:38.9319390Z 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-11-03T15:55:38.9320660Z 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-11-03T15:55:38.9321880Z 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-11-03T15:55:38.9323190Z 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-11-03T15:55:38.9324420Z 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-11-03T15:55:38.9325630Z 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-11-03T15:55:38.9326960Z 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-11-03T15:55:38.9328400Z 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-11-03T15:55:38.9329600Z 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-11-03T15:55:38.9330900Z 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-11-03T15:55:38.9332220Z 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-11-03T15:55:38.9333360Z 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-11-03T15:55:38.9334300Z 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-11-03T15:55:38.9335440Z 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-11-03T15:55:38.9336600Z 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-11-03T15:55:38.9337710Z 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-11-03T15:55:38.9338820Z 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-11-03T15:55:38.9340090Z 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-11-03T15:55:38.9341120Z 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-11-03T15:55:38.9342210Z 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-11-03T15:55:38.9343340Z 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-11-03T15:55:38.9344440Z 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-11-03T15:55:38.9345540Z 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-11-03T15:55:38.9346750Z 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-11-03T15:55:38.9347760Z 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-11-03T15:55:38.9348890Z 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-11-03T15:55:38.9349930Z 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-11-03T15:55:38.9351100Z 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-11-03T15:55:38.9352090Z 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-11-03T15:55:38.9353140Z 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-11-03T15:55:38.9354350Z 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-11-03T15:55:38.9355390Z 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-11-03T15:55:38.9356470Z 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-11-03T15:55:38.9357530Z 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-11-03T15:55:38.9358760Z 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-11-03T15:55:38.9359840Z 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-11-03T15:55:38.9361070Z 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-11-03T15:55:38.9362080Z 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-11-03T15:55:38.9363170Z 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-11-03T15:55:38.9364240Z 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-11-03T15:55:38.9365320Z 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-11-03T15:55:38.9366710Z 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-11-03T15:55:38.9367490Z 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-11-03T15:55:38.9368600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.9369650Z 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-11-03T15:55:38.9370850Z 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-11-03T15:55:38.9371810Z 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-11-03T15:55:38.9372920Z 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-11-03T15:55:38.9373980Z 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-11-03T15:55:38.9375110Z 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-11-03T15:55:38.9376160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_v2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.9377270Z 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-11-03T15:55:38.9378430Z 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-11-03T15:55:38.9379550Z 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-11-03T15:55:38.9380540Z 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-11-03T15:55:38.9383700Z 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-11-03T15:55:38.9384170Z 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-11-03T15:55:38.9384520Z 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-11-03T15:55:38.9385300Z 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-11-03T15:55:38.9386430Z 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-11-03T15:55:38.9387520Z 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-11-03T15:55:38.9388510Z 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-11-03T15:55:38.9389590Z 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-11-03T15:55:38.9390720Z 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-11-03T15:55:38.9391810Z 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-11-03T15:55:38.9393010Z 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-11-03T15:55:38.9394130Z 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-11-03T15:55:38.9395210Z 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-11-03T15:55:38.9396260Z 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-11-03T15:55:38.9397510Z 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-11-03T15:55:38.9398660Z 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-11-03T15:55:38.9399690Z 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-11-03T15:55:38.9400810Z 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-11-03T15:55:38.9401930Z 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-11-03T15:55:38.9403090Z 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-11-03T15:55:38.9404130Z 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-11-03T15:55:38.9405330Z 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-11-03T15:55:38.9406390Z 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-11-03T15:55:38.9407500Z 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-11-03T15:55:38.9408600Z 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-11-03T15:55:38.9409710Z 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-11-03T15:55:38.9410770Z 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-11-03T15:55:38.9411850Z 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-11-03T15:55:38.9413010Z 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-11-03T15:55:38.9414080Z 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-11-03T15:55:38.9415270Z 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-11-03T15:55:38.9416230Z 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-11-03T15:55:38.9417380Z 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-11-03T15:55:38.9418490Z 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-11-03T15:55:38.9419700Z 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-11-03T15:55:38.9421070Z 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-11-03T15:55:38.9421980Z 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-11-03T15:55:38.9423040Z 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-11-03T15:55:38.9424170Z 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-11-03T15:55:38.9425250Z 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-11-03T15:55:38.9426300Z 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-11-03T15:55:38.9427410Z 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-11-03T15:55:38.9428530Z 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-11-03T15:55:38.9429620Z 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-11-03T15:55:38.9430720Z 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-11-03T15:55:38.9431700Z 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-11-03T15:55:38.9432950Z 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-11-03T15:55:38.9433900Z 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-11-03T15:55:38.9435000Z 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-11-03T15:55:38.9436110Z 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-11-03T15:55:38.9437260Z 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-11-03T15:55:38.9438440Z 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-11-03T15:55:38.9439390Z 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-11-03T15:55:38.9440670Z 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-11-03T15:55:38.9441800Z 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-11-03T15:55:38.9442850Z 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-11-03T15:55:38.9443930Z 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-11-03T15:55:38.9445020Z 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-11-03T15:55:38.9446210Z 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-11-03T15:55:38.9447290Z 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-11-03T15:55:38.9448500Z 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-11-03T15:55:38.9449720Z 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-11-03T15:55:38.9450780Z 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-11-03T15:55:38.9451860Z 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-11-03T15:55:38.9453070Z 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-11-03T15:55:38.9454100Z 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-11-03T15:55:38.9455190Z 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-11-03T15:55:38.9456330Z 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-11-03T15:55:38.9457410Z 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-11-03T15:55:38.9458460Z 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-11-03T15:55:38.9459620Z 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-11-03T15:55:38.9460750Z 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-11-03T15:55:38.9461940Z 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-11-03T15:55:38.9463050Z 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-11-03T15:55:38.9464190Z 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-11-03T15:55:38.9465310Z 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-11-03T15:55:38.9466390Z 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-11-03T15:55:38.9467500Z 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-11-03T15:55:38.9468660Z 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-11-03T15:55:38.9469880Z 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-11-03T15:55:38.9470990Z 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-11-03T15:55:38.9472180Z 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-11-03T15:55:38.9473290Z 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-11-03T15:55:38.9474320Z 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-11-03T15:55:38.9475460Z 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-11-03T15:55:38.9476600Z 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-11-03T15:55:38.9477680Z 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-11-03T15:55:38.9478840Z 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-11-03T15:55:38.9479960Z 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-11-03T15:55:38.9481000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm_v2.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.9482060Z 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-11-03T15:55:38.9483140Z 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-11-03T15:55:38.9484250Z 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-11-03T15:55:38.9485430Z 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-11-03T15:55:38.9486530Z 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-11-03T15:55:38.9487740Z 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-11-03T15:55:38.9488710Z 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-11-03T15:55:38.9489830Z 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-11-03T15:55:38.9490880Z 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-11-03T15:55:38.9492070Z 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-11-03T15:55:38.9493110Z 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-11-03T15:55:38.9494240Z 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-11-03T15:55:38.9495420Z 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-11-03T15:55:38.9496460Z 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-11-03T15:55:38.9501160Z 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-11-03T15:55:38.9501800Z 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-11-03T15:55:38.9502160Z 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-11-03T15:55:38.9502710Z 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-11-03T15:55:38.9503060Z 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-11-03T15:55:38.9503460Z 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-11-03T15:55:38.9504080Z 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-11-03T15:55:38.9505150Z 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-11-03T15:55:38.9506180Z 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-11-03T15:55:38.9507340Z 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-11-03T15:55:38.9508350Z 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-11-03T15:55:38.9509620Z 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-11-03T15:55:38.9510770Z 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-11-03T15:55:38.9511720Z 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-11-03T15:55:38.9513070Z 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-11-03T15:55:38.9513790Z 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-11-03T15:55:38.9514940Z 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-11-03T15:55:38.9516000Z 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-11-03T15:55:38.9517200Z 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-11-03T15:55:38.9518220Z 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-11-03T15:55:38.9519470Z 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-11-03T15:55:38.9520570Z 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-11-03T15:55:38.9521680Z 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-11-03T15:55:38.9522690Z 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-11-03T15:55:38.9523760Z 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-11-03T15:55:38.9524920Z 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-11-03T15:55:38.9525990Z 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-11-03T15:55:38.9527110Z 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-11-03T15:55:38.9528180Z 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-11-03T15:55:38.9529320Z 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-11-03T15:55:38.9530390Z 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-11-03T15:55:38.9531600Z 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-11-03T15:55:38.9532610Z 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-11-03T15:55:38.9533760Z 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-11-03T15:55:38.9534900Z 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-11-03T15:55:38.9535980Z 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-11-03T15:55:38.9537020Z 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-11-03T15:55:38.9538230Z 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-11-03T15:55:38.9539320Z 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-11-03T15:55:38.9540440Z 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-11-03T15:55:38.9541520Z 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-11-03T15:55:38.9542560Z 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-11-03T15:55:38.9543810Z 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-11-03T15:55:38.9544960Z 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-11-03T15:55:38.9546000Z 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-11-03T15:55:38.9547000Z 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-11-03T15:55:38.9548120Z 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-11-03T15:55:38.9549170Z 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-11-03T15:55:38.9550250Z 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-11-03T15:55:38.9551370Z 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-11-03T15:55:38.9552450Z 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-11-03T15:55:38.9553470Z 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-11-03T15:55:38.9554620Z 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-11-03T15:55:38.9555680Z 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-11-03T15:55:38.9556760Z 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-11-03T15:55:38.9558010Z 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-11-03T15:55:38.9559060Z 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-11-03T15:55:38.9560120Z 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-11-03T15:55:38.9561230Z 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-11-03T15:55:38.9562250Z 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-11-03T15:55:38.9563320Z 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-11-03T15:55:38.9564440Z 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-11-03T15:55:38.9565620Z 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-11-03T15:55:38.9566570Z 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-11-03T15:55:38.9567700Z 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-11-03T15:55:38.9568820Z 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-11-03T15:55:38.9569880Z 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-11-03T15:55:38.9571020Z 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-11-03T15:55:38.9572290Z 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-11-03T15:55:38.9573430Z 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-11-03T15:55:38.9574500Z 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-11-03T15:55:38.9575760Z 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-11-03T15:55:38.9576900Z 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-11-03T15:55:38.9577880Z 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-11-03T15:55:38.9578930Z 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-11-03T15:55:38.9580230Z 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-11-03T15:55:38.9581220Z 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-11-03T15:55:38.9582300Z 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-11-03T15:55:38.9583440Z 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-11-03T15:55:38.9584630Z 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-11-03T15:55:38.9585810Z 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-11-03T15:55:38.9587080Z 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-11-03T15:55:38.9588620Z 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-11-03T15:55:38.9589890Z 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-11-03T15:55:38.9591090Z 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-11-03T15:55:38.9592120Z 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-11-03T15:55:38.9593360Z 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-11-03T15:55:38.9594400Z 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-11-03T15:55:38.9595570Z 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-11-03T15:55:38.9596720Z 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-11-03T15:55:38.9598060Z 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-11-03T15:55:38.9599090Z 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-11-03T15:55:38.9600110Z 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-11-03T15:55:38.9601190Z 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-11-03T15:55:38.9602370Z 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-11-03T15:55:38.9603480Z 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-11-03T15:55:38.9604690Z 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-11-03T15:55:38.9605650Z 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-11-03T15:55:38.9606770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.9607910Z 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-11-03T15:55:38.9609000Z 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-11-03T15:55:38.9610110Z 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-11-03T15:55:38.9611250Z 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-11-03T15:55:38.9612300Z 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-11-03T15:55:38.9613390Z 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-11-03T15:55:38.9614510Z 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-11-03T15:55:38.9615600Z 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-11-03T15:55:38.9616680Z 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-11-03T15:55:38.9617740Z 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-11-03T15:55:38.9618820Z 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-11-03T15:55:38.9619920Z 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-11-03T15:55:38.9621170Z 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-11-03T15:55:38.9622130Z 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-11-03T15:55:38.9623330Z 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-11-03T15:55:38.9624230Z 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-11-03T15:55:38.9625350Z 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-11-03T15:55:38.9626520Z 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-11-03T15:55:38.9627710Z 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-11-03T15:55:38.9628710Z 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-11-03T15:55:38.9629830Z 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-11-03T15:55:38.9630940Z 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-11-03T15:55:38.9632130Z 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-11-03T15:55:38.9633070Z 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-11-03T15:55:38.9634200Z 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-11-03T15:55:38.9635350Z 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-11-03T15:55:38.9636410Z 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-11-03T15:55:38.9637420Z 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-11-03T15:55:38.9638510Z 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-11-03T15:55:38.9639650Z 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-11-03T15:55:38.9641130Z 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-11-03T15:55:38.9642410Z 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-11-03T15:55:38.9643520Z 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-11-03T15:55:38.9644660Z 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-11-03T15:55:38.9645890Z 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-11-03T15:55:38.9646970Z 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-11-03T15:55:38.9648000Z 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-11-03T15:55:38.9649120Z 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-11-03T15:55:38.9650220Z 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-11-03T15:55:38.9651320Z 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-11-03T15:55:38.9652470Z 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-11-03T15:55:38.9653550Z 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-11-03T15:55:38.9654760Z 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-11-03T15:55:38.9655820Z 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-11-03T15:55:38.9656910Z 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-11-03T15:55:38.9658010Z 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-11-03T15:55:38.9659100Z 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-11-03T15:55:38.9660360Z 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-11-03T15:55:38.9661440Z 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-11-03T15:55:38.9662740Z 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-11-03T15:55:38.9663720Z 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-11-03T15:55:38.9664780Z 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-11-03T15:55:38.9666010Z 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-11-03T15:55:38.9667310Z 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-11-03T15:55:38.9668630Z 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-11-03T15:55:38.9669960Z 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-11-03T15:55:38.9671170Z 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-11-03T15:55:38.9672490Z 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-11-03T15:55:38.9673640Z 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-11-03T15:55:38.9674830Z 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-11-03T15:55:38.9676060Z 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-11-03T15:55:38.9677320Z 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-11-03T15:55:38.9678560Z 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-11-03T15:55:38.9679740Z 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-11-03T15:55:38.9680930Z 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-11-03T15:55:38.9682000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:38.9683180Z 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-11-03T15:55:38.9684230Z 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-11-03T15:55:38.9685330Z 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-11-03T15:55:38.9686360Z 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-11-03T15:55:38.9687460Z 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-11-03T15:55:38.9688680Z 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-11-03T15:55:38.9689700Z 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-11-03T15:55:38.9690860Z 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-11-03T15:55:38.9691860Z 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-11-03T15:55:38.9693020Z 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-11-03T15:55:38.9694100Z 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-11-03T15:55:38.9695180Z 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-11-03T15:55:38.9696350Z 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-11-03T15:55:38.9697490Z 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-11-03T15:55:38.9698600Z 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-11-03T15:55:38.9699980Z 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-11-03T15:55:38.9701180Z 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-11-03T15:55:38.9702120Z 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-11-03T15:55:38.9703340Z 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-11-03T15:55:38.9704370Z 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-11-03T15:55:38.9705530Z 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-11-03T15:55:38.9706610Z 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-11-03T15:55:38.9707710Z 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-11-03T15:55:38.9709170Z 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-11-03T15:55:38.9709940Z 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-11-03T15:55:38.9711150Z 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-11-03T15:55:38.9712150Z 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-11-03T15:55:38.9713330Z 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-11-03T15:55:38.9973620Z 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-11-03T15:55:38.9975580Z 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-11-03T15:55:38.9976870Z 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-11-03T15:55:39.0499620Z 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-11-03T15:55:39.0502540Z 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-11-03T15:55:39.0503790Z 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-11-03T15:55:39.0505190Z 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-11-03T15:55:39.0506710Z 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-11-03T15:55:39.0508200Z 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-11-03T15:55:39.0509350Z 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-11-03T15:55:39.0510680Z 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-11-03T15:55:39.0512140Z 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-11-03T15:55:39.0513450Z 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-11-03T15:55:39.0515040Z 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-11-03T15:55:39.0516980Z 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-11-03T15:55:39.0524590Z 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-11-03T15:55:39.0526180Z 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-11-03T15:55:39.0531230Z 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-11-03T15:55:39.0536400Z 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-11-03T15:55:39.0541160Z 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-11-03T15:55:39.0546280Z 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-11-03T15:55:39.0547770Z 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-11-03T15:55:39.0553330Z 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-11-03T15:55:39.0558670Z 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-11-03T15:55:39.0560010Z 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-11-03T15:55:39.0561530Z 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-11-03T15:55:39.0562970Z 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-11-03T15:55:39.0564330Z 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-11-03T15:55:39.0565800Z 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-11-03T15:55:39.0567160Z 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-11-03T15:55:39.0568680Z 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-11-03T15:55:39.0569730Z 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-11-03T15:55:39.0570840Z 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-11-03T15:55:39.0572230Z 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-11-03T15:55:39.0573440Z 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-11-03T15:55:39.0574660Z 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-11-03T15:55:39.0575800Z 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-11-03T15:55:39.0576960Z 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-11-03T15:55:39.0578310Z 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-11-03T15:55:39.0579520Z 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-11-03T15:55:39.0580640Z 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-11-03T15:55:39.0581930Z 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-11-03T15:55:39.0583480Z 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-11-03T15:55:39.0584790Z 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-11-03T15:55:39.0586140Z 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-11-03T15:55:39.0587170Z 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-11-03T15:55:39.0588420Z 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-11-03T15:55:39.0589630Z 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-11-03T15:55:39.0590920Z 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-11-03T15:55:39.0592090Z 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-11-03T15:55:39.0593480Z 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-11-03T15:55:39.0594710Z 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-11-03T15:55:39.0596740Z 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-11-03T15:55:39.0597780Z 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-11-03T15:55:39.0599110Z 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-11-03T15:55:39.0600250Z 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-11-03T15:55:39.0601530Z 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-11-03T15:55:39.0602860Z 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-11-03T15:55:39.0604170Z 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-11-03T15:55:39.0605230Z 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-11-03T15:55:39.0606410Z 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-11-03T15:55:39.0607580Z 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-11-03T15:55:39.0608770Z 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-11-03T15:55:39.0610040Z 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-11-03T15:55:39.0611240Z 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-11-03T15:55:39.0612410Z 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-11-03T15:55:39.0613640Z 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-11-03T15:55:39.0614790Z 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-11-03T15:55:39.0616090Z 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-11-03T15:55:39.0617390Z 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-11-03T15:55:39.0618570Z 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-11-03T15:55:39.0619830Z 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-11-03T15:55:39.0621050Z 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-11-03T15:55:39.0622400Z 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-11-03T15:55:39.0623500Z 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-11-03T15:55:39.0624710Z 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-11-03T15:55:39.0626010Z 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-11-03T15:55:39.0627330Z 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-11-03T15:55:39.0628570Z 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-11-03T15:55:39.0629840Z 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-11-03T15:55:39.0630980Z 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-11-03T15:55:39.0632340Z 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-11-03T15:55:39.0633420Z 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-11-03T15:55:39.0634620Z 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-11-03T15:55:39.0635790Z 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-11-03T15:55:39.0636950Z 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-11-03T15:55:39.0638300Z 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-11-03T15:55:39.0639500Z 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-11-03T15:55:39.0640750Z 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-11-03T15:55:39.0641900Z 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-11-03T15:55:39.0643090Z 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-11-03T15:55:39.0644250Z 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-11-03T15:55:39.0645510Z 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-11-03T15:55:39.0646580Z 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-11-03T15:55:39.0647830Z 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-11-03T15:55:39.0649050Z 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-11-03T15:55:39.0650220Z 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-11-03T15:55:39.0651410Z 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-11-03T15:55:39.0652640Z 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-11-03T15:55:39.0653730Z 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-11-03T15:55:39.0655140Z 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-11-03T15:55:39.0656110Z 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-11-03T15:55:39.0657260Z 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-11-03T15:55:39.0658420Z 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-11-03T15:55:39.0659410Z 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-11-03T15:55:39.0660580Z 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-11-03T15:55:39.0661680Z 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-11-03T15:55:39.0662810Z 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-11-03T15:55:39.0663890Z 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-11-03T15:55:39.0665010Z 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-11-03T15:55:39.0666090Z 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-11-03T15:55:39.0667320Z 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-11-03T15:55:39.0668370Z 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-11-03T15:55:39.0669510Z 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-11-03T15:55:39.0670660Z 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-11-03T15:55:39.0671810Z 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-11-03T15:55:39.0673020Z 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-11-03T15:55:39.0674070Z 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-11-03T15:55:39.0675180Z 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-11-03T15:55:39.0676350Z 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-11-03T15:55:39.0677430Z 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-11-03T15:55:39.0678650Z 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-11-03T15:55:39.0679700Z 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-11-03T15:55:39.0680950Z 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-11-03T15:55:39.0682070Z 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-11-03T15:55:39.0683230Z 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-11-03T15:55:39.0684330Z 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-11-03T15:55:39.0685380Z 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-11-03T15:55:39.0686520Z 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-11-03T15:55:39.0687680Z 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-11-03T15:55:39.0688790Z 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-11-03T15:55:39.0690070Z 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-11-03T15:55:39.0691470Z 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-11-03T15:55:39.0692480Z 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-11-03T15:55:39.0693600Z 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-11-03T15:55:39.0694680Z 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-11-03T15:55:39.0695760Z 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-11-03T15:55:39.0696890Z 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-11-03T15:55:39.0698120Z 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-11-03T15:55:39.0699190Z 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-11-03T15:55:39.0700270Z 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-11-03T15:55:39.0701320Z 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-11-03T15:55:39.0702480Z 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-11-03T15:55:39.0703740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.0704900Z 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-11-03T15:55:39.0705920Z 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-11-03T15:55:39.0707070Z 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-11-03T15:55:39.0708140Z 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-11-03T15:55:39.0709310Z 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-11-03T15:55:39.0710450Z 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-11-03T15:55:39.0711490Z 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-11-03T15:55:39.0712680Z 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-11-03T15:55:39.0713760Z 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-11-03T15:55:39.0719780Z 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-11-03T15:55:39.0720680Z 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-11-03T15:55:39.0721490Z 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-11-03T15:55:39.0722420Z 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-11-03T15:55:39.0723360Z 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-11-03T15:55:39.0724160Z 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-11-03T15:55:39.0724900Z 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-11-03T15:55:39.0725670Z 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-11-03T15:55:39.0726460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm_v2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.0727400Z 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-11-03T15:55:39.0728380Z 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-11-03T15:55:39.0729210Z 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-11-03T15:55:39.0730050Z 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-11-03T15:55:39.0730860Z 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-11-03T15:55:39.0731820Z 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-11-03T15:55:39.0732770Z 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-11-03T15:55:39.0733620Z 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-11-03T15:55:39.0734420Z 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-11-03T15:55:39.0735250Z 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-11-03T15:55:39.0736240Z 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-11-03T15:55:39.0737380Z 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-11-03T15:55:39.0738500Z 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-11-03T15:55:39.0739630Z 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-11-03T15:55:39.0740820Z 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-11-03T15:55:39.0741910Z 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-11-03T15:55:39.0743000Z 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-11-03T15:55:39.0744240Z 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-11-03T15:55:39.0745360Z 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-11-03T15:55:39.0746350Z 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-11-03T15:55:39.0747480Z 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-11-03T15:55:39.0748720Z 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-11-03T15:55:39.0749810Z 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-11-03T15:55:39.0750860Z 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-11-03T15:55:39.0751980Z 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-11-03T15:55:39.0753140Z 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-11-03T15:55:39.0754250Z 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-11-03T15:55:39.0755510Z 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-11-03T15:55:39.0756460Z 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-11-03T15:55:39.0757630Z 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-11-03T15:55:39.0758870Z 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-11-03T15:55:39.0759930Z 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-11-03T15:55:39.0761200Z 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-11-03T15:55:39.0762170Z 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-11-03T15:55:39.0763250Z 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-11-03T15:55:39.0764400Z 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-11-03T15:55:39.0765520Z 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-11-03T15:55:39.0766650Z 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-11-03T15:55:39.0767740Z 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-11-03T15:55:39.0768830Z 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-11-03T15:55:39.0769970Z 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-11-03T15:55:39.0771180Z 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-11-03T15:55:39.0772320Z 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-11-03T15:55:39.0773520Z 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-11-03T15:55:39.0774590Z 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-11-03T15:55:39.0775750Z 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-11-03T15:55:39.0776740Z 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-11-03T15:55:39.0777830Z 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-11-03T15:55:39.0778950Z 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-11-03T15:55:39.0780160Z 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-11-03T15:55:39.0781360Z 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-11-03T15:55:39.0782440Z 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-11-03T15:55:39.0783530Z 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-11-03T15:55:39.0784600Z 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-11-03T15:55:39.0785690Z 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-11-03T15:55:39.0786750Z 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-11-03T15:55:39.0787870Z 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-11-03T15:55:39.0788970Z 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-11-03T15:55:39.0790290Z 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-11-03T15:55:39.0791370Z 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-11-03T15:55:39.0792470Z 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-11-03T15:55:39.0793620Z 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-11-03T15:55:39.0794690Z 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-11-03T15:55:39.0795760Z 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-11-03T15:55:39.0796850Z 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-11-03T15:55:39.0798010Z 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-11-03T15:55:39.0799120Z 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-11-03T15:55:39.0800190Z 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-11-03T15:55:39.0801250Z 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-11-03T15:55:39.0802680Z 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-11-03T15:55:39.0803500Z 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-11-03T15:55:39.0804640Z 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-11-03T15:55:39.0805840Z 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-11-03T15:55:39.0806950Z 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-11-03T15:55:39.0808150Z 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-11-03T15:55:39.0809260Z 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-11-03T15:55:39.0810560Z 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-11-03T15:55:39.0811950Z 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-11-03T15:55:39.0812810Z 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-11-03T15:55:39.0813980Z 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-11-03T15:55:39.0815020Z 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-11-03T15:55:39.0816300Z 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-11-03T15:55:39.0817180Z 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-11-03T15:55:39.0818340Z 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-11-03T15:55:39.0819540Z 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-11-03T15:55:39.0820720Z 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-11-03T15:55:39.0821710Z 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-11-03T15:55:39.0822870Z 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-11-03T15:55:39.0824120Z 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-11-03T15:55:39.0825290Z 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-11-03T15:55:39.0826390Z 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-11-03T15:55:39.0827520Z 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-11-03T15:55:39.0828670Z 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-11-03T15:55:39.0829780Z 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-11-03T15:55:39.0830850Z 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-11-03T15:55:39.0832010Z 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-11-03T15:55:39.0833030Z 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-11-03T15:55:39.0834210Z 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-11-03T15:55:39.0835290Z 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-11-03T15:55:39.0836330Z 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-11-03T15:55:39.0837450Z 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-11-03T15:55:39.0838750Z 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-11-03T15:55:39.0839770Z 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-11-03T15:55:39.0840840Z 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-11-03T15:55:39.0841910Z 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-11-03T15:55:39.0843350Z 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-11-03T15:55:39.0844800Z 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-11-03T15:55:39.0845910Z 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-11-03T15:55:39.0846730Z 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-11-03T15:55:39.0847950Z 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-11-03T15:55:39.0849200Z 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-11-03T15:55:39.0850240Z 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-11-03T15:55:39.0851240Z 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-11-03T15:55:39.0852260Z 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-11-03T15:55:39.0853390Z 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-11-03T15:55:39.0854530Z 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-11-03T15:55:39.0855590Z 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-11-03T15:55:39.0856700Z 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-11-03T15:55:39.0857800Z 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-11-03T15:55:39.0858910Z 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-11-03T15:55:39.0860070Z 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-11-03T15:55:39.0861150Z 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-11-03T15:55:39.0862230Z 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-11-03T15:55:39.0863320Z 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-11-03T15:55:39.0864390Z 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-11-03T15:55:39.0865650Z 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-11-03T15:55:39.0866600Z 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-11-03T15:55:39.0868640Z 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-11-03T15:55:39.0870120Z 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-11-03T15:55:39.0871280Z 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-11-03T15:55:39.0878830Z 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-11-03T15:55:39.0879750Z 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-11-03T15:55:39.0886890Z 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-11-03T15:55:39.0887820Z 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-11-03T15:55:39.0894930Z 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-11-03T15:55:39.0895910Z 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-11-03T15:55:39.0897120Z 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-11-03T15:55:39.0903740Z 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-11-03T15:55:39.0904830Z 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-11-03T15:55:39.0911270Z 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-11-03T15:55:39.0912240Z 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-11-03T15:55:39.0913290Z 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-11-03T15:55:39.0919380Z 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-11-03T15:55:39.0920810Z 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-11-03T15:55:39.0927120Z 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-11-03T15:55:39.0928640Z 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-11-03T15:55:39.0934740Z 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-11-03T15:55:39.0937390Z 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-11-03T15:55:39.0943200Z 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-11-03T15:55:39.0944120Z 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-11-03T15:55:39.0945750Z 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-11-03T15:55:39.0951030Z 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-11-03T15:55:39.0951940Z 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-11-03T15:55:39.0955600Z 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-11-03T15:55:39.0960760Z 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-11-03T15:55:39.0963670Z 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-11-03T15:55:39.0968720Z 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-11-03T15:55:39.0969740Z 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-11-03T15:55:39.0971780Z 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-11-03T15:55:39.0977910Z 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-11-03T15:55:39.0980900Z 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-11-03T15:55:39.0985940Z 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-11-03T15:55:39.0986900Z 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-11-03T15:55:39.0989090Z 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-11-03T15:55:39.0993950Z 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-11-03T15:55:39.0994970Z 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-11-03T15:55:39.0998380Z 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-11-03T15:55:39.1003790Z 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-11-03T15:55:39.1006940Z 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-11-03T15:55:39.1010610Z 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-11-03T15:55:39.1011520Z 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-11-03T15:55:39.1016250Z 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-11-03T15:55:39.1019370Z 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-11-03T15:55:39.1024330Z 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-11-03T15:55:39.1025370Z 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-11-03T15:55:39.1028840Z 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-11-03T15:55:39.1034200Z 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-11-03T15:55:39.1037100Z 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-11-03T15:55:39.1041580Z 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-11-03T15:55:39.1042540Z 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-11-03T15:55:39.1046230Z 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-11-03T15:55:39.1050590Z 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-11-03T15:55:39.1053760Z 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-11-03T15:55:39.1054810Z 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-11-03T15:55:39.1060110Z 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-11-03T15:55:39.1063000Z 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-11-03T15:55:39.1067820Z 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-11-03T15:55:39.1068760Z 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-11-03T15:55:39.1072610Z 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-11-03T15:55:39.1077130Z 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-11-03T15:55:39.1077980Z 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-11-03T15:55:39.1081970Z 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-11-03T15:55:39.1086510Z 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-11-03T15:55:39.1090300Z 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-11-03T15:55:39.1093970Z 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-11-03T15:55:39.1094960Z 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-11-03T15:55:39.1099800Z 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-11-03T15:55:39.1102890Z 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-11-03T15:55:39.1106680Z 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-11-03T15:55:39.1108200Z 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-11-03T15:55:39.1112030Z 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-11-03T15:55:39.1116610Z 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-11-03T15:55:39.1121050Z 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-11-03T15:55:39.1124270Z 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-11-03T15:55:39.1125230Z 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-11-03T15:55:39.1130450Z 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-11-03T15:55:39.1131630Z 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-11-03T15:55:39.1137620Z 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-11-03T15:55:39.1138580Z 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-11-03T15:55:39.1144850Z 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-11-03T15:55:39.1146330Z 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-11-03T15:55:39.1152280Z 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-11-03T15:55:39.1153340Z 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-11-03T15:55:39.1154400Z 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-11-03T15:55:39.1161420Z 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-11-03T15:55:39.1162300Z 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-11-03T15:55:39.1169670Z 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-11-03T15:55:39.1170550Z 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-11-03T15:55:39.1176760Z 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-11-03T15:55:39.1177870Z 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-11-03T15:55:39.1178920Z 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-11-03T15:55:39.1185830Z 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-11-03T15:55:39.1187160Z 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-11-03T15:55:39.1190720Z 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-11-03T15:55:39.1193880Z 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-11-03T15:55:39.1195010Z 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-11-03T15:55:39.1196440Z 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-11-03T15:55:39.1201060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_v2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.1202360Z 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-11-03T15:55:39.1212170Z 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-11-03T15:55:39.1217460Z 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-11-03T15:55:39.1218900Z 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-11-03T15:55:39.1224980Z 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-11-03T15:55:39.1235530Z 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-11-03T15:55:39.1236460Z 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-11-03T15:55:39.1244140Z 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-11-03T15:55:39.1250520Z 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-11-03T15:55:39.1251630Z 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-11-03T15:55:39.1252650Z 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-11-03T15:55:39.1258420Z 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-11-03T15:55:39.1260510Z 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-11-03T15:55:39.1266090Z 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-11-03T15:55:39.1267170Z 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-11-03T15:55:39.1269220Z 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-11-03T15:55:39.1274000Z 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-11-03T15:55:39.1274950Z 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-11-03T15:55:39.1282150Z 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-11-03T15:55:39.1283150Z 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-11-03T15:55:39.1290490Z 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-11-03T15:55:39.1291370Z 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-11-03T15:55:39.1292660Z 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-11-03T15:55:39.1298590Z 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-11-03T15:55:39.1299720Z 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-11-03T15:55:39.1306230Z 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-11-03T15:55:39.1307670Z 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-11-03T15:55:39.1308790Z 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-11-03T15:55:39.1314280Z 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-11-03T15:55:39.1315360Z 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-11-03T15:55:39.1321830Z 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-11-03T15:55:39.1323150Z 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-11-03T15:55:39.1330020Z 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-11-03T15:55:39.1330990Z 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-11-03T15:55:39.1332080Z 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-11-03T15:55:39.1337830Z 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-11-03T15:55:39.1338800Z 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-11-03T15:55:39.1346190Z 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-11-03T15:55:39.1347110Z 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-11-03T15:55:39.1354150Z 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-11-03T15:55:39.1355240Z 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-11-03T15:55:39.1356350Z 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-11-03T15:55:39.1366080Z 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-11-03T15:55:39.1366990Z 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-11-03T15:55:39.1370040Z 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-11-03T15:55:39.1371030Z 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-11-03T15:55:39.1372130Z 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-11-03T15:55:39.1378080Z 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-11-03T15:55:39.1379020Z 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-11-03T15:55:39.1385820Z 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-11-03T15:55:39.1386900Z 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-11-03T15:55:39.1388060Z 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-11-03T15:55:39.1395420Z 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-11-03T15:55:39.1396310Z 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-11-03T15:55:39.1402940Z 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-11-03T15:55:39.1403890Z 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-11-03T15:55:39.1410750Z 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-11-03T15:55:39.1411560Z 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-11-03T15:55:39.1412730Z 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-11-03T15:55:39.1418850Z 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-11-03T15:55:39.1420330Z 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-11-03T15:55:39.1426590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.1427430Z 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-11-03T15:55:39.1428500Z 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-11-03T15:55:39.1435160Z 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-11-03T15:55:39.1436590Z 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-11-03T15:55:39.1442910Z 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-11-03T15:55:39.1444080Z 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-11-03T15:55:39.1450540Z 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-11-03T15:55:39.1451490Z 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-11-03T15:55:39.1452710Z 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-11-03T15:55:39.1458370Z 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-11-03T15:55:39.1459750Z 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-11-03T15:55:39.1466140Z 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-11-03T15:55:39.1467430Z 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-11-03T15:55:39.1468630Z 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-11-03T15:55:39.1474740Z 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-11-03T15:55:39.1475590Z 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-11-03T15:55:39.1482820Z 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-11-03T15:55:39.1483830Z 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-11-03T15:55:39.1490710Z 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-11-03T15:55:39.1491590Z 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-11-03T15:55:39.1492750Z 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-11-03T15:55:39.1499360Z 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-11-03T15:55:39.1500140Z 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-11-03T15:55:39.1507100Z 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-11-03T15:55:39.1507930Z 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-11-03T15:55:39.1509020Z 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-11-03T15:55:39.1515080Z 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-11-03T15:55:39.1515880Z 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-11-03T15:55:39.1522580Z 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-11-03T15:55:39.1524080Z 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-11-03T15:55:39.1525220Z 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-11-03T15:55:39.1530540Z 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-11-03T15:55:39.1531860Z 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-11-03T15:55:39.1538520Z 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-11-03T15:55:39.1540520Z 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-11-03T15:55:39.1546070Z 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-11-03T15:55:39.1547420Z 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-11-03T15:55:39.1548570Z 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-11-03T15:55:39.1554270Z 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-11-03T15:55:39.1555210Z 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-11-03T15:55:39.1561760Z 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-11-03T15:55:39.1563250Z 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-11-03T15:55:39.1570490Z 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-11-03T15:55:39.1571230Z 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-11-03T15:55:39.1572380Z 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-11-03T15:55:39.1578470Z 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-11-03T15:55:39.1579560Z 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-11-03T15:55:39.1580540Z 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-11-03T15:55:39.1587870Z 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-11-03T15:55:39.1588870Z 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-11-03T15:55:39.1595260Z 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-11-03T15:55:39.1596230Z 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-11-03T15:55:39.1603100Z 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-11-03T15:55:39.1604510Z 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-11-03T15:55:39.1605620Z 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-11-03T15:55:39.1611350Z 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-11-03T15:55:39.1612250Z 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-11-03T15:55:39.1618720Z 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-11-03T15:55:39.1620820Z 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-11-03T15:55:39.1622060Z 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-11-03T15:55:39.1628630Z 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-11-03T15:55:39.1629730Z 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-11-03T15:55:39.1636520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rad2deg_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.1637390Z 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-11-03T15:55:39.1638510Z 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-11-03T15:55:39.1643900Z 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-11-03T15:55:39.1645350Z 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-11-03T15:55:39.1651600Z 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-11-03T15:55:39.1653170Z 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-11-03T15:55:39.1659530Z 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-11-03T15:55:39.1660360Z 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-11-03T15:55:39.1661560Z 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-11-03T15:55:39.1667490Z 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-11-03T15:55:39.1668760Z 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-11-03T15:55:39.1675450Z 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-11-03T15:55:39.1677020Z 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-11-03T15:55:39.1683620Z 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-11-03T15:55:39.1684530Z 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-11-03T15:55:39.1685720Z 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-11-03T15:55:39.1691250Z 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-11-03T15:55:39.1691930Z 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-11-03T15:55:39.1698850Z 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-11-03T15:55:39.1699740Z 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-11-03T15:55:39.1707490Z 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-11-03T15:55:39.1708590Z 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-11-03T15:55:39.1709830Z 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-11-03T15:55:39.1715310Z 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-11-03T15:55:39.1716830Z 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-11-03T15:55:39.1723130Z 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-11-03T15:55:39.1724660Z 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-11-03T15:55:39.1725750Z 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-11-03T15:55:39.1730960Z 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-11-03T15:55:39.1731940Z 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-11-03T15:55:39.1739170Z 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-11-03T15:55:39.1739960Z 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-11-03T15:55:39.1747230Z 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-11-03T15:55:39.1748170Z 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-11-03T15:55:39.1749240Z 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-11-03T15:55:39.1755070Z 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-11-03T15:55:39.1756530Z 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-11-03T15:55:39.1762560Z 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-11-03T15:55:39.1764040Z 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-11-03T15:55:39.1765350Z 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-11-03T15:55:39.1770020Z 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-11-03T15:55:39.1770860Z 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-11-03T15:55:39.1778040Z 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-11-03T15:55:39.1780370Z 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-11-03T15:55:39.1785460Z 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-11-03T15:55:39.1786390Z 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-11-03T15:55:39.1788110Z 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-11-03T15:55:39.1794520Z 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-11-03T15:55:39.1795400Z 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-11-03T15:55:39.1801970Z 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-11-03T15:55:39.1804320Z 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-11-03T15:55:39.1809600Z 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-11-03T15:55:39.1810950Z 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-11-03T15:55:39.1812170Z 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-11-03T15:55:39.1817520Z 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-11-03T15:55:39.1818390Z 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-11-03T15:55:39.1822140Z 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-11-03T15:55:39.1827270Z 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-11-03T15:55:39.1830970Z 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-11-03T15:55:39.1835640Z 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-11-03T15:55:39.1836470Z 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-11-03T15:55:39.1840020Z 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-11-03T15:55:39.1843790Z 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-11-03T15:55:39.1847510Z 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-11-03T15:55:39.1848380Z 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-11-03T15:55:39.1852740Z 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-11-03T15:55:39.1856620Z 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-11-03T15:55:39.1860790Z 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-11-03T15:55:39.1861620Z 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-11-03T15:55:39.1866350Z 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-11-03T15:55:39.1869560Z 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-11-03T15:55:39.1873910Z 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-11-03T15:55:39.1875360Z 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-11-03T15:55:39.1878920Z 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-11-03T15:55:39.1882670Z 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-11-03T15:55:39.1887600Z 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-11-03T15:55:39.1889970Z 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-11-03T15:55:39.1890870Z 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-11-03T15:55:39.1897590Z 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-11-03T15:55:39.1898400Z 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-11-03T15:55:39.1905480Z 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-11-03T15:55:39.1906400Z 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-11-03T15:55:39.1913420Z 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-11-03T15:55:39.1914180Z 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-11-03T15:55:39.1915460Z 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-11-03T15:55:39.1921680Z 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-11-03T15:55:39.1922380Z 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-11-03T15:55:39.1928590Z 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-11-03T15:55:39.1930960Z 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-11-03T15:55:39.1932040Z 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-11-03T15:55:39.1938510Z 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-11-03T15:55:39.1939420Z 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-11-03T15:55:39.1946310Z 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-11-03T15:55:39.1947270Z 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-11-03T15:55:39.1954500Z 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-11-03T15:55:39.1955300Z 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-11-03T15:55:39.1956410Z 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-11-03T15:55:39.1965130Z 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-11-03T15:55:39.1965990Z 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-11-03T15:55:39.1967110Z 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-11-03T15:55:39.1970660Z 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-11-03T15:55:39.2176250Z 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-11-03T15:55:39.2177140Z 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-11-03T15:55:39.2178280Z 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-11-03T15:55:39.2179470Z 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-11-03T15:55:39.2180630Z 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-11-03T15:55:39.2181740Z 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-11-03T15:55:39.2182830Z 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-11-03T15:55:39.2184000Z 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-11-03T15:55:39.2185070Z 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-11-03T15:55:39.2186270Z 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-11-03T15:55:39.2187320Z 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-11-03T15:55:39.2188450Z 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-11-03T15:55:39.2189720Z 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-11-03T15:55:39.2190840Z 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-11-03T15:55:39.2192030Z 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-11-03T15:55:39.2193220Z 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-11-03T15:55:39.2194290Z 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-11-03T15:55:39.2195320Z 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-11-03T15:55:39.2196520Z 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-11-03T15:55:39.2197650Z 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-11-03T15:55:39.2198700Z 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-11-03T15:55:39.2199770Z 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-11-03T15:55:39.2200910Z 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-11-03T15:55:39.2202130Z 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-11-03T15:55:39.2203200Z 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-11-03T15:55:39.2204310Z 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-11-03T15:55:39.2205390Z 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-11-03T15:55:39.2206510Z 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-11-03T15:55:39.2207630Z 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-11-03T15:55:39.2208750Z 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-11-03T15:55:39.2209920Z 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-11-03T15:55:39.2211000Z 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-11-03T15:55:39.2212110Z 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-11-03T15:55:39.2213240Z 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-11-03T15:55:39.2214390Z 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-11-03T15:55:39.2215670Z 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-11-03T15:55:39.2216700Z 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-11-03T15:55:39.2217810Z 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-11-03T15:55:39.2219010Z 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-11-03T15:55:39.2220200Z 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-11-03T15:55:39.2221280Z 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-11-03T15:55:39.2222450Z 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-11-03T15:55:39.2223580Z 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-11-03T15:55:39.2224760Z 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-11-03T15:55:39.2225870Z 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-11-03T15:55:39.2226980Z 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-11-03T15:55:39.2228140Z 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-11-03T15:55:39.2229290Z 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-11-03T15:55:39.2230370Z 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-11-03T15:55:39.2231510Z 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-11-03T15:55:39.2232700Z 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-11-03T15:55:39.2233770Z 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-11-03T15:55:39.2235000Z 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-11-03T15:55:39.2236030Z 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-11-03T15:55:39.2237190Z 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-11-03T15:55:39.2238380Z 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-11-03T15:55:39.2239500Z 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-11-03T15:55:39.2240550Z 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-11-03T15:55:39.2241660Z 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-11-03T15:55:39.2242830Z 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-11-03T15:55:39.2243830Z 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-11-03T15:55:39.2244950Z 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-11-03T15:55:39.2246000Z 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-11-03T15:55:39.2247130Z 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-11-03T15:55:39.2248240Z 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-11-03T15:55:39.2249360Z 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-11-03T15:55:39.2250480Z 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-11-03T15:55:39.2251540Z 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-11-03T15:55:39.2252900Z 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-11-03T15:55:39.2253860Z 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-11-03T15:55:39.2254930Z 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-11-03T15:55:39.2415610Z 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-11-03T15:55:39.2416850Z 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-11-03T15:55:39.2418040Z 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-11-03T15:55:39.2419180Z 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-11-03T15:55:39.2420380Z 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-11-03T15:55:39.2421580Z 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-11-03T15:55:39.2422750Z 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-11-03T15:55:39.2423820Z 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-11-03T15:55:39.2425130Z 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-11-03T15:55:39.2426350Z 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-11-03T15:55:39.2427460Z 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-11-03T15:55:39.2428510Z 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-11-03T15:55:39.2429740Z 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-11-03T15:55:39.2431010Z 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-11-03T15:55:39.2432240Z 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-11-03T15:55:39.2433360Z 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-11-03T15:55:39.2434450Z 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-11-03T15:55:39.2435600Z 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-11-03T15:55:39.2436830Z 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-11-03T15:55:39.2437940Z 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-11-03T15:55:39.2439110Z 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-11-03T15:55:39.2440640Z 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-11-03T15:55:39.2442020Z 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-11-03T15:55:39.2443210Z 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-11-03T15:55:39.2444380Z 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-11-03T15:55:39.2662480Z 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-11-03T15:55:39.2662890Z 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-11-03T15:55:39.2663270Z 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-11-03T15:55:39.2663580Z 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-11-03T15:55:39.2663970Z 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-11-03T15:55:39.2664350Z 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-11-03T15:55:39.2664700Z 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-11-03T15:55:39.2665040Z 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-11-03T15:55:39.2665490Z 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-11-03T15:55:39.2665940Z 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-11-03T15:55:39.2666260Z 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-11-03T15:55:39.2666590Z 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-11-03T15:55:39.2667010Z 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-11-03T15:55:39.2667400Z 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-11-03T15:55:39.2667750Z 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-11-03T15:55:39.2668230Z 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-11-03T15:55:39.2668670Z 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-11-03T15:55:39.2669000Z 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-11-03T15:55:39.2669430Z 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-11-03T15:55:39.2669780Z 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-11-03T15:55:39.2670200Z 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-11-03T15:55:39.2670750Z 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-11-03T15:55:39.2671100Z 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-11-03T15:55:39.2671440Z 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-11-03T15:55:39.2671810Z 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-11-03T15:55:39.2672280Z 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-11-03T15:55:39.2672790Z 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-11-03T15:55:39.2673130Z 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-11-03T15:55:39.2673550Z 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-11-03T15:55:39.2673880Z 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-11-03T15:55:39.2674210Z 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-11-03T15:55:39.2674540Z 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-11-03T15:55:39.2674960Z 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-11-03T15:55:39.2675440Z 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-11-03T15:55:39.2675860Z 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-11-03T15:55:39.2676300Z 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-11-03T15:55:39.2676640Z 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-11-03T15:55:39.2677080Z 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-11-03T15:55:39.2677450Z 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-11-03T15:55:39.2677930Z 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-11-03T15:55:39.2678260Z 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-11-03T15:55:39.2678700Z 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-11-03T15:55:39.2679040Z 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-11-03T15:55:39.2679410Z 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-11-03T15:55:39.2679770Z 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-11-03T15:55:39.2680190Z 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-11-03T15:55:39.2680570Z 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-11-03T15:55:39.2680890Z 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-11-03T15:55:39.2681260Z 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-11-03T15:55:39.2681590Z 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-11-03T15:55:39.2681920Z 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-11-03T15:55:39.2682250Z 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-11-03T15:55:39.2682580Z 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-11-03T15:55:39.2682990Z 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-11-03T15:55:39.2683370Z 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-11-03T15:55:39.2683750Z 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-11-03T15:55:39.2684160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.2684600Z 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-11-03T15:55:39.2685070Z 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-11-03T15:55:39.2685470Z 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-11-03T15:55:39.2685830Z 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-11-03T15:55:39.2686200Z 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-11-03T15:55:39.2686530Z 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-11-03T15:55:39.2686930Z 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-11-03T15:55:39.2687330Z 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-11-03T15:55:39.2687700Z 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-11-03T15:55:39.2688050Z 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-11-03T15:55:39.2688400Z 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-11-03T15:55:39.2688870Z 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-11-03T15:55:39.2689190Z 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-11-03T15:55:39.2689510Z 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-11-03T15:55:39.2689830Z 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-11-03T15:55:39.2690200Z 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-11-03T15:55:39.2690530Z 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-11-03T15:55:39.2690930Z 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-11-03T15:55:39.2691380Z 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-11-03T15:55:39.2691730Z 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-11-03T15:55:39.2692190Z 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-11-03T15:55:39.2692540Z 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-11-03T15:55:39.2692990Z 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-11-03T15:55:39.2693360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.2693710Z 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-11-03T15:55:39.2694130Z 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-11-03T15:55:39.2694570Z 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-11-03T15:55:39.2694930Z 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-11-03T15:55:39.2695370Z 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-11-03T15:55:39.2695700Z 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-11-03T15:55:39.2696140Z 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-11-03T15:55:39.2696580Z 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-11-03T15:55:39.2696950Z 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-11-03T15:55:39.2697310Z 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-11-03T15:55:39.2697650Z 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-11-03T15:55:39.2698070Z 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-11-03T15:55:39.2698450Z 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-11-03T15:55:39.2698860Z 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-11-03T15:55:39.2699200Z 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-11-03T15:55:39.2699530Z 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-11-03T15:55:39.2699930Z 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-11-03T15:55:39.2700260Z 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-11-03T15:55:39.2700630Z 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-11-03T15:55:39.2700970Z 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-11-03T15:55:39.2701300Z 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-11-03T15:55:39.2701710Z 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-11-03T15:55:39.2702080Z 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-11-03T15:55:39.2702450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.2702850Z 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-11-03T15:55:39.2703340Z 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-11-03T15:55:39.2703710Z 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-11-03T15:55:39.2708020Z 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-11-03T15:55:39.2709000Z 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-11-03T15:55:39.2715610Z 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-11-03T15:55:39.2716960Z 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-11-03T15:55:39.2718040Z 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-11-03T15:55:39.2725380Z 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-11-03T15:55:39.2726600Z 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-11-03T15:55:39.2733820Z 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-11-03T15:55:39.2734710Z 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-11-03T15:55:39.2735900Z 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-11-03T15:55:39.2741530Z 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-11-03T15:55:39.2742850Z 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-11-03T15:55:39.2749740Z 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-11-03T15:55:39.2750550Z 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-11-03T15:55:39.2751660Z 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-11-03T15:55:39.2757010Z 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-11-03T15:55:39.2758390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.2765170Z 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-11-03T15:55:39.2766130Z 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-11-03T15:55:39.2772560Z 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-11-03T15:55:39.2773950Z 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-11-03T15:55:39.2775100Z 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-11-03T15:55:39.2779960Z 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-11-03T15:55:39.2782400Z 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-11-03T15:55:39.2787700Z 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-11-03T15:55:39.2789100Z 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-11-03T15:55:39.2795520Z 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-11-03T15:55:39.2797640Z 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-11-03T15:55:39.2798670Z 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-11-03T15:55:39.2805150Z 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-11-03T15:55:39.2805990Z 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-11-03T15:55:39.2812810Z 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-11-03T15:55:39.2813610Z 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-11-03T15:55:39.2821020Z 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-11-03T15:55:39.2821810Z 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-11-03T15:55:39.2822950Z 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-11-03T15:55:39.2829250Z 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-11-03T15:55:39.2830100Z 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-11-03T15:55:39.2837770Z 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-11-03T15:55:39.2838750Z 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-11-03T15:55:39.2839740Z 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-11-03T15:55:39.2845440Z 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-11-03T15:55:39.2846820Z 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-11-03T15:55:39.2853520Z 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-11-03T15:55:39.2854380Z 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-11-03T15:55:39.2855480Z 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-11-03T15:55:39.2861020Z 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-11-03T15:55:39.2862240Z 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-11-03T15:55:39.2868800Z 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-11-03T15:55:39.2870180Z 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-11-03T15:55:39.2875950Z 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-11-03T15:55:39.2876740Z 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-11-03T15:55:39.2878040Z 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-11-03T15:55:39.2883780Z 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-11-03T15:55:39.2884590Z 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-11-03T15:55:39.2891200Z 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-11-03T15:55:39.2896430Z 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-11-03T15:55:39.2898680Z 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-11-03T15:55:39.2899830Z 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-11-03T15:55:39.2923950Z 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-11-03T15:55:39.2924730Z 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-11-03T15:55:39.2925790Z 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-11-03T15:55:39.2947820Z 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-11-03T15:55:39.2948560Z 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-11-03T15:55:39.2949920Z 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-11-03T15:55:39.2951020Z 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-11-03T15:55:39.2952190Z 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-11-03T15:55:39.2953380Z 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-11-03T15:55:39.2954510Z 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-11-03T15:55:39.2955650Z 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-11-03T15:55:39.2956810Z 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-11-03T15:55:39.2957940Z 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-11-03T15:55:39.2959040Z 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-11-03T15:55:39.2960190Z 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-11-03T15:55:39.2961350Z 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-11-03T15:55:39.2962390Z 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-11-03T15:55:39.2963590Z 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-11-03T15:55:39.2964660Z 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-11-03T15:55:39.2966810Z 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-11-03T15:55:39.2969840Z 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-11-03T15:55:39.2974520Z 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-11-03T15:55:39.2977270Z 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-11-03T15:55:39.2982010Z 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-11-03T15:55:39.2983820Z 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-11-03T15:55:39.2989320Z 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-11-03T15:55:39.2990830Z 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-11-03T15:55:39.2995550Z 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-11-03T15:55:39.2996340Z 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-11-03T15:55:39.3003290Z 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-11-03T15:55:39.3004140Z 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-11-03T15:55:39.3009810Z 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-11-03T15:55:39.3011040Z 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-11-03T15:55:39.3016400Z 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-11-03T15:55:39.3017250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.3023590Z 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-11-03T15:55:39.3024590Z 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-11-03T15:55:39.3030170Z 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-11-03T15:55:39.3031520Z 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-11-03T15:55:39.3037010Z 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-11-03T15:55:39.3037920Z 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-11-03T15:55:39.3043710Z 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-11-03T15:55:39.3045230Z 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-11-03T15:55:39.3051240Z 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-11-03T15:55:39.3051930Z 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-11-03T15:55:39.3058580Z 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-11-03T15:55:39.3059320Z 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-11-03T15:55:39.3065700Z 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-11-03T15:55:39.3066640Z 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-11-03T15:55:39.3067800Z 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-11-03T15:55:39.3073560Z 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-11-03T15:55:39.3074430Z 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-11-03T15:55:39.3080420Z 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-11-03T15:55:39.3081780Z 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-11-03T15:55:39.3088230Z 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-11-03T15:55:39.3088980Z 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-11-03T15:55:39.3095630Z 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-11-03T15:55:39.3096560Z 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-11-03T15:55:39.3097930Z 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-11-03T15:55:39.3104440Z 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-11-03T15:55:39.3105260Z 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-11-03T15:55:39.3111760Z 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-11-03T15:55:39.3113230Z 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-11-03T15:55:39.3120060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.3120910Z 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-11-03T15:55:39.3121940Z 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-11-03T15:55:39.3127300Z 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-11-03T15:55:39.3128660Z 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-11-03T15:55:39.3134850Z 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-11-03T15:55:39.3135660Z 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-11-03T15:55:39.3142690Z 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-11-03T15:55:39.3143480Z 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-11-03T15:55:39.3144580Z 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-11-03T15:55:39.3149980Z 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-11-03T15:55:39.3152320Z 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-11-03T15:55:39.3158070Z 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-11-03T15:55:39.3158910Z 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-11-03T15:55:39.3165190Z 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-11-03T15:55:39.3166610Z 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-11-03T15:55:39.3167720Z 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-11-03T15:55:39.3175000Z 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-11-03T15:55:39.3175750Z 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-11-03T15:55:39.3182920Z 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-11-03T15:55:39.3183750Z 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-11-03T15:55:39.3190820Z 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-11-03T15:55:39.3191860Z 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-11-03T15:55:39.3192910Z 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-11-03T15:55:39.3198310Z 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-11-03T15:55:39.3200710Z 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-11-03T15:55:39.3205950Z 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-11-03T15:55:39.3206840Z 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-11-03T15:55:39.3208630Z 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-11-03T15:55:39.3214010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.3214930Z 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-11-03T15:55:39.3221460Z 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-11-03T15:55:39.3223210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/deg2rad_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.3229140Z 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-11-03T15:55:39.3229760Z 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-11-03T15:55:39.3231430Z 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-11-03T15:55:39.3238630Z 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-11-03T15:55:39.3239420Z 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-11-03T15:55:39.3246410Z 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-11-03T15:55:39.3247690Z 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-11-03T15:55:39.3253680Z 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-11-03T15:55:39.3254600Z 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-11-03T15:55:39.3255630Z 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-11-03T15:55:39.3261640Z 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-11-03T15:55:39.3263130Z 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-11-03T15:55:39.3269440Z 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-11-03T15:55:39.3270220Z 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-11-03T15:55:39.3271350Z 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-11-03T15:55:39.3277630Z 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-11-03T15:55:39.3278510Z 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-11-03T15:55:39.3285610Z 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-11-03T15:55:39.3287080Z 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-11-03T15:55:39.3293490Z 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-11-03T15:55:39.3294700Z 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-11-03T15:55:39.3295830Z 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-11-03T15:55:39.3301360Z 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-11-03T15:55:39.3302110Z 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-11-03T15:55:39.3309250Z 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-11-03T15:55:39.3311220Z 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-11-03T15:55:39.3312480Z 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-11-03T15:55:39.3319300Z 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-11-03T15:55:39.3320860Z 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-11-03T15:55:39.3324300Z 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-11-03T15:55:39.3327520Z 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-11-03T15:55:39.3328270Z 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-11-03T15:55:39.3329400Z 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-11-03T15:55:39.3333760Z 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-11-03T15:55:39.3335140Z 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-11-03T15:55:39.3341780Z 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-11-03T15:55:39.3350080Z 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-11-03T15:55:39.3350840Z 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-11-03T15:55:39.3351900Z 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-11-03T15:55:39.3357920Z 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-11-03T15:55:39.3359270Z 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-11-03T15:55:39.3365460Z 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-11-03T15:55:39.3366880Z 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-11-03T15:55:39.3368180Z 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-11-03T15:55:39.3375210Z 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-11-03T15:55:39.3376120Z 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-11-03T15:55:39.3383570Z 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-11-03T15:55:39.3384250Z 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-11-03T15:55:39.3390890Z 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-11-03T15:55:39.3391740Z 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-11-03T15:55:39.3392760Z 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-11-03T15:55:39.3398510Z 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-11-03T15:55:39.3399850Z 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-11-03T15:55:39.3407070Z 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-11-03T15:55:39.3407910Z 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-11-03T15:55:39.3409240Z 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-11-03T15:55:39.3414700Z 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-11-03T15:55:39.3416180Z 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-11-03T15:55:39.3422180Z 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-11-03T15:55:39.3423670Z 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-11-03T15:55:39.3424870Z 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-11-03T15:55:39.3431330Z 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-11-03T15:55:39.3432270Z 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-11-03T15:55:39.3439240Z 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-11-03T15:55:39.3440250Z 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-11-03T15:55:39.3447150Z 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-11-03T15:55:39.3447970Z 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-11-03T15:55:39.3449010Z 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-11-03T15:55:39.3454740Z 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-11-03T15:55:39.3457190Z 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-11-03T15:55:39.3462970Z 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-11-03T15:55:39.3463760Z 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-11-03T15:55:39.3464790Z 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-11-03T15:55:39.3470880Z 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-11-03T15:55:39.3471630Z 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-11-03T15:55:39.3479340Z 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-11-03T15:55:39.3480190Z 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-11-03T15:55:39.3487420Z 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-11-03T15:55:39.3488170Z 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-11-03T15:55:39.3489290Z 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-11-03T15:55:39.3494960Z 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-11-03T15:55:39.3497290Z 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-11-03T15:55:39.3502890Z 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-11-03T15:55:39.3503730Z 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-11-03T15:55:39.3505680Z 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-11-03T15:55:39.3511210Z 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-11-03T15:55:39.3512090Z 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-11-03T15:55:39.3515980Z 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-11-03T15:55:39.3520840Z 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-11-03T15:55:39.3523010Z 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-11-03T15:55:39.3524070Z 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-11-03T15:55:39.3530180Z 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-11-03T15:55:39.3531550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.3538290Z 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-11-03T15:55:39.3539130Z 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-11-03T15:55:39.3545280Z 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-11-03T15:55:39.3547720Z 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-11-03T15:55:39.3548620Z 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-11-03T15:55:39.3555070Z 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-11-03T15:55:39.3555850Z 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-11-03T15:55:39.3562990Z 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-11-03T15:55:39.3563770Z 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-11-03T15:55:39.3570930Z 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-11-03T15:55:39.3571900Z 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-11-03T15:55:39.3573000Z 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-11-03T15:55:39.3579840Z 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-11-03T15:55:39.3580640Z 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-11-03T15:55:39.3588030Z 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-11-03T15:55:39.3588960Z 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-11-03T15:55:39.3590030Z 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-11-03T15:55:39.3595940Z 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-11-03T15:55:39.3597310Z 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-11-03T15:55:39.3603350Z 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-11-03T15:55:39.3604010Z 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-11-03T15:55:39.3605090Z 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-11-03T15:55:39.3611230Z 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-11-03T15:55:39.3612640Z 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-11-03T15:55:39.3618990Z 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-11-03T15:55:39.3620420Z 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-11-03T15:55:39.3621570Z 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-11-03T15:55:39.3628370Z 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-11-03T15:55:39.3629210Z 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-11-03T15:55:39.3636100Z 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-11-03T15:55:39.3643730Z 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-11-03T15:55:39.3645040Z 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-11-03T15:55:39.3651280Z 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-11-03T15:55:39.3652240Z 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-11-03T15:55:39.3659840Z 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-11-03T15:55:39.3660760Z 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-11-03T15:55:39.3668050Z 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-11-03T15:55:39.3668650Z 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-11-03T15:55:39.3674960Z 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-11-03T15:55:39.3676470Z 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-11-03T15:55:39.3683330Z 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-11-03T15:55:39.3684320Z 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-11-03T15:55:39.3685690Z 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-11-03T15:55:39.3691480Z 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-11-03T15:55:39.3699160Z 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-11-03T15:55:39.3708850Z 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-11-03T15:55:39.3709710Z 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-11-03T15:55:39.3710880Z 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-11-03T15:55:39.3714370Z 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-11-03T15:55:39.3715790Z 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-11-03T15:55:39.3717980Z 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-11-03T15:55:39.3719010Z 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-11-03T15:55:39.3723870Z 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-11-03T15:55:39.3724710Z 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-11-03T15:55:39.3732140Z 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-11-03T15:55:39.3732870Z 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-11-03T15:55:39.3740150Z 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-11-03T15:55:39.3740880Z 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-11-03T15:55:39.3742020Z 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-11-03T15:55:39.3747890Z 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-11-03T15:55:39.3749180Z 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-11-03T15:55:39.3756590Z 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-11-03T15:55:39.3757240Z 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-11-03T15:55:39.3758510Z 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-11-03T15:55:39.3763650Z 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-11-03T15:55:39.3765190Z 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-11-03T15:55:39.3771410Z 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-11-03T15:55:39.3772950Z 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-11-03T15:55:39.3779580Z 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-11-03T15:55:39.3780390Z 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-11-03T15:55:39.3781680Z 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-11-03T15:55:39.3788380Z 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-11-03T15:55:39.3789260Z 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-11-03T15:55:39.3796030Z 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-11-03T15:55:39.3797450Z 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-11-03T15:55:39.3803180Z 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-11-03T15:55:39.3804010Z 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-11-03T15:55:39.3805100Z 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-11-03T15:55:39.3811060Z 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-11-03T15:55:39.3812550Z 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-11-03T15:55:39.3818540Z 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-11-03T15:55:39.3820070Z 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-11-03T15:55:39.3821270Z 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-11-03T15:55:39.3828000Z 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-11-03T15:55:39.3829060Z 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-11-03T15:55:39.3835130Z 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-11-03T15:55:39.3836580Z 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-11-03T15:55:39.3837900Z 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-11-03T15:55:39.3844490Z 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-11-03T15:55:39.3845330Z 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-11-03T15:55:39.3852210Z 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-11-03T15:55:39.3853070Z 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-11-03T15:55:39.3860260Z 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-11-03T15:55:39.3860880Z 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-11-03T15:55:39.3867610Z 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-11-03T15:55:39.3868370Z 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-11-03T15:55:39.3874960Z 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-11-03T15:55:39.3876360Z 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-11-03T15:55:39.3882860Z 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-11-03T15:55:39.3883720Z 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-11-03T15:55:39.3884860Z 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-11-03T15:55:39.3891010Z 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-11-03T15:55:39.3891650Z 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-11-03T15:55:39.3898730Z 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-11-03T15:55:39.3900040Z 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-11-03T15:55:39.3907510Z 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-11-03T15:55:39.3908590Z 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-11-03T15:55:39.3909570Z 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-11-03T15:55:39.3915420Z 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-11-03T15:55:39.3917870Z 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-11-03T15:55:39.3923030Z 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-11-03T15:55:39.3923940Z 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-11-03T15:55:39.3925200Z 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-11-03T15:55:39.3930630Z 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-11-03T15:55:39.3931770Z 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-11-03T15:55:39.3938860Z 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-11-03T15:55:39.3939550Z 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-11-03T15:55:39.3946630Z 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-11-03T15:55:39.3947580Z 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-11-03T15:55:39.3948670Z 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-11-03T15:55:39.3954260Z 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-11-03T15:55:39.3955610Z 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-11-03T15:55:39.3961620Z 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-11-03T15:55:39.3962970Z 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-11-03T15:55:39.3964220Z 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-11-03T15:55:39.3971700Z 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-11-03T15:55:39.3972540Z 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-11-03T15:55:39.3980040Z 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-11-03T15:55:39.3981020Z 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-11-03T15:55:39.3988110Z 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-11-03T15:55:39.3988830Z 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-11-03T15:55:39.3990020Z 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-11-03T15:55:39.3996140Z 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-11-03T15:55:39.3996820Z 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-11-03T15:55:39.4004110Z 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-11-03T15:55:39.4004970Z 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-11-03T15:55:39.4006180Z 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-11-03T15:55:39.4011530Z 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-11-03T15:55:39.4013930Z 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-11-03T15:55:39.4019330Z 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-11-03T15:55:39.4020180Z 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-11-03T15:55:39.4022050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.4026750Z 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-11-03T15:55:39.4027540Z 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-11-03T15:55:39.4034810Z 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-11-03T15:55:39.4036220Z 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-11-03T15:55:39.4042790Z 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-11-03T15:55:39.4044100Z 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-11-03T15:55:39.4050660Z 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-11-03T15:55:39.4051470Z 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-11-03T15:55:39.4058560Z 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-11-03T15:55:39.4059970Z 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-11-03T15:55:39.4066100Z 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-11-03T15:55:39.4067110Z 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-11-03T15:55:39.4068220Z 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-11-03T15:55:39.4074300Z 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-11-03T15:55:39.4075070Z 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-11-03T15:55:39.4081810Z 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-11-03T15:55:39.4083310Z 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-11-03T15:55:39.4089550Z 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-11-03T15:55:39.4090380Z 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-11-03T15:55:39.4091670Z 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-11-03T15:55:39.4098530Z 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-11-03T15:55:39.4099500Z 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-11-03T15:55:39.4106060Z 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-11-03T15:55:39.4107950Z 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-11-03T15:55:39.4109030Z 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-11-03T15:55:39.4114400Z 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-11-03T15:55:39.4115260Z 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-11-03T15:55:39.4117200Z 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-11-03T15:55:39.4118460Z 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-11-03T15:55:39.4123920Z 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-11-03T15:55:39.4126560Z 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-11-03T15:55:39.4131700Z 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-11-03T15:55:39.4132630Z 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-11-03T15:55:39.4135320Z 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-11-03T15:55:39.4141140Z 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-11-03T15:55:39.4141940Z 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-11-03T15:55:39.4148790Z 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-11-03T15:55:39.4151160Z 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-11-03T15:55:39.4157160Z 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-11-03T15:55:39.4157840Z 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-11-03T15:55:39.4158910Z 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-11-03T15:55:39.4164450Z 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-11-03T15:55:39.4165260Z 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-11-03T15:55:39.4167210Z 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-11-03T15:55:39.4174040Z 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-11-03T15:55:39.4175480Z 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-11-03T15:55:39.4181590Z 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-11-03T15:55:39.4182390Z 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-11-03T15:55:39.4184650Z 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-11-03T15:55:39.4191190Z 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-11-03T15:55:39.4192050Z 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-11-03T15:55:39.4198800Z 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-11-03T15:55:39.4200340Z 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-11-03T15:55:39.4207040Z 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-11-03T15:55:39.4208120Z 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-11-03T15:55:39.4209180Z 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-11-03T15:55:39.4214270Z 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-11-03T15:55:39.4215130Z 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-11-03T15:55:39.4223890Z 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-11-03T15:55:39.4229780Z 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-11-03T15:55:39.4230610Z 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-11-03T15:55:39.4231710Z 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-11-03T15:55:39.4238180Z 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-11-03T15:55:39.4238950Z 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-11-03T15:55:39.4246160Z 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-11-03T15:55:39.4247430Z 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-11-03T15:55:39.4253530Z 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-11-03T15:55:39.4254380Z 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-11-03T15:55:39.4255450Z 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-11-03T15:55:39.4261350Z 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-11-03T15:55:39.4262940Z 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-11-03T15:55:39.4269220Z 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-11-03T15:55:39.4270680Z 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-11-03T15:55:39.4271790Z 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-11-03T15:55:39.4276650Z 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-11-03T15:55:39.4277630Z 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-11-03T15:55:39.4284180Z 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-11-03T15:55:39.4286450Z 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-11-03T15:55:39.4291960Z 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-11-03T15:55:39.4293480Z 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-11-03T15:55:39.4295400Z 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-11-03T15:55:39.4302070Z 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-11-03T15:55:39.4302860Z 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-11-03T15:55:39.4309590Z 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-11-03T15:55:39.4310550Z 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-11-03T15:55:39.4311700Z 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-11-03T15:55:39.4317210Z 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-11-03T15:55:39.4318760Z 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-11-03T15:55:39.4324800Z 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-11-03T15:55:39.4326230Z 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-11-03T15:55:39.4333120Z 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-11-03T15:55:39.4333950Z 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-11-03T15:55:39.4335120Z 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-11-03T15:55:39.4340940Z 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-11-03T15:55:39.4342270Z 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-11-03T15:55:39.4348870Z 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-11-03T15:55:39.4350230Z 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-11-03T15:55:39.4351340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_like_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.4358430Z 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-11-03T15:55:39.4359230Z 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-11-03T15:55:39.4366110Z 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-11-03T15:55:39.4367230Z 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-11-03T15:55:39.4373840Z 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-11-03T15:55:39.4374760Z 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-11-03T15:55:39.4375820Z 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-11-03T15:55:39.4382160Z 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-11-03T15:55:39.4383010Z 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-11-03T15:55:39.4390970Z 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-11-03T15:55:39.4391860Z 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-11-03T15:55:39.4393040Z 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-11-03T15:55:39.4398390Z 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-11-03T15:55:39.4399940Z 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-11-03T15:55:39.4406110Z 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-11-03T15:55:39.4406960Z 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-11-03T15:55:39.4408110Z 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-11-03T15:55:39.4413860Z 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-11-03T15:55:39.4415260Z 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-11-03T15:55:39.4423510Z 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-11-03T15:55:39.4430010Z 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-11-03T15:55:39.4431010Z 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-11-03T15:55:39.4432110Z 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-11-03T15:55:39.4437530Z 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-11-03T15:55:39.4438730Z 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-11-03T15:55:39.4445850Z 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-11-03T15:55:39.4446550Z 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-11-03T15:55:39.4453830Z 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-11-03T15:55:39.4454640Z 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-11-03T15:55:39.4455800Z 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-11-03T15:55:39.4461660Z 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-11-03T15:55:39.4462450Z 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-11-03T15:55:39.4469220Z 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-11-03T15:55:39.4470160Z 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-11-03T15:55:39.4471280Z 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-11-03T15:55:39.4477560Z 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-11-03T15:55:39.4478420Z 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-11-03T15:55:39.4485950Z 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-11-03T15:55:39.4487380Z 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-11-03T15:55:39.4493420Z 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-11-03T15:55:39.4494310Z 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-11-03T15:55:39.4495490Z 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-11-03T15:55:39.4500990Z 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-11-03T15:55:39.4501860Z 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-11-03T15:55:39.4509430Z 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-11-03T15:55:39.4510250Z 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-11-03T15:55:39.4517230Z 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-11-03T15:55:39.4518110Z 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-11-03T15:55:39.4519300Z 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-11-03T15:55:39.4525230Z 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-11-03T15:55:39.4526030Z 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-11-03T15:55:39.4533400Z 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-11-03T15:55:39.4534180Z 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-11-03T15:55:39.4535290Z 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-11-03T15:55:39.4541050Z 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-11-03T15:55:39.4542470Z 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-11-03T15:55:39.4549140Z 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-11-03T15:55:39.4550060Z 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-11-03T15:55:39.4551100Z 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-11-03T15:55:39.4556840Z 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-11-03T15:55:39.4564800Z 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-11-03T15:55:39.4566180Z 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-11-03T15:55:39.4572810Z 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-11-03T15:55:39.4573740Z 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-11-03T15:55:39.4575110Z 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-11-03T15:55:39.4580690Z 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-11-03T15:55:39.4581640Z 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-11-03T15:55:39.4589210Z 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-11-03T15:55:39.4590670Z 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-11-03T15:55:39.4597840Z 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-11-03T15:55:39.4598720Z 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-11-03T15:55:39.4599880Z 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-11-03T15:55:39.4605270Z 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-11-03T15:55:39.4606180Z 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-11-03T15:55:39.4613140Z 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-11-03T15:55:39.4614010Z 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-11-03T15:55:39.4615130Z 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-11-03T15:55:39.4620980Z 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-11-03T15:55:39.4622440Z 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-11-03T15:55:39.4628860Z 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-11-03T15:55:39.4630410Z 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-11-03T15:55:39.4631600Z 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-11-03T15:55:39.4638610Z 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-11-03T15:55:39.4639470Z 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-11-03T15:55:39.4646340Z 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-11-03T15:55:39.4647190Z 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-11-03T15:55:39.4654310Z 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-11-03T15:55:39.4655140Z 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-11-03T15:55:39.4656290Z 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-11-03T15:55:39.4662240Z 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-11-03T15:55:39.4663140Z 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-11-03T15:55:39.4670600Z 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-11-03T15:55:39.4671390Z 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-11-03T15:55:39.4672590Z 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-11-03T15:55:39.4678760Z 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-11-03T15:55:39.4679460Z 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-11-03T15:55:39.4686420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.4687260Z 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-11-03T15:55:39.4693290Z 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-11-03T15:55:39.4693860Z 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-11-03T15:55:39.4697910Z 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-11-03T15:55:39.4702040Z 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-11-03T15:55:39.4702890Z 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-11-03T15:55:39.4706420Z 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-11-03T15:55:39.4710680Z 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-11-03T15:55:39.4711420Z 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-11-03T15:55:39.4715830Z 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-11-03T15:55:39.4720740Z 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-11-03T15:55:39.4723130Z 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-11-03T15:55:39.4724170Z 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-11-03T15:55:39.4730610Z 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-11-03T15:55:39.4731500Z 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-11-03T15:55:39.4738840Z 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-11-03T15:55:39.4739490Z 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-11-03T15:55:39.4745600Z 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-11-03T15:55:39.4747000Z 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-11-03T15:55:39.4748230Z 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-11-03T15:55:39.4755150Z 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-11-03T15:55:39.4756010Z 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-11-03T15:55:39.4763250Z 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-11-03T15:55:39.4764090Z 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-11-03T15:55:39.4771300Z 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-11-03T15:55:39.4772270Z 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-11-03T15:55:39.4773310Z 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-11-03T15:55:39.4779060Z 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-11-03T15:55:39.4780000Z 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-11-03T15:55:39.4786830Z 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-11-03T15:55:39.4787580Z 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-11-03T15:55:39.4788630Z 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-11-03T15:55:39.4794560Z 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-11-03T15:55:39.4795970Z 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-11-03T15:55:39.4801950Z 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-11-03T15:55:39.4803500Z 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-11-03T15:55:39.4804840Z 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-11-03T15:55:39.4811630Z 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-11-03T15:55:39.4812480Z 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-11-03T15:55:39.4819750Z 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-11-03T15:55:39.4820690Z 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-11-03T15:55:39.4827670Z 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-11-03T15:55:39.4828540Z 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-11-03T15:55:39.4829760Z 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-11-03T15:55:39.4835400Z 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-11-03T15:55:39.4836870Z 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-11-03T15:55:39.4843330Z 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-11-03T15:55:39.4844390Z 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-11-03T15:55:39.4845720Z 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-11-03T15:55:39.4851040Z 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-11-03T15:55:39.4851710Z 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-11-03T15:55:39.4858890Z 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-11-03T15:55:39.4867130Z 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-11-03T15:55:39.4868170Z 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-11-03T15:55:39.4869460Z 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-11-03T15:55:39.4874390Z 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-11-03T15:55:39.4875910Z 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-11-03T15:55:39.4882600Z 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-11-03T15:55:39.4883700Z 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-11-03T15:55:39.4884980Z 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-11-03T15:55:39.4890230Z 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-11-03T15:55:39.4891530Z 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-11-03T15:55:39.4898880Z 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-11-03T15:55:39.4899670Z 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-11-03T15:55:39.4906350Z 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-11-03T15:55:39.4907320Z 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-11-03T15:55:39.4908340Z 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-11-03T15:55:39.4914030Z 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-11-03T15:55:39.4915440Z 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-11-03T15:55:39.4921800Z 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-11-03T15:55:39.4923380Z 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-11-03T15:55:39.4924540Z 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-11-03T15:55:39.4931830Z 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-11-03T15:55:39.4932750Z 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-11-03T15:55:39.4939490Z 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-11-03T15:55:39.4940930Z 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-11-03T15:55:39.4947320Z 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-11-03T15:55:39.4948180Z 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-11-03T15:55:39.4949270Z 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-11-03T15:55:39.4955310Z 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-11-03T15:55:39.4956650Z 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-11-03T15:55:39.4963210Z 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-11-03T15:55:39.4963970Z 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-11-03T15:55:39.4965230Z 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-11-03T15:55:39.4970650Z 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-11-03T15:55:39.4971590Z 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-11-03T15:55:39.4978340Z 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-11-03T15:55:39.4979770Z 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-11-03T15:55:39.4987230Z 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-11-03T15:55:39.4988220Z 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-11-03T15:55:39.4989170Z 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-11-03T15:55:39.4995540Z 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-11-03T15:55:39.4996400Z 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-11-03T15:55:39.5003350Z 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-11-03T15:55:39.5004440Z 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-11-03T15:55:39.5005410Z 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-11-03T15:55:39.5010990Z 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-11-03T15:55:39.5012360Z 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-11-03T15:55:39.5019170Z 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-11-03T15:55:39.5019870Z 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-11-03T15:55:39.5021010Z 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-11-03T15:55:39.5027770Z 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-11-03T15:55:39.5028860Z 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-11-03T15:55:39.5035100Z 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-11-03T15:55:39.5036420Z 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-11-03T15:55:39.5042570Z 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-11-03T15:55:39.5043340Z 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-11-03T15:55:39.5044440Z 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-11-03T15:55:39.5050130Z 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-11-03T15:55:39.5050970Z 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-11-03T15:55:39.5058130Z 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-11-03T15:55:39.5059350Z 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-11-03T15:55:39.5065900Z 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-11-03T15:55:39.5066670Z 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-11-03T15:55:39.5068020Z 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-11-03T15:55:39.5073560Z 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-11-03T15:55:39.5075960Z 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-11-03T15:55:39.5081810Z 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-11-03T15:55:39.5082640Z 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-11-03T15:55:39.5086830Z 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-11-03T15:55:39.5087740Z 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-11-03T15:55:39.5091160Z 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-11-03T15:55:39.5095630Z 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-11-03T15:55:39.5096440Z 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-11-03T15:55:39.5104240Z 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-11-03T15:55:39.5105010Z 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-11-03T15:55:39.5110410Z 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-11-03T15:55:39.5112750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.5118070Z 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-11-03T15:55:39.5118910Z 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-11-03T15:55:39.5121220Z 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-11-03T15:55:39.5127530Z 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-11-03T15:55:39.5128510Z 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-11-03T15:55:39.5135640Z 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-11-03T15:55:39.5136980Z 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-11-03T15:55:39.5143380Z 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-11-03T15:55:39.5144270Z 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-11-03T15:55:39.5145570Z 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-11-03T15:55:39.5151450Z 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-11-03T15:55:39.5152290Z 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-11-03T15:55:39.5159230Z 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-11-03T15:55:39.5160550Z 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-11-03T15:55:39.5166720Z 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-11-03T15:55:39.5167610Z 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-11-03T15:55:39.5168740Z 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-11-03T15:55:39.5174450Z 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-11-03T15:55:39.5175910Z 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-11-03T15:55:39.5182250Z 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-11-03T15:55:39.5183780Z 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-11-03T15:55:39.5185140Z 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-11-03T15:55:39.5191840Z 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-11-03T15:55:39.5192760Z 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-11-03T15:55:39.5199770Z 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-11-03T15:55:39.5200520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.5207330Z 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-11-03T15:55:39.5208580Z 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-11-03T15:55:39.5209300Z 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-11-03T15:55:39.5215470Z 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-11-03T15:55:39.5216680Z 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-11-03T15:55:39.5222970Z 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-11-03T15:55:39.5223850Z 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-11-03T15:55:39.5225150Z 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-11-03T15:55:39.5230720Z 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-11-03T15:55:39.5231700Z 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-11-03T15:55:39.5238420Z 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-11-03T15:55:39.5239950Z 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-11-03T15:55:39.5246290Z 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-11-03T15:55:39.5247060Z 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-11-03T15:55:39.5248290Z 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-11-03T15:55:39.5254610Z 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-11-03T15:55:39.5255450Z 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-11-03T15:55:39.5262310Z 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-11-03T15:55:39.5263650Z 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-11-03T15:55:39.5270570Z 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-11-03T15:55:39.5271550Z 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-11-03T15:55:39.5272510Z 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-11-03T15:55:39.5279600Z 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-11-03T15:55:39.5280410Z 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-11-03T15:55:39.5287850Z 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-11-03T15:55:39.5288780Z 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-11-03T15:55:39.5289890Z 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-11-03T15:55:39.5296100Z 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-11-03T15:55:39.5296870Z 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-11-03T15:55:39.5303920Z 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-11-03T15:55:39.5304740Z 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-11-03T15:55:39.5305860Z 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-11-03T15:55:39.5312060Z 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-11-03T15:55:39.5313360Z 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-11-03T15:55:39.5319990Z 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-11-03T15:55:39.5320840Z 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-11-03T15:55:39.5322350Z 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-11-03T15:55:39.5327760Z 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-11-03T15:55:39.5328620Z 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-11-03T15:55:39.5336290Z 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-11-03T15:55:39.5337100Z 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-11-03T15:55:39.5344310Z 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-11-03T15:55:39.5345150Z 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-11-03T15:55:39.5346200Z 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-11-03T15:55:39.5352630Z 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-11-03T15:55:39.5353560Z 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-11-03T15:55:39.5360540Z 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-11-03T15:55:39.5361440Z 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-11-03T15:55:39.5362530Z 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-11-03T15:55:39.5368340Z 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-11-03T15:55:39.5369780Z 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-11-03T15:55:39.5376890Z 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-11-03T15:55:39.5377860Z 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-11-03T15:55:39.5378940Z 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-11-03T15:55:39.5385130Z 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-11-03T15:55:39.5386000Z 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-11-03T15:55:39.5393540Z 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-11-03T15:55:39.5394540Z 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-11-03T15:55:39.5395670Z 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-11-03T15:55:39.5401230Z 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-11-03T15:55:39.5402620Z 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-11-03T15:55:39.5408890Z 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-11-03T15:55:39.5409810Z 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-11-03T15:55:39.5411110Z 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-11-03T15:55:39.5417740Z 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-11-03T15:55:39.5418430Z 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-11-03T15:55:39.5425430Z 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-11-03T15:55:39.5426810Z 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-11-03T15:55:39.5433260Z 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-11-03T15:55:39.5434110Z 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-11-03T15:55:39.5435290Z 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-11-03T15:55:39.5441960Z 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-11-03T15:55:39.5442900Z 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-11-03T15:55:39.5450380Z 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-11-03T15:55:39.5451190Z 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-11-03T15:55:39.5452440Z 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-11-03T15:55:39.5458300Z 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-11-03T15:55:39.5459700Z 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-11-03T15:55:39.5465600Z 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-11-03T15:55:39.5466950Z 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-11-03T15:55:39.5468060Z 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-11-03T15:55:39.5474160Z 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-11-03T15:55:39.5474960Z 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-11-03T15:55:39.5482300Z 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-11-03T15:55:39.5484520Z 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-11-03T15:55:39.5485670Z 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-11-03T15:55:39.5491770Z 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-11-03T15:55:39.5492620Z 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-11-03T15:55:39.5493830Z 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-11-03T15:55:39.5501540Z 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-11-03T15:55:39.5502340Z 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-11-03T15:55:39.5509420Z 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-11-03T15:55:39.5510930Z 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-11-03T15:55:39.5517080Z 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-11-03T15:55:39.5517880Z 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-11-03T15:55:39.5518970Z 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-11-03T15:55:39.5524620Z 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-11-03T15:55:39.5526040Z 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-11-03T15:55:39.5532390Z 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-11-03T15:55:39.5533290Z 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-11-03T15:55:39.5535140Z 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-11-03T15:55:39.5541440Z 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-11-03T15:55:39.5542240Z 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-11-03T15:55:39.5549470Z 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-11-03T15:55:39.5550340Z 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-11-03T15:55:39.5557170Z 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-11-03T15:55:39.5557850Z 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-11-03T15:55:39.5559000Z 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-11-03T15:55:39.5564910Z 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-11-03T15:55:39.5565870Z 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-11-03T15:55:39.5572510Z 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-11-03T15:55:39.5574080Z 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-11-03T15:55:39.5575150Z 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-11-03T15:55:39.5581620Z 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-11-03T15:55:39.5582700Z 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-11-03T15:55:39.5589140Z 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-11-03T15:55:39.5590260Z 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-11-03T15:55:39.5597170Z 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-11-03T15:55:39.5597970Z 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-11-03T15:55:39.5599050Z 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-11-03T15:55:39.5605010Z 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-11-03T15:55:39.5606410Z 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-11-03T15:55:39.5612530Z 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-11-03T15:55:39.5613950Z 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-11-03T15:55:39.5615300Z 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-11-03T15:55:39.5620070Z 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-11-03T15:55:39.5621500Z 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-11-03T15:55:39.5627640Z 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-11-03T15:55:39.5629470Z 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-11-03T15:55:39.5635960Z 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-11-03T15:55:39.5636950Z 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-11-03T15:55:39.5638030Z 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-11-03T15:55:39.5643770Z 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-11-03T15:55:39.5644680Z 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-11-03T15:55:39.5651060Z 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-11-03T15:55:39.5653230Z 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-11-03T15:55:39.5658980Z 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-11-03T15:55:39.5659740Z 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-11-03T15:55:39.5661500Z 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-11-03T15:55:39.5667690Z 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-11-03T15:55:39.5668640Z 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-11-03T15:55:39.5675270Z 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-11-03T15:55:39.5676640Z 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-11-03T15:55:39.5683750Z 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-11-03T15:55:39.5684700Z 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-11-03T15:55:39.5685880Z 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-11-03T15:55:39.5692180Z 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-11-03T15:55:39.5693100Z 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-11-03T15:55:39.5699960Z 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-11-03T15:55:39.5700840Z 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-11-03T15:55:39.5701990Z 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-11-03T15:55:39.5707820Z 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-11-03T15:55:39.5709210Z 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-11-03T15:55:39.5715860Z 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-11-03T15:55:39.5716810Z 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-11-03T15:55:39.5717850Z 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-11-03T15:55:39.5725560Z 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-11-03T15:55:39.5726330Z 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-11-03T15:55:39.5733490Z 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-11-03T15:55:39.5734350Z 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-11-03T15:55:39.5741080Z 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-11-03T15:55:39.5742000Z 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-11-03T15:55:39.5743060Z 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-11-03T15:55:39.5749310Z 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-11-03T15:55:39.5750170Z 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-11-03T15:55:39.5757150Z 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-11-03T15:55:39.5757960Z 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-11-03T15:55:39.5758970Z 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-11-03T15:55:39.5764820Z 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-11-03T15:55:39.5766140Z 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-11-03T15:55:39.5772120Z 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-11-03T15:55:39.5773720Z 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-11-03T15:55:39.5774950Z 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-11-03T15:55:39.5781450Z 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-11-03T15:55:39.5789050Z 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-11-03T15:55:39.5789830Z 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-11-03T15:55:39.5797370Z 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-11-03T15:55:39.5798440Z 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-11-03T15:55:39.5799480Z 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-11-03T15:55:39.5805210Z 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-11-03T15:55:39.5806090Z 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-11-03T15:55:39.5813210Z 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-11-03T15:55:39.5814250Z 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-11-03T15:55:39.5815390Z 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-11-03T15:55:39.5821010Z 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-11-03T15:55:39.5822300Z 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-11-03T15:55:39.5828890Z 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-11-03T15:55:39.5830260Z 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-11-03T15:55:39.5831400Z 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-11-03T15:55:39.5838680Z 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-11-03T15:55:39.5839590Z 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-11-03T15:55:39.5846170Z 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-11-03T15:55:39.5847520Z 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-11-03T15:55:39.5853760Z 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-11-03T15:55:39.5854560Z 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-11-03T15:55:39.5855660Z 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-11-03T15:55:39.5861900Z 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-11-03T15:55:39.5863380Z 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-11-03T15:55:39.5869520Z 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-11-03T15:55:39.5871240Z 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-11-03T15:55:39.5872390Z 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-11-03T15:55:39.5879210Z 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-11-03T15:55:39.5880170Z 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-11-03T15:55:39.5884760Z 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-11-03T15:55:39.5886860Z 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-11-03T15:55:39.5888020Z 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-11-03T15:55:39.5889120Z 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-11-03T15:55:39.5895140Z 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-11-03T15:55:39.5896030Z 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-11-03T15:55:39.5903570Z 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-11-03T15:55:39.5904720Z 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-11-03T15:55:39.5905960Z 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-11-03T15:55:39.5911310Z 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-11-03T15:55:39.5912930Z 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-11-03T15:55:39.5919180Z 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-11-03T15:55:39.5920130Z 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-11-03T15:55:39.5921220Z 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-11-03T15:55:39.5926950Z 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-11-03T15:55:39.5928320Z 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-11-03T15:55:39.5935020Z 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-11-03T15:55:39.5936380Z 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-11-03T15:55:39.5943320Z 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-11-03T15:55:39.5944340Z 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-11-03T15:55:39.5950870Z 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-11-03T15:55:39.5956250Z 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-11-03T15:55:39.5958580Z 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-11-03T15:55:39.5960310Z 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-11-03T15:55:39.5961310Z 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-11-03T15:55:39.5968540Z 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-11-03T15:55:39.5969390Z 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-11-03T15:55:39.5976590Z 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-11-03T15:55:39.5977780Z 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-11-03T15:55:39.5984420Z 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-11-03T15:55:39.5985310Z 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-11-03T15:55:39.5986390Z 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-11-03T15:55:39.5992430Z 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-11-03T15:55:39.5993490Z 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-11-03T15:55:39.6000320Z 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-11-03T15:55:39.6001180Z 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-11-03T15:55:39.6002320Z 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-11-03T15:55:39.6008400Z 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-11-03T15:55:39.6009180Z 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-11-03T15:55:39.6016770Z 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-11-03T15:55:39.6017670Z 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-11-03T15:55:39.6018760Z 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-11-03T15:55:39.6024540Z 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-11-03T15:55:39.6025820Z 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-11-03T15:55:39.6031860Z 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-11-03T15:55:39.6033400Z 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-11-03T15:55:39.6034980Z 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-11-03T15:55:39.6041450Z 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-11-03T15:55:39.6042300Z 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-11-03T15:55:39.6049300Z 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-11-03T15:55:39.6050220Z 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-11-03T15:55:39.6056960Z 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-11-03T15:55:39.6057930Z 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-11-03T15:55:39.6059030Z 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-11-03T15:55:39.6064970Z 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-11-03T15:55:39.6065840Z 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-11-03T15:55:39.6073440Z 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-11-03T15:55:39.6074560Z 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-11-03T15:55:39.6075780Z 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-11-03T15:55:39.6081350Z 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-11-03T15:55:39.6082630Z 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-11-03T15:55:39.6088930Z 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-11-03T15:55:39.6090350Z 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-11-03T15:55:39.6091600Z 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-11-03T15:55:39.6098350Z 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-11-03T15:55:39.6099170Z 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-11-03T15:55:39.6106140Z 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-11-03T15:55:39.6107070Z 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-11-03T15:55:39.6113710Z 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-11-03T15:55:39.6114770Z 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-11-03T15:55:39.6115890Z 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-11-03T15:55:39.6121650Z 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-11-03T15:55:39.6122990Z 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-11-03T15:55:39.6129460Z 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-11-03T15:55:39.6130340Z 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-11-03T15:55:39.6131400Z 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-11-03T15:55:39.6137100Z 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-11-03T15:55:39.6138630Z 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-11-03T15:55:39.6145450Z 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-11-03T15:55:39.6146390Z 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-11-03T15:55:39.6153970Z 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-11-03T15:55:39.6154850Z 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-11-03T15:55:39.6155910Z 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-11-03T15:55:39.6162180Z 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-11-03T15:55:39.6163030Z 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-11-03T15:55:39.6170180Z 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-11-03T15:55:39.6170970Z 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-11-03T15:55:39.6172030Z 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-11-03T15:55:39.6177950Z 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-11-03T15:55:39.6180340Z 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-11-03T15:55:39.6186230Z 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-11-03T15:55:39.6187100Z 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-11-03T15:55:39.6189210Z 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-11-03T15:55:39.6194390Z 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-11-03T15:55:39.6195210Z 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-11-03T15:55:39.6199450Z 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-11-03T15:55:39.6203910Z 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-11-03T15:55:39.6207650Z 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-11-03T15:55:39.6208510Z 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-11-03T15:55:39.6213050Z 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-11-03T15:55:39.6216290Z 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-11-03T15:55:39.6220490Z 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-11-03T15:55:39.6221310Z 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-11-03T15:55:39.6225520Z 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-11-03T15:55:39.6229580Z 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-11-03T15:55:39.6234580Z 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-11-03T15:55:39.6237640Z 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-11-03T15:55:39.6238440Z 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-11-03T15:55:39.6244710Z 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-11-03T15:55:39.6245640Z 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-11-03T15:55:39.6252100Z 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-11-03T15:55:39.6252980Z 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-11-03T15:55:39.6254300Z 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-11-03T15:55:39.6261600Z 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-11-03T15:55:39.6262460Z 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-11-03T15:55:39.6270390Z 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-11-03T15:55:39.6271250Z 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-11-03T15:55:39.6272390Z 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-11-03T15:55:39.6278020Z 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-11-03T15:55:39.6279430Z 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-11-03T15:55:39.6280620Z 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-11-03T15:55:39.6286880Z 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-11-03T15:55:39.6287830Z 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-11-03T15:55:39.6294100Z 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-11-03T15:55:39.6295480Z 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-11-03T15:55:39.6301650Z 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-11-03T15:55:39.6303170Z 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-11-03T15:55:39.6304270Z 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-11-03T15:55:39.6311200Z 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-11-03T15:55:39.6312170Z 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-11-03T15:55:39.6319020Z 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-11-03T15:55:39.6320000Z 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-11-03T15:55:39.6327150Z 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-11-03T15:55:39.6328180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grouped_mm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.6329220Z 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-11-03T15:55:39.6334680Z 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-11-03T15:55:39.6335510Z 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-11-03T15:55:39.6343500Z 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-11-03T15:55:39.6344400Z 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-11-03T15:55:39.6345540Z 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-11-03T15:55:39.6350930Z 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-11-03T15:55:39.6353310Z 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-11-03T15:55:39.6358720Z 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-11-03T15:55:39.6360140Z 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-11-03T15:55:39.6361440Z 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-11-03T15:55:39.6367490Z 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-11-03T15:55:39.6368530Z 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-11-03T15:55:39.6374470Z 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-11-03T15:55:39.6375800Z 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-11-03T15:55:39.6382070Z 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-11-03T15:55:39.6382940Z 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-11-03T15:55:39.6384730Z 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-11-03T15:55:39.6391300Z 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-11-03T15:55:39.6392210Z 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-11-03T15:55:39.6399780Z 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-11-03T15:55:39.6400530Z 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-11-03T15:55:39.6406860Z 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-11-03T15:55:39.6407740Z 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-11-03T15:55:39.6408890Z 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-11-03T15:55:39.6413860Z 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-11-03T15:55:39.6416090Z 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-11-03T15:55:39.6421980Z 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-11-03T15:55:39.6422870Z 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-11-03T15:55:39.6423920Z 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-11-03T15:55:39.6431060Z 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-11-03T15:55:39.6431900Z 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-11-03T15:55:39.6438880Z 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-11-03T15:55:39.6439750Z 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-11-03T15:55:39.6446890Z 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-11-03T15:55:39.6447790Z 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-11-03T15:55:39.6448820Z 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-11-03T15:55:39.6455020Z 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-11-03T15:55:39.6455980Z 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-11-03T15:55:39.6463230Z 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-11-03T15:55:39.6464090Z 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-11-03T15:55:39.6465490Z 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-11-03T15:55:39.6470830Z 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-11-03T15:55:39.6472200Z 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-11-03T15:55:39.6478210Z 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-11-03T15:55:39.6479570Z 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-11-03T15:55:39.6480920Z 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-11-03T15:55:39.6488130Z 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-11-03T15:55:39.6488980Z 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-11-03T15:55:39.6496260Z 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-11-03T15:55:39.6497090Z 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-11-03T15:55:39.6504250Z 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-11-03T15:55:39.6505140Z 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-11-03T15:55:39.6506230Z 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-11-03T15:55:39.6511580Z 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-11-03T15:55:39.6513740Z 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-11-03T15:55:39.6519390Z 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-11-03T15:55:39.6520240Z 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-11-03T15:55:39.6522010Z 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-11-03T15:55:39.6526840Z 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-11-03T15:55:39.6527840Z 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-11-03T15:55:39.6534440Z 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-11-03T15:55:39.6535920Z 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-11-03T15:55:39.6543010Z 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-11-03T15:55:39.6544010Z 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-11-03T15:55:39.6544790Z 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-11-03T15:55:39.6550380Z 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-11-03T15:55:39.6551750Z 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-11-03T15:55:39.6557660Z 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-11-03T15:55:39.6559010Z 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-11-03T15:55:39.6565880Z 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-11-03T15:55:39.6566800Z 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-11-03T15:55:39.6567600Z 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-11-03T15:55:39.6574890Z 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-11-03T15:55:39.6575660Z 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-11-03T15:55:39.6582620Z 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-11-03T15:55:39.6583470Z 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-11-03T15:55:39.6590580Z 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-11-03T15:55:39.6591490Z 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-11-03T15:55:39.6592650Z 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-11-03T15:55:39.6598230Z 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-11-03T15:55:39.6600180Z 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-11-03T15:55:39.6605620Z 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-11-03T15:55:39.6607020Z 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-11-03T15:55:39.6608420Z 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-11-03T15:55:39.6614490Z 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-11-03T15:55:39.6615480Z 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-11-03T15:55:39.6623090Z 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-11-03T15:55:39.6624110Z 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-11-03T15:55:39.6630900Z 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-11-03T15:55:39.6631790Z 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-11-03T15:55:39.6632880Z 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-11-03T15:55:39.6638300Z 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-11-03T15:55:39.6640330Z 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-11-03T15:55:39.6646140Z 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-11-03T15:55:39.6646950Z 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-11-03T15:55:39.6648690Z 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-11-03T15:55:39.6654760Z 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-11-03T15:55:39.6655680Z 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-11-03T15:55:39.6665410Z 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-11-03T15:55:39.6666410Z 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-11-03T15:55:39.6667520Z 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-11-03T15:55:39.6670220Z 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-11-03T15:55:39.6672380Z 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-11-03T15:55:39.6673600Z 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-11-03T15:55:39.6674780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.6679590Z 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-11-03T15:55:39.6681590Z 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-11-03T15:55:39.6687880Z 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-11-03T15:55:39.6688720Z 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-11-03T15:55:39.6696200Z 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-11-03T15:55:39.6697490Z 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-11-03T15:55:39.6704690Z 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-11-03T15:55:39.6705520Z 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-11-03T15:55:39.6706670Z 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-11-03T15:55:39.6713080Z 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-11-03T15:55:39.6713940Z 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-11-03T15:55:39.6720730Z 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-11-03T15:55:39.6721540Z 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-11-03T15:55:39.6722720Z 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-11-03T15:55:39.6728260Z 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-11-03T15:55:39.6729640Z 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-11-03T15:55:39.6736680Z 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-11-03T15:55:39.6737570Z 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-11-03T15:55:39.6738760Z 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-11-03T15:55:39.6744670Z 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-11-03T15:55:39.6752640Z 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-11-03T15:55:39.6754140Z 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-11-03T15:55:39.6755200Z 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-11-03T15:55:39.6760880Z 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-11-03T15:55:39.6762250Z 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-11-03T15:55:39.6769030Z 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-11-03T15:55:39.6769990Z 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-11-03T15:55:39.6771050Z 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-11-03T15:55:39.6777410Z 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-11-03T15:55:39.6778860Z 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-11-03T15:55:39.6785260Z 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-11-03T15:55:39.6786130Z 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-11-03T15:55:39.6788020Z 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-11-03T15:55:39.6794610Z 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-11-03T15:55:39.6795440Z 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-11-03T15:55:39.6802630Z 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-11-03T15:55:39.6803570Z 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-11-03T15:55:39.6810460Z 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-11-03T15:55:39.6811270Z 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-11-03T15:55:39.6812320Z 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-11-03T15:55:39.6818150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_physical_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.6819430Z 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-11-03T15:55:39.6826360Z 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-11-03T15:55:39.6827260Z 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-11-03T15:55:39.6828360Z 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-11-03T15:55:39.6833370Z 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-11-03T15:55:39.6835380Z 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-11-03T15:55:39.6840840Z 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-11-03T15:55:39.6842160Z 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-11-03T15:55:39.6848990Z 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-11-03T15:55:39.6849970Z 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-11-03T15:55:39.6851110Z 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-11-03T15:55:39.6858360Z 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-11-03T15:55:39.6859220Z 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-11-03T15:55:39.6867140Z 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-11-03T15:55:39.6868140Z 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-11-03T15:55:39.6874790Z 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-11-03T15:55:39.6875750Z 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-11-03T15:55:39.6876740Z 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-11-03T15:55:39.6882450Z 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-11-03T15:55:39.6887500Z 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-11-03T15:55:39.6890050Z 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-11-03T15:55:39.6891130Z 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-11-03T15:55:39.6892400Z 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-11-03T15:55:39.6898760Z 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-11-03T15:55:39.6899570Z 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-11-03T15:55:39.6906430Z 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-11-03T15:55:39.6907460Z 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-11-03T15:55:39.6908500Z 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-11-03T15:55:39.6914930Z 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-11-03T15:55:39.6915970Z 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-11-03T15:55:39.6922590Z 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-11-03T15:55:39.6923940Z 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-11-03T15:55:39.6931140Z 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-11-03T15:55:39.6931950Z 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-11-03T15:55:39.6933120Z 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-11-03T15:55:39.6938990Z 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-11-03T15:55:39.6940460Z 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-11-03T15:55:39.6947330Z 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-11-03T15:55:39.6948270Z 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-11-03T15:55:39.6949230Z 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-11-03T15:55:39.6955310Z 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-11-03T15:55:39.6956260Z 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-11-03T15:55:39.6957420Z 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-11-03T15:55:39.6964770Z 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-11-03T15:55:39.6965540Z 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-11-03T15:55:39.6973140Z 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-11-03T15:55:39.6973990Z 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-11-03T15:55:39.6980530Z 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-11-03T15:55:39.6981430Z 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-11-03T15:55:39.6982550Z 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-11-03T15:55:39.6988190Z 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-11-03T15:55:39.6990160Z 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-11-03T15:55:39.6995990Z 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-11-03T15:55:39.6996730Z 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-11-03T15:55:39.6997940Z 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-11-03T15:55:39.7003920Z 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-11-03T15:55:39.7004680Z 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-11-03T15:55:39.7011920Z 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-11-03T15:55:39.7012730Z 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-11-03T15:55:39.7020370Z 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-11-03T15:55:39.7021220Z 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-11-03T15:55:39.7022240Z 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-11-03T15:55:39.7027960Z 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-11-03T15:55:39.7029340Z 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-11-03T15:55:39.7035470Z 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-11-03T15:55:39.7036610Z 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-11-03T15:55:39.7037740Z 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-11-03T15:55:39.7044750Z 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-11-03T15:55:39.7045790Z 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-11-03T15:55:39.7052210Z 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-11-03T15:55:39.7053590Z 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-11-03T15:55:39.7060010Z 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-11-03T15:55:39.7061050Z 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-11-03T15:55:39.7062400Z 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-11-03T15:55:39.7068260Z 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-11-03T15:55:39.7069030Z 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-11-03T15:55:39.7076240Z 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-11-03T15:55:39.7077090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.7083810Z 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-11-03T15:55:39.7084820Z 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-11-03T15:55:39.7086070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.7091500Z 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-11-03T15:55:39.7092880Z 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-11-03T15:55:39.7100020Z 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-11-03T15:55:39.7100890Z 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-11-03T15:55:39.7101960Z 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-11-03T15:55:39.7107650Z 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-11-03T15:55:39.7108880Z 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-11-03T15:55:39.7115340Z 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-11-03T15:55:39.7117490Z 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-11-03T15:55:39.7118510Z 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-11-03T15:55:39.7124760Z 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-11-03T15:55:39.7125660Z 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-11-03T15:55:39.7132850Z 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-11-03T15:55:39.7133780Z 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-11-03T15:55:39.7141650Z 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-11-03T15:55:39.7142600Z 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-11-03T15:55:39.7143690Z 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-11-03T15:55:39.7149950Z 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-11-03T15:55:39.7150910Z 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-11-03T15:55:39.7157770Z 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-11-03T15:55:39.7158620Z 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-11-03T15:55:39.7159760Z 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-11-03T15:55:39.7165420Z 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-11-03T15:55:39.7166810Z 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-11-03T15:55:39.7173080Z 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-11-03T15:55:39.7173920Z 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-11-03T15:55:39.7175110Z 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-11-03T15:55:39.7180830Z 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-11-03T15:55:39.7181710Z 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-11-03T15:55:39.7188370Z 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-11-03T15:55:39.7189740Z 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-11-03T15:55:39.7196210Z 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-11-03T15:55:39.7197090Z 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-11-03T15:55:39.7198220Z 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-11-03T15:55:39.7204160Z 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-11-03T15:55:39.7204940Z 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-11-03T15:55:39.7211710Z 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-11-03T15:55:39.7213830Z 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-11-03T15:55:39.7219600Z 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-11-03T15:55:39.7220480Z 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-11-03T15:55:39.7222300Z 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-11-03T15:55:39.7227830Z 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-11-03T15:55:39.7232570Z 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-11-03T15:55:39.7237530Z 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-11-03T15:55:39.7241210Z 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-11-03T15:55:39.7245650Z 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-11-03T15:55:39.7246440Z 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-11-03T15:55:39.7250200Z 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-11-03T15:55:39.7254500Z 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-11-03T15:55:39.7257480Z 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-11-03T15:55:39.7258420Z 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-11-03T15:55:39.7263300Z 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-11-03T15:55:39.7265790Z 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-11-03T15:55:39.7270860Z 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-11-03T15:55:39.7271850Z 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-11-03T15:55:39.7278480Z 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-11-03T15:55:39.7279830Z 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-11-03T15:55:39.7286370Z 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-11-03T15:55:39.7287310Z 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-11-03T15:55:39.7288430Z 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-11-03T15:55:39.7294840Z 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-11-03T15:55:39.7295950Z 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-11-03T15:55:39.7302550Z 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-11-03T15:55:39.7303870Z 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-11-03T15:55:39.7310190Z 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-11-03T15:55:39.7310970Z 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-11-03T15:55:39.7312030Z 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-11-03T15:55:39.7317950Z 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-11-03T15:55:39.7319460Z 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-11-03T15:55:39.7326160Z 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-11-03T15:55:39.7326800Z 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-11-03T15:55:39.7338080Z 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-11-03T15:55:39.7341090Z 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-11-03T15:55:39.7344210Z 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-11-03T15:55:39.7351500Z 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-11-03T15:55:39.7352390Z 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-11-03T15:55:39.7353440Z 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-11-03T15:55:39.7354550Z 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-11-03T15:55:39.7355700Z 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-11-03T15:55:39.7356770Z 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-11-03T15:55:39.7359780Z 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-11-03T15:55:39.7360630Z 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-11-03T15:55:39.7364750Z 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-11-03T15:55:39.7365900Z 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-11-03T15:55:39.7372300Z 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-11-03T15:55:39.7373260Z 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-11-03T15:55:39.7379740Z 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-11-03T15:55:39.7380580Z 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-11-03T15:55:39.7386660Z 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-11-03T15:55:39.7387660Z 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-11-03T15:55:39.7393470Z 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-11-03T15:55:39.7394420Z 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-11-03T15:55:39.7400200Z 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-11-03T15:55:39.7401040Z 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-11-03T15:55:39.7406870Z 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-11-03T15:55:39.7407700Z 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-11-03T15:55:39.7413400Z 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-11-03T15:55:39.7414140Z 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-11-03T15:55:39.7419930Z 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-11-03T15:55:39.7420930Z 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-11-03T15:55:39.7426530Z 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-11-03T15:55:39.7428030Z 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-11-03T15:55:39.7434310Z 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-11-03T15:55:39.7435290Z 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-11-03T15:55:39.7441300Z 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-11-03T15:55:39.7442030Z 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-11-03T15:55:39.7448670Z 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-11-03T15:55:39.7449450Z 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-11-03T15:55:39.7457340Z 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-11-03T15:55:39.7458130Z 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-11-03T15:55:39.7459230Z 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-11-03T15:55:39.7464460Z 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-11-03T15:55:39.7466840Z 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-11-03T15:55:39.7467720Z 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-11-03T15:55:39.7471690Z 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-11-03T15:55:39.7473130Z 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-11-03T15:55:39.7476030Z 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-11-03T15:55:39.7480500Z 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-11-03T15:55:39.7485050Z 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-11-03T15:55:39.7489370Z 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-11-03T15:55:39.7493090Z 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-11-03T15:55:39.7497570Z 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-11-03T15:55:39.7498640Z 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-11-03T15:55:39.7502680Z 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-11-03T15:55:39.7507010Z 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-11-03T15:55:39.7712710Z 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-11-03T15:55:39.7713560Z 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-11-03T15:55:39.7714640Z 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-11-03T15:55:39.7715700Z 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-11-03T15:55:39.7716900Z 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-11-03T15:55:39.7717980Z 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-11-03T15:55:39.7719130Z 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-11-03T15:55:39.7720170Z 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-11-03T15:55:39.7721280Z 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-11-03T15:55:39.7722420Z 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-11-03T15:55:39.7723650Z 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-11-03T15:55:39.7724910Z 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-11-03T15:55:39.7725720Z 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-11-03T15:55:39.7726840Z 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-11-03T15:55:39.7727970Z 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-11-03T15:55:39.7729150Z 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-11-03T15:55:39.7730220Z 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-11-03T15:55:39.7731330Z 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-11-03T15:55:39.7732460Z 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-11-03T15:55:39.7733580Z 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-11-03T15:55:39.7734670Z 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-11-03T15:55:39.7735770Z 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-11-03T15:55:39.7736840Z 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-11-03T15:55:39.7737940Z 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-11-03T15:55:39.7739080Z 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-11-03T15:55:39.7740180Z 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-11-03T15:55:39.7741320Z 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-11-03T15:55:39.7742420Z 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-11-03T15:55:39.7743590Z 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-11-03T15:55:39.7744620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_norm_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.7745820Z 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-11-03T15:55:39.7746850Z 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-11-03T15:55:39.7747970Z 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-11-03T15:55:39.7749050Z 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-11-03T15:55:39.7750380Z 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-11-03T15:55:39.7751130Z 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-11-03T15:55:39.7752430Z 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-11-03T15:55:39.7753390Z 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-11-03T15:55:39.7754520Z 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-11-03T15:55:39.7755730Z 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-11-03T15:55:39.7756750Z 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-11-03T15:55:39.7757890Z 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-11-03T15:55:39.7759110Z 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-11-03T15:55:39.7760180Z 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-11-03T15:55:39.7761260Z 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-11-03T15:55:39.7762390Z 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-11-03T15:55:39.7763490Z 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-11-03T15:55:39.7764630Z 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-11-03T15:55:39.7765740Z 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-11-03T15:55:39.7766930Z 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-11-03T15:55:39.7768100Z 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-11-03T15:55:39.7769170Z 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-11-03T15:55:39.7770300Z 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-11-03T15:55:39.7771460Z 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-11-03T15:55:39.7772620Z 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-11-03T15:55:39.7774120Z 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-11-03T15:55:39.7774880Z 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-11-03T15:55:39.7775960Z 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-11-03T15:55:39.7777040Z 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-11-03T15:55:39.7778140Z 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-11-03T15:55:39.7779260Z 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-11-03T15:55:39.7780320Z 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-11-03T15:55:39.7781420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.7782530Z 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-11-03T15:55:39.7783610Z 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-11-03T15:55:39.7784670Z 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-11-03T15:55:39.7785950Z 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-11-03T15:55:39.7787130Z 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-11-03T15:55:39.7788130Z 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-11-03T15:55:39.7789360Z 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-11-03T15:55:39.7790460Z 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-11-03T15:55:39.7791400Z 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-11-03T15:55:39.7792520Z 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-11-03T15:55:39.7793630Z 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-11-03T15:55:39.7794650Z 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-11-03T15:55:39.7796030Z 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-11-03T15:55:39.7797220Z 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-11-03T15:55:39.7798300Z 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-11-03T15:55:39.7799340Z 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-11-03T15:55:39.7800460Z 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-11-03T15:55:39.7801500Z 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-11-03T15:55:39.7802620Z 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-11-03T15:55:39.7803810Z 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-11-03T15:55:39.7804850Z 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-11-03T15:55:39.7805970Z 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-11-03T15:55:39.7807140Z 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-11-03T15:55:39.7808140Z 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-11-03T15:55:39.7809240Z 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-11-03T15:55:39.7810330Z 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-11-03T15:55:39.7811470Z 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-11-03T15:55:39.7812680Z 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-11-03T15:55:39.7813900Z 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-11-03T15:55:39.7820870Z 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-11-03T15:55:39.7822340Z 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-11-03T15:55:39.7828520Z 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-11-03T15:55:39.7829540Z 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-11-03T15:55:39.7830770Z 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-11-03T15:55:39.7838000Z 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-11-03T15:55:39.7838880Z 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-11-03T15:55:39.7845870Z 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-11-03T15:55:39.7846830Z 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-11-03T15:55:39.7853560Z 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-11-03T15:55:39.7854390Z 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-11-03T15:55:39.7855440Z 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-11-03T15:55:39.7860960Z 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-11-03T15:55:39.7862350Z 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-11-03T15:55:39.7869030Z 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-11-03T15:55:39.7869890Z 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-11-03T15:55:39.7870960Z 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-11-03T15:55:39.7877890Z 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-11-03T15:55:39.7878790Z 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-11-03T15:55:39.7885500Z 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-11-03T15:55:39.7886520Z 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-11-03T15:55:39.7892840Z 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-11-03T15:55:39.7893470Z 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-11-03T15:55:39.7894590Z 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-11-03T15:55:39.7900210Z 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-11-03T15:55:39.7901020Z 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-11-03T15:55:39.7908780Z 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-11-03T15:55:39.7909590Z 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-11-03T15:55:39.7916960Z 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-11-03T15:55:39.7917820Z 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-11-03T15:55:39.7918920Z 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-11-03T15:55:39.7924660Z 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-11-03T15:55:39.7925660Z 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-11-03T15:55:39.7933650Z 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-11-03T15:55:39.7934640Z 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-11-03T15:55:39.7935690Z 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-11-03T15:55:39.7941150Z 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-11-03T15:55:39.7943150Z 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-11-03T15:55:39.7949340Z 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-11-03T15:55:39.7950120Z 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-11-03T15:55:39.7951410Z 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-11-03T15:55:39.7957260Z 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-11-03T15:55:39.7958160Z 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-11-03T15:55:39.7965220Z 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-11-03T15:55:39.7966120Z 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-11-03T15:55:39.7971600Z 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-11-03T15:55:39.7974000Z 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-11-03T15:55:39.7974750Z 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-11-03T15:55:39.7976780Z 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-11-03T15:55:39.7981490Z 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-11-03T15:55:39.7982430Z 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-11-03T15:55:39.7986320Z 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-11-03T15:55:39.7990690Z 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-11-03T15:55:39.7994470Z 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-11-03T15:55:39.8000530Z 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-11-03T15:55:39.8003670Z 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-11-03T15:55:39.8008810Z 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-11-03T15:55:39.8009640Z 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-11-03T15:55:39.8012250Z 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-11-03T15:55:39.8016810Z 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-11-03T15:55:39.8017660Z 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-11-03T15:55:39.8024840Z 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-11-03T15:55:39.8026170Z 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-11-03T15:55:39.8032770Z 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-11-03T15:55:39.8033470Z 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-11-03T15:55:39.8034760Z 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-11-03T15:55:39.8040680Z 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-11-03T15:55:39.8041410Z 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-11-03T15:55:39.8048120Z 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-11-03T15:55:39.8050510Z 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-11-03T15:55:39.8055810Z 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-11-03T15:55:39.8056610Z 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-11-03T15:55:39.8057840Z 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-11-03T15:55:39.8063800Z 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-11-03T15:55:39.8064660Z 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-11-03T15:55:39.8071840Z 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-11-03T15:55:39.8073130Z 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-11-03T15:55:39.8079540Z 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-11-03T15:55:39.8080410Z 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-11-03T15:55:39.8081430Z 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-11-03T15:55:39.8087560Z 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-11-03T15:55:39.8088400Z 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-11-03T15:55:39.8095520Z 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-11-03T15:55:39.8096850Z 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-11-03T15:55:39.8103240Z 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-11-03T15:55:39.8104160Z 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-11-03T15:55:39.8105410Z 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-11-03T15:55:39.8111500Z 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-11-03T15:55:39.8112410Z 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-11-03T15:55:39.8120030Z 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-11-03T15:55:39.8120870Z 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-11-03T15:55:39.8122060Z 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-11-03T15:55:39.8127610Z 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-11-03T15:55:39.8128970Z 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-11-03T15:55:39.8135510Z 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-11-03T15:55:39.8136510Z 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-11-03T15:55:39.8138140Z 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-11-03T15:55:39.8144710Z 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-11-03T15:55:39.8145620Z 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-11-03T15:55:39.8152060Z 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-11-03T15:55:39.8153480Z 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-11-03T15:55:39.8159920Z 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-11-03T15:55:39.8160820Z 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-11-03T15:55:39.8161930Z 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-11-03T15:55:39.8168690Z 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-11-03T15:55:39.8169690Z 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-11-03T15:55:39.8176350Z 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-11-03T15:55:39.8177150Z 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-11-03T15:55:39.8178310Z 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-11-03T15:55:39.8184420Z 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-11-03T15:55:39.8185670Z 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-11-03T15:55:39.8191920Z 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-11-03T15:55:39.8193530Z 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-11-03T15:55:39.8194610Z 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-11-03T15:55:39.8202060Z 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-11-03T15:55:39.8202790Z 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-11-03T15:55:39.8210490Z 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-11-03T15:55:39.8211330Z 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-11-03T15:55:39.8218210Z 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-11-03T15:55:39.8219290Z 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-11-03T15:55:39.8220340Z 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-11-03T15:55:39.8226360Z 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-11-03T15:55:39.8227320Z 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-11-03T15:55:39.8234170Z 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-11-03T15:55:39.8235060Z 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-11-03T15:55:39.8236210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.8242530Z 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-11-03T15:55:39.8243460Z 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-11-03T15:55:39.8250250Z 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-11-03T15:55:39.8251020Z 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-11-03T15:55:39.8252170Z 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-11-03T15:55:39.8258020Z 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-11-03T15:55:39.8260460Z 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-11-03T15:55:39.8265590Z 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-11-03T15:55:39.8267040Z 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-11-03T15:55:39.8269030Z 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-11-03T15:55:39.8274470Z 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-11-03T15:55:39.8275260Z 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-11-03T15:55:39.8278000Z 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-11-03T15:55:39.8283880Z 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-11-03T15:55:39.8286170Z 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-11-03T15:55:39.8291440Z 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-11-03T15:55:39.8292340Z 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-11-03T15:55:39.8294080Z 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-11-03T15:55:39.8301040Z 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-11-03T15:55:39.8302040Z 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-11-03T15:55:39.8308610Z 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-11-03T15:55:39.8310070Z 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-11-03T15:55:39.8316680Z 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-11-03T15:55:39.8317640Z 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-11-03T15:55:39.8318760Z 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-11-03T15:55:39.8324280Z 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-11-03T15:55:39.8325730Z 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-11-03T15:55:39.8332860Z 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-11-03T15:55:39.8333620Z 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-11-03T15:55:39.8339840Z 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-11-03T15:55:39.8340450Z 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-11-03T15:55:39.8341790Z 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-11-03T15:55:39.8345340Z 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-11-03T15:55:39.8350010Z 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-11-03T15:55:39.8354440Z 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-11-03T15:55:39.8358150Z 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-11-03T15:55:39.8358880Z 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-11-03T15:55:39.8359970Z 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-11-03T15:55:39.8366990Z 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-11-03T15:55:39.8368320Z 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-11-03T15:55:39.8369570Z 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-11-03T15:55:39.8373780Z 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-11-03T15:55:39.8376320Z 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-11-03T15:55:39.8377680Z 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-11-03T15:55:39.8383860Z 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-11-03T15:55:39.8392430Z 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-11-03T15:55:39.8393340Z 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-11-03T15:55:39.8400020Z 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-11-03T15:55:39.8400870Z 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-11-03T15:55:39.8401890Z 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-11-03T15:55:39.8407700Z 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-11-03T15:55:39.8408480Z 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-11-03T15:55:39.8415460Z 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-11-03T15:55:39.8416670Z 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-11-03T15:55:39.8422980Z 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-11-03T15:55:39.8423950Z 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-11-03T15:55:39.8425260Z 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-11-03T15:55:39.8431480Z 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-11-03T15:55:39.8432230Z 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-11-03T15:55:39.8439110Z 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-11-03T15:55:39.8440600Z 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-11-03T15:55:39.8447580Z 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-11-03T15:55:39.8448450Z 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-11-03T15:55:39.8449470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.8456000Z 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-11-03T15:55:39.8457040Z 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-11-03T15:55:39.8463990Z 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-11-03T15:55:39.8464740Z 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-11-03T15:55:39.8465950Z 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-11-03T15:55:39.8471810Z 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-11-03T15:55:39.8474350Z 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-11-03T15:55:39.8478820Z 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-11-03T15:55:39.8480200Z 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-11-03T15:55:39.8481450Z 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-11-03T15:55:39.8488450Z 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-11-03T15:55:39.8489350Z 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-11-03T15:55:39.8497010Z 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-11-03T15:55:39.8497760Z 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-11-03T15:55:39.8505680Z 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-11-03T15:55:39.8506460Z 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-11-03T15:55:39.8507610Z 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-11-03T15:55:39.8513850Z 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-11-03T15:55:39.8514630Z 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-11-03T15:55:39.8522360Z 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-11-03T15:55:39.8523110Z 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-11-03T15:55:39.8524190Z 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-11-03T15:55:39.8530040Z 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-11-03T15:55:39.8530840Z 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-11-03T15:55:39.8531960Z 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-11-03T15:55:39.8537920Z 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-11-03T15:55:39.8539260Z 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-11-03T15:55:39.8545540Z 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-11-03T15:55:39.8546490Z 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-11-03T15:55:39.8549290Z 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-11-03T15:55:39.8555390Z 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-11-03T15:55:39.8556270Z 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-11-03T15:55:39.8558330Z 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-11-03T15:55:39.8564610Z 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-11-03T15:55:39.8565900Z 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-11-03T15:55:39.8571880Z 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-11-03T15:55:39.8572760Z 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-11-03T15:55:39.8574480Z 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-11-03T15:55:39.8580400Z 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-11-03T15:55:39.8581200Z 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-11-03T15:55:39.8587950Z 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-11-03T15:55:39.8589920Z 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-11-03T15:55:39.8595830Z 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-11-03T15:55:39.8597200Z 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-11-03T15:55:39.8598430Z 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-11-03T15:55:39.8603690Z 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-11-03T15:55:39.8604460Z 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-11-03T15:55:39.8610740Z 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-11-03T15:55:39.8613150Z 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-11-03T15:55:39.8618680Z 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-11-03T15:55:39.8619420Z 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-11-03T15:55:39.8622110Z 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-11-03T15:55:39.8627450Z 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-11-03T15:55:39.8628230Z 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-11-03T15:55:39.8634540Z 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-11-03T15:55:39.8635950Z 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-11-03T15:55:39.8642450Z 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-11-03T15:55:39.8643420Z 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-11-03T15:55:39.8644480Z 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-11-03T15:55:39.8649600Z 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-11-03T15:55:39.8651880Z 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-11-03T15:55:39.8657430Z 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-11-03T15:55:39.8658770Z 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-11-03T15:55:39.8665450Z 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-11-03T15:55:39.8666500Z 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-11-03T15:55:39.8667640Z 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-11-03T15:55:39.8674150Z 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-11-03T15:55:39.8674970Z 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-11-03T15:55:39.8681480Z 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-11-03T15:55:39.8682750Z 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-11-03T15:55:39.8689730Z 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-11-03T15:55:39.8690410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_v2.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.8691660Z 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-11-03T15:55:39.8697460Z 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-11-03T15:55:39.8698930Z 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-11-03T15:55:39.8705140Z 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-11-03T15:55:39.8706630Z 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-11-03T15:55:39.8707840Z 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-11-03T15:55:39.8714600Z 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-11-03T15:55:39.8715430Z 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-11-03T15:55:39.8722390Z 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-11-03T15:55:39.8723220Z 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-11-03T15:55:39.8729810Z 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-11-03T15:55:39.8730660Z 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-11-03T15:55:39.8731750Z 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-11-03T15:55:39.8737250Z 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-11-03T15:55:39.8738230Z 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-11-03T15:55:39.8744900Z 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-11-03T15:55:39.8746290Z 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-11-03T15:55:39.8752640Z 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-11-03T15:55:39.8753970Z 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-11-03T15:55:39.8755400Z 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-11-03T15:55:39.8760030Z 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-11-03T15:55:39.8761570Z 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-11-03T15:55:39.8763560Z 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-11-03T15:55:39.8767650Z 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-11-03T15:55:39.8768990Z 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-11-03T15:55:39.8772640Z 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-11-03T15:55:39.8776320Z 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-11-03T15:55:39.8777860Z 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-11-03T15:55:39.8785710Z 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-11-03T15:55:39.8791370Z 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-11-03T15:55:39.8793580Z 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-11-03T15:55:39.8799210Z 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-11-03T15:55:39.8800050Z 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-11-03T15:55:39.8801140Z 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-11-03T15:55:39.8806600Z 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-11-03T15:55:39.8807570Z 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-11-03T15:55:39.8814040Z 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-11-03T15:55:39.8816170Z 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-11-03T15:55:39.8821870Z 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-11-03T15:55:39.8823300Z 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-11-03T15:55:39.8825430Z 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-11-03T15:55:39.8831190Z 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-11-03T15:55:39.8832160Z 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-11-03T15:55:39.8839400Z 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-11-03T15:55:39.8840210Z 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-11-03T15:55:39.8847130Z 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-11-03T15:55:39.8847990Z 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-11-03T15:55:39.8849050Z 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-11-03T15:55:39.8855070Z 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-11-03T15:55:39.8856610Z 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-11-03T15:55:39.8862820Z 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-11-03T15:55:39.8863680Z 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-11-03T15:55:39.8864680Z 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-11-03T15:55:39.8870940Z 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-11-03T15:55:39.8871670Z 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-11-03T15:55:39.8878460Z 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-11-03T15:55:39.8881110Z 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-11-03T15:55:39.8886230Z 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-11-03T15:55:39.8887130Z 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-11-03T15:55:39.8888310Z 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-11-03T15:55:39.8894680Z 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-11-03T15:55:39.8895330Z 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-11-03T15:55:39.8902330Z 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-11-03T15:55:39.8903720Z 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-11-03T15:55:39.8909960Z 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-11-03T15:55:39.8910810Z 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-11-03T15:55:39.8912060Z 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-11-03T15:55:39.8917940Z 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-11-03T15:55:39.8918630Z 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-11-03T15:55:39.8921960Z 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-11-03T15:55:39.8928380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.8930770Z 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-11-03T15:55:39.8936600Z 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-11-03T15:55:39.8937400Z 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-11-03T15:55:39.8938550Z 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-11-03T15:55:39.8944270Z 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-11-03T15:55:39.8945550Z 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-11-03T15:55:39.8952810Z 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-11-03T15:55:39.8953640Z 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-11-03T15:55:39.8954810Z 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-11-03T15:55:39.8960270Z 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-11-03T15:55:39.8962670Z 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-11-03T15:55:39.8967900Z 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-11-03T15:55:39.8971700Z 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-11-03T15:55:39.8976790Z 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-11-03T15:55:39.8977570Z 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-11-03T15:55:39.8985000Z 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-11-03T15:55:39.8985860Z 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-11-03T15:55:39.8993190Z 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-11-03T15:55:39.8994070Z 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-11-03T15:55:39.8995060Z 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-11-03T15:55:39.9000990Z 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-11-03T15:55:39.9002250Z 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-11-03T15:55:39.9008540Z 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-11-03T15:55:39.9009750Z 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-11-03T15:55:39.9011170Z 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-11-03T15:55:39.9018270Z 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-11-03T15:55:39.9019140Z 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-11-03T15:55:39.9026250Z 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-11-03T15:55:39.9026950Z 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-11-03T15:55:39.9033390Z 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-11-03T15:55:39.9034230Z 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-11-03T15:55:39.9035320Z 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-11-03T15:55:39.9041430Z 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-11-03T15:55:39.9042830Z 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-11-03T15:55:39.9048640Z 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-11-03T15:55:39.9051150Z 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-11-03T15:55:39.9052050Z 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-11-03T15:55:39.9058010Z 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-11-03T15:55:39.9058880Z 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-11-03T15:55:39.9066240Z 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-11-03T15:55:39.9067030Z 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-11-03T15:55:39.9073700Z 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-11-03T15:55:39.9074530Z 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-11-03T15:55:39.9075720Z 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-11-03T15:55:39.9081790Z 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-11-03T15:55:39.9083170Z 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-11-03T15:55:39.9089380Z 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-11-03T15:55:39.9090180Z 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-11-03T15:55:39.9091310Z 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-11-03T15:55:39.9096660Z 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-11-03T15:55:39.9098090Z 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-11-03T15:55:39.9105000Z 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-11-03T15:55:39.9105790Z 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-11-03T15:55:39.9112910Z 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-11-03T15:55:39.9113780Z 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-11-03T15:55:39.9114870Z 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-11-03T15:55:39.9120620Z 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-11-03T15:55:39.9122060Z 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-11-03T15:55:39.9128440Z 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-11-03T15:55:39.9129800Z 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-11-03T15:55:39.9131190Z 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-11-03T15:55:39.9138110Z 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-11-03T15:55:39.9139030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isinf_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.9146420Z 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-11-03T15:55:39.9147120Z 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-11-03T15:55:39.9156060Z 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-11-03T15:55:39.9156880Z 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-11-03T15:55:39.9158090Z 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-11-03T15:55:39.9161020Z 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-11-03T15:55:39.9163410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.9164040Z 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-11-03T15:55:39.9165260Z 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-11-03T15:55:39.9170570Z 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-11-03T15:55:39.9171390Z 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-11-03T15:55:39.9172950Z 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-11-03T15:55:39.9182930Z 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-11-03T15:55:39.9189170Z 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-11-03T15:55:39.9192230Z 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-11-03T15:55:39.9196690Z 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-11-03T15:55:39.9197530Z 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-11-03T15:55:39.9204890Z 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-11-03T15:55:39.9205750Z 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-11-03T15:55:39.9212380Z 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-11-03T15:55:39.9213750Z 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-11-03T15:55:39.9214890Z 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-11-03T15:55:39.9222010Z 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-11-03T15:55:39.9223080Z 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-11-03T15:55:39.9229520Z 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-11-03T15:55:39.9230340Z 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-11-03T15:55:39.9237200Z 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-11-03T15:55:39.9238090Z 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-11-03T15:55:39.9239230Z 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-11-03T15:55:39.9244700Z 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-11-03T15:55:39.9246120Z 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-11-03T15:55:39.9252670Z 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-11-03T15:55:39.9253420Z 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-11-03T15:55:39.9254850Z 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-11-03T15:55:39.9260290Z 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-11-03T15:55:39.9261620Z 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-11-03T15:55:39.9267650Z 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-11-03T15:55:39.9270010Z 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-11-03T15:55:39.9275540Z 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-11-03T15:55:39.9276250Z 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-11-03T15:55:39.9278200Z 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-11-03T15:55:39.9284220Z 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-11-03T15:55:39.9285050Z 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-11-03T15:55:39.9292240Z 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-11-03T15:55:39.9293170Z 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-11-03T15:55:39.9300580Z 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-11-03T15:55:39.9301320Z 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-11-03T15:55:39.9302370Z 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-11-03T15:55:39.9308310Z 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-11-03T15:55:39.9309690Z 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-11-03T15:55:39.9315650Z 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-11-03T15:55:39.9317110Z 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-11-03T15:55:39.9318420Z 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-11-03T15:55:39.9324220Z 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-11-03T15:55:39.9325170Z 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-11-03T15:55:39.9332040Z 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-11-03T15:55:39.9333610Z 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-11-03T15:55:39.9340330Z 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-11-03T15:55:39.9341220Z 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-11-03T15:55:39.9342340Z 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-11-03T15:55:39.9348800Z 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-11-03T15:55:39.9349610Z 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-11-03T15:55:39.9357320Z 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-11-03T15:55:39.9358120Z 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-11-03T15:55:39.9359220Z 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-11-03T15:55:39.9365370Z 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-11-03T15:55:39.9366120Z 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-11-03T15:55:39.9373520Z 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-11-03T15:55:39.9374480Z 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-11-03T15:55:39.9375470Z 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-11-03T15:55:39.9380910Z 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-11-03T15:55:39.9382440Z 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-11-03T15:55:39.9385630Z 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-11-03T15:55:39.9391090Z 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-11-03T15:55:39.9398200Z 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-11-03T15:55:39.9399650Z 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-11-03T15:55:39.9405910Z 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-11-03T15:55:39.9406630Z 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-11-03T15:55:39.9408480Z 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-11-03T15:55:39.9413950Z 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-11-03T15:55:39.9414890Z 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-11-03T15:55:39.9421430Z 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-11-03T15:55:39.9423850Z 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-11-03T15:55:39.9428770Z 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-11-03T15:55:39.9430940Z 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-11-03T15:55:39.9431990Z 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-11-03T15:55:39.9438100Z 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-11-03T15:55:39.9438810Z 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-11-03T15:55:39.9445550Z 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-11-03T15:55:39.9446450Z 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-11-03T15:55:39.9447630Z 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-11-03T15:55:39.9454390Z 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-11-03T15:55:39.9455170Z 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-11-03T15:55:39.9461720Z 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-11-03T15:55:39.9463000Z 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-11-03T15:55:39.9470130Z 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-11-03T15:55:39.9471110Z 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-11-03T15:55:39.9472150Z 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-11-03T15:55:39.9477890Z 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-11-03T15:55:39.9479260Z 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-11-03T15:55:39.9485560Z 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-11-03T15:55:39.9486860Z 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-11-03T15:55:39.9488030Z 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-11-03T15:55:39.9494950Z 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-11-03T15:55:39.9495820Z 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-11-03T15:55:39.9502550Z 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-11-03T15:55:39.9503250Z 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-11-03T15:55:39.9510400Z 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-11-03T15:55:39.9511390Z 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-11-03T15:55:39.9512370Z 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-11-03T15:55:39.9518550Z 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-11-03T15:55:39.9519870Z 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-11-03T15:55:39.9526510Z 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-11-03T15:55:39.9527280Z 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-11-03T15:55:39.9528680Z 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-11-03T15:55:39.9534730Z 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-11-03T15:55:39.9535570Z 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-11-03T15:55:39.9542510Z 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-11-03T15:55:39.9543930Z 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-11-03T15:55:39.9545120Z 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-11-03T15:55:39.9550720Z 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-11-03T15:55:39.9551520Z 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-11-03T15:55:39.9553380Z 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-11-03T15:55:39.9558340Z 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-11-03T15:55:39.9560670Z 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-11-03T15:55:39.9563250Z 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-11-03T15:55:39.9566980Z 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-11-03T15:55:39.9571290Z 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-11-03T15:55:39.9576550Z 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-11-03T15:55:39.9578040Z 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-11-03T15:55:39.9584340Z 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-11-03T15:55:39.9586010Z 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-11-03T15:55:39.9591900Z 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-11-03T15:55:39.9593220Z 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-11-03T15:55:39.9594410Z 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-11-03T15:55:39.9601160Z 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-11-03T15:55:39.9610160Z 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-11-03T15:55:39.9616930Z 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-11-03T15:55:39.9617720Z 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-11-03T15:55:39.9618860Z 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-11-03T15:55:39.9624750Z 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-11-03T15:55:39.9625580Z 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-11-03T15:55:39.9632720Z 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-11-03T15:55:39.9633720Z 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-11-03T15:55:39.9634840Z 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-11-03T15:55:39.9640960Z 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-11-03T15:55:39.9642340Z 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-11-03T15:55:39.9647900Z 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-11-03T15:55:39.9650260Z 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-11-03T15:55:39.9651310Z 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-11-03T15:55:39.9658290Z 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-11-03T15:55:39.9659260Z 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-11-03T15:55:39.9666330Z 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-11-03T15:55:39.9667430Z 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-11-03T15:55:39.9674290Z 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-11-03T15:55:39.9675130Z 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-11-03T15:55:39.9676290Z 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-11-03T15:55:39.9683180Z 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-11-03T15:55:39.9683940Z 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-11-03T15:55:39.9690950Z 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-11-03T15:55:39.9691820Z 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-11-03T15:55:39.9692910Z 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-11-03T15:55:39.9699110Z 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-11-03T15:55:39.9700490Z 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-11-03T15:55:39.9701640Z 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-11-03T15:55:39.9708720Z 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-11-03T15:55:39.9709520Z 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-11-03T15:55:39.9716740Z 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-11-03T15:55:39.9717710Z 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-11-03T15:55:39.9718800Z 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-11-03T15:55:39.9725060Z 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-11-03T15:55:39.9725800Z 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-11-03T15:55:39.9732350Z 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-11-03T15:55:39.9733960Z 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-11-03T15:55:39.9735090Z 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-11-03T15:55:39.9740550Z 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-11-03T15:55:39.9748310Z 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-11-03T15:55:39.9749050Z 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-11-03T15:55:39.9750990Z 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-11-03T15:55:39.9757540Z 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-11-03T15:55:39.9758420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.9765500Z 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-11-03T15:55:39.9766850Z 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-11-03T15:55:39.9773890Z 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-11-03T15:55:39.9774740Z 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-11-03T15:55:39.9775870Z 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-11-03T15:55:39.9781370Z 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-11-03T15:55:39.9782080Z 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-11-03T15:55:39.9788670Z 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-11-03T15:55:39.9790180Z 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-11-03T15:55:39.9796520Z 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-11-03T15:55:39.9797440Z 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-11-03T15:55:39.9798470Z 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-11-03T15:55:39.9803780Z 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-11-03T15:55:39.9804550Z 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-11-03T15:55:39.9811660Z 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-11-03T15:55:39.9812550Z 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-11-03T15:55:39.9819420Z 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-11-03T15:55:39.9820250Z 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-11-03T15:55:39.9821590Z 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-11-03T15:55:39.9827010Z 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-11-03T15:55:39.9828480Z 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-11-03T15:55:39.9834690Z 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-11-03T15:55:39.9836090Z 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-11-03T15:55:39.9842200Z 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-11-03T15:55:39.9843590Z 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-11-03T15:55:39.9844910Z 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-11-03T15:55:39.9851410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:39.9852350Z 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-11-03T15:55:39.9860010Z 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-11-03T15:55:39.9860840Z 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-11-03T15:55:39.9867830Z 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-11-03T15:55:39.9868610Z 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-11-03T15:55:39.9869790Z 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-11-03T15:55:39.9875480Z 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-11-03T15:55:39.9876810Z 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-11-03T15:55:39.9883240Z 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-11-03T15:55:39.9884110Z 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-11-03T15:55:39.9885290Z 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-11-03T15:55:39.9891610Z 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-11-03T15:55:39.9892410Z 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-11-03T15:55:39.9899860Z 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-11-03T15:55:39.9900790Z 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-11-03T15:55:39.9907280Z 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-11-03T15:55:39.9908190Z 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-11-03T15:55:39.9909190Z 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-11-03T15:55:39.9915190Z 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-11-03T15:55:39.9916190Z 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-11-03T15:55:39.9923010Z 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-11-03T15:55:39.9923850Z 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-11-03T15:55:39.9924940Z 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-11-03T15:55:39.9930420Z 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-11-03T15:55:39.9934250Z 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-11-03T15:55:39.9938090Z 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-11-03T15:55:39.9939420Z 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-11-03T15:55:39.9941690Z 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-11-03T15:55:39.9942580Z 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-11-03T15:55:39.9946090Z 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-11-03T15:55:39.9948740Z 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-11-03T15:55:39.9953310Z 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-11-03T15:55:39.9955330Z 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-11-03T15:55:39.9961010Z 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-11-03T15:55:39.9962520Z 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-11-03T15:55:39.9968880Z 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-11-03T15:55:39.9970140Z 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-11-03T15:55:39.9971350Z 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-11-03T15:55:39.9977960Z 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-11-03T15:55:39.9978830Z 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-11-03T15:55:39.9985880Z 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-11-03T15:55:39.9986610Z 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-11-03T15:55:39.9993570Z 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-11-03T15:55:39.9994460Z 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-11-03T15:55:39.9995550Z 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-11-03T15:55:40.0002000Z 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-11-03T15:55:40.0003360Z 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-11-03T15:55:40.0009670Z 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-11-03T15:55:40.0010970Z 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-11-03T15:55:40.0012230Z 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-11-03T15:55:40.0016730Z 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-11-03T15:55:40.0018070Z 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-11-03T15:55:40.0024360Z 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-11-03T15:55:40.0025720Z 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-11-03T15:55:40.0032220Z 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-11-03T15:55:40.0033490Z 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-11-03T15:55:40.0034650Z 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-11-03T15:55:40.0041600Z 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-11-03T15:55:40.0042470Z 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-11-03T15:55:40.0049270Z 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-11-03T15:55:40.0050040Z 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-11-03T15:55:40.0056780Z 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-11-03T15:55:40.0057350Z 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-11-03T15:55:40.0058420Z 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-11-03T15:55:40.0064410Z 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-11-03T15:55:40.0066760Z 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-11-03T15:55:40.0072270Z 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-11-03T15:55:40.0073660Z 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-11-03T15:55:40.0075090Z 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-11-03T15:55:40.0081740Z 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-11-03T15:55:40.0082570Z 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-11-03T15:55:40.0089310Z 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-11-03T15:55:40.0090260Z 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-11-03T15:55:40.0097090Z 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-11-03T15:55:40.0098020Z 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-11-03T15:55:40.0099080Z 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-11-03T15:55:40.0104950Z 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-11-03T15:55:40.0106430Z 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-11-03T15:55:40.0112680Z 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-11-03T15:55:40.0113950Z 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-11-03T15:55:40.0120380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.0121230Z 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-11-03T15:55:40.0121980Z 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-11-03T15:55:40.0128910Z 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-11-03T15:55:40.0130110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_is_contiguous_native.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.0137440Z 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-11-03T15:55:40.0138170Z 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-11-03T15:55:40.0139260Z 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-11-03T15:55:40.0144840Z 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-11-03T15:55:40.0145720Z 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-11-03T15:55:40.0152330Z 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-11-03T15:55:40.0154200Z 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-11-03T15:55:40.0155430Z 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-11-03T15:55:40.0162360Z 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-11-03T15:55:40.0163100Z 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-11-03T15:55:40.0170620Z 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-11-03T15:55:40.0171470Z 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-11-03T15:55:40.0178000Z 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-11-03T15:55:40.0179120Z 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-11-03T15:55:40.0180340Z 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-11-03T15:55:40.0185970Z 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-11-03T15:55:40.0186860Z 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-11-03T15:55:40.0194010Z 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-11-03T15:55:40.0196140Z 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-11-03T15:55:40.0202300Z 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-11-03T15:55:40.0210520Z 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-11-03T15:55:40.0211480Z 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-11-03T15:55:40.0218500Z 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-11-03T15:55:40.0219550Z 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-11-03T15:55:40.0226530Z 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-11-03T15:55:40.0234050Z 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-11-03T15:55:40.0235320Z 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-11-03T15:55:40.0241930Z 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-11-03T15:55:40.0242760Z 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-11-03T15:55:40.0249850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.0250960Z 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-11-03T15:55:40.0252130Z 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-11-03T15:55:40.0257240Z 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-11-03T15:55:40.0258690Z 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-11-03T15:55:40.0264750Z 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-11-03T15:55:40.0266100Z 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-11-03T15:55:40.0272500Z 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-11-03T15:55:40.0273590Z 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-11-03T15:55:40.0274400Z 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-11-03T15:55:40.0280310Z 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-11-03T15:55:40.0281470Z 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-11-03T15:55:40.0288740Z 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-11-03T15:55:40.0289590Z 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-11-03T15:55:40.0296480Z 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-11-03T15:55:40.0297320Z 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-11-03T15:55:40.0298420Z 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-11-03T15:55:40.0304630Z 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-11-03T15:55:40.0305440Z 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-11-03T15:55:40.0312760Z 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-11-03T15:55:40.0313440Z 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-11-03T15:55:40.0320600Z 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-11-03T15:55:40.0321430Z 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-11-03T15:55:40.0322570Z 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-11-03T15:55:40.0328300Z 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-11-03T15:55:40.0329670Z 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-11-03T15:55:40.0335880Z 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-11-03T15:55:40.0338410Z 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-11-03T15:55:40.0339180Z 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-11-03T15:55:40.0344110Z 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-11-03T15:55:40.0344930Z 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-11-03T15:55:40.0352150Z 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-11-03T15:55:40.0353570Z 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-11-03T15:55:40.0360280Z 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-11-03T15:55:40.0361050Z 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-11-03T15:55:40.0362240Z 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-11-03T15:55:40.0368540Z 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-11-03T15:55:40.0369410Z 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-11-03T15:55:40.0376760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.0377680Z 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-11-03T15:55:40.0378900Z 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-11-03T15:55:40.0385070Z 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-11-03T15:55:40.0386260Z 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-11-03T15:55:40.0392800Z 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-11-03T15:55:40.0393570Z 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-11-03T15:55:40.0394820Z 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-11-03T15:55:40.0400220Z 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-11-03T15:55:40.0401530Z 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-11-03T15:55:40.0408140Z 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-11-03T15:55:40.0409580Z 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-11-03T15:55:40.0415280Z 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-11-03T15:55:40.0417700Z 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-11-03T15:55:40.0418460Z 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-11-03T15:55:40.0424730Z 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-11-03T15:55:40.0425630Z 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-11-03T15:55:40.0432670Z 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-11-03T15:55:40.0433570Z 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-11-03T15:55:40.0434770Z 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-11-03T15:55:40.0440750Z 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-11-03T15:55:40.0443330Z 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-11-03T15:55:40.0448100Z 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-11-03T15:55:40.0449630Z 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-11-03T15:55:40.0450740Z 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-11-03T15:55:40.0457790Z 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-11-03T15:55:40.0458590Z 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-11-03T15:55:40.0465990Z 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-11-03T15:55:40.0466870Z 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-11-03T15:55:40.0473340Z 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-11-03T15:55:40.0474120Z 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-11-03T15:55:40.0475390Z 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-11-03T15:55:40.0480690Z 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-11-03T15:55:40.0482820Z 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-11-03T15:55:40.0488660Z 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-11-03T15:55:40.0489440Z 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-11-03T15:55:40.0492080Z 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-11-03T15:55:40.0497310Z 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-11-03T15:55:40.0498130Z 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-11-03T15:55:40.0505340Z 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-11-03T15:55:40.0506720Z 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-11-03T15:55:40.0512810Z 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-11-03T15:55:40.0513740Z 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-11-03T15:55:40.0514810Z 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-11-03T15:55:40.0520320Z 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-11-03T15:55:40.0521090Z 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-11-03T15:55:40.0528900Z 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-11-03T15:55:40.0530190Z 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-11-03T15:55:40.0537000Z 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-11-03T15:55:40.0537910Z 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-11-03T15:55:40.0539030Z 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-11-03T15:55:40.0544830Z 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-11-03T15:55:40.0545820Z 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-11-03T15:55:40.0552360Z 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-11-03T15:55:40.0553180Z 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-11-03T15:55:40.0554450Z 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-11-03T15:55:40.0560870Z 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-11-03T15:55:40.0561830Z 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-11-03T15:55:40.0568790Z 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-11-03T15:55:40.0569760Z 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-11-03T15:55:40.0577070Z 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-11-03T15:55:40.0578000Z 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-11-03T15:55:40.0579140Z 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-11-03T15:55:40.0584470Z 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-11-03T15:55:40.0585710Z 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-11-03T15:55:40.0592110Z 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-11-03T15:55:40.0593450Z 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-11-03T15:55:40.0594650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.0601540Z 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-11-03T15:55:40.0609050Z 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-11-03T15:55:40.0610650Z 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-11-03T15:55:40.0617300Z 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-11-03T15:55:40.0618900Z 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-11-03T15:55:40.0620000Z 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-11-03T15:55:40.0625260Z 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-11-03T15:55:40.0626270Z 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-11-03T15:55:40.0634010Z 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-11-03T15:55:40.0634990Z 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-11-03T15:55:40.0635990Z 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-11-03T15:55:40.0641260Z 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-11-03T15:55:40.0645300Z 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-11-03T15:55:40.0649000Z 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-11-03T15:55:40.0649940Z 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-11-03T15:55:40.0652970Z 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-11-03T15:55:40.0657310Z 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-11-03T15:55:40.0658410Z 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-11-03T15:55:40.0662910Z 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-11-03T15:55:40.0666580Z 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-11-03T15:55:40.0670460Z 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-11-03T15:55:40.0671400Z 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-11-03T15:55:40.0675780Z 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-11-03T15:55:40.0679530Z 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-11-03T15:55:40.0684590Z 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-11-03T15:55:40.0687570Z 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-11-03T15:55:40.0688970Z 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-11-03T15:55:40.0694090Z 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-11-03T15:55:40.0696090Z 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-11-03T15:55:40.0701950Z 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-11-03T15:55:40.0703110Z 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-11-03T15:55:40.0705450Z 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-11-03T15:55:40.0710850Z 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-11-03T15:55:40.0711840Z 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-11-03T15:55:40.0718830Z 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-11-03T15:55:40.0719710Z 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-11-03T15:55:40.0727370Z 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-11-03T15:55:40.0728310Z 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-11-03T15:55:40.0729300Z 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-11-03T15:55:40.0735330Z 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-11-03T15:55:40.0736480Z 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-11-03T15:55:40.0742580Z 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-11-03T15:55:40.0744310Z 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-11-03T15:55:40.0745970Z 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-11-03T15:55:40.0749520Z 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-11-03T15:55:40.0751170Z 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-11-03T15:55:40.0759500Z 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-11-03T15:55:40.0765460Z 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-11-03T15:55:40.0766420Z 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-11-03T15:55:40.0767500Z 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-11-03T15:55:40.0775290Z 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-11-03T15:55:40.0776320Z 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-11-03T15:55:40.0782750Z 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-11-03T15:55:40.0783630Z 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-11-03T15:55:40.0790140Z 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-11-03T15:55:40.0791040Z 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-11-03T15:55:40.0792130Z 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-11-03T15:55:40.0797820Z 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-11-03T15:55:40.0799390Z 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-11-03T15:55:40.0805870Z 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-11-03T15:55:40.0806640Z 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-11-03T15:55:40.0807840Z 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-11-03T15:55:40.0813530Z 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-11-03T15:55:40.0814950Z 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-11-03T15:55:40.0821440Z 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-11-03T15:55:40.0822740Z 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-11-03T15:55:40.0829470Z 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-11-03T15:55:40.0830400Z 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-11-03T15:55:40.0831470Z 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-11-03T15:55:40.0837570Z 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-11-03T15:55:40.0838570Z 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-11-03T15:55:40.0845260Z 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-11-03T15:55:40.0846810Z 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-11-03T15:55:40.0853070Z 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-11-03T15:55:40.0854030Z 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-11-03T15:55:40.0854970Z 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-11-03T15:55:40.0860610Z 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-11-03T15:55:40.0861880Z 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-11-03T15:55:40.0868720Z 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-11-03T15:55:40.0870140Z 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-11-03T15:55:40.0876750Z 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-11-03T15:55:40.0877610Z 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-11-03T15:55:40.0878720Z 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-11-03T15:55:40.0884840Z 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-11-03T15:55:40.0885720Z 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-11-03T15:55:40.0892520Z 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-11-03T15:55:40.0893960Z 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-11-03T15:55:40.0900070Z 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-11-03T15:55:40.0901020Z 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-11-03T15:55:40.0902250Z 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-11-03T15:55:40.0908440Z 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-11-03T15:55:40.0910150Z 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-11-03T15:55:40.0911360Z 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-11-03T15:55:40.0917780Z 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-11-03T15:55:40.0918640Z 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-11-03T15:55:40.0923810Z 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-11-03T15:55:40.0927370Z 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-11-03T15:55:40.0931760Z 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-11-03T15:55:40.0933320Z 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-11-03T15:55:40.0935460Z 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-11-03T15:55:40.0940470Z 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-11-03T15:55:40.0941250Z 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-11-03T15:55:40.0945320Z 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-11-03T15:55:40.0949460Z 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-11-03T15:55:40.0954760Z 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-11-03T15:55:40.0957390Z 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-11-03T15:55:40.0958730Z 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-11-03T15:55:40.0967090Z 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-11-03T15:55:40.0967980Z 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-11-03T15:55:40.0974530Z 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-11-03T15:55:40.0976070Z 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-11-03T15:55:40.0982030Z 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-11-03T15:55:40.0983240Z 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-11-03T15:55:40.0984120Z 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-11-03T15:55:40.0991360Z 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-11-03T15:55:40.0992590Z 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-11-03T15:55:40.0998720Z 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-11-03T15:55:40.0999820Z 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-11-03T15:55:40.1007130Z 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-11-03T15:55:40.1008030Z 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-11-03T15:55:40.1009190Z 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-11-03T15:55:40.1015380Z 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-11-03T15:55:40.1016270Z 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-11-03T15:55:40.1023190Z 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-11-03T15:55:40.1024250Z 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-11-03T15:55:40.1025280Z 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-11-03T15:55:40.1030420Z 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-11-03T15:55:40.1033210Z 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-11-03T15:55:40.1038160Z 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-11-03T15:55:40.1039740Z 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-11-03T15:55:40.1042680Z 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-11-03T15:55:40.1047610Z 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-11-03T15:55:40.1048840Z 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-11-03T15:55:40.1051390Z 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-11-03T15:55:40.1057590Z 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-11-03T15:55:40.1060340Z 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-11-03T15:55:40.1064880Z 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-11-03T15:55:40.1065880Z 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-11-03T15:55:40.1069390Z 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-11-03T15:55:40.1073180Z 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-11-03T15:55:40.1077660Z 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-11-03T15:55:40.1078440Z 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-11-03T15:55:40.1083270Z 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-11-03T15:55:40.1085130Z 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-11-03T15:55:40.1090700Z 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-11-03T15:55:40.1091730Z 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-11-03T15:55:40.1098990Z 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-11-03T15:55:40.1100040Z 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-11-03T15:55:40.1106930Z 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-11-03T15:55:40.1107920Z 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-11-03T15:55:40.1108950Z 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-11-03T15:55:40.1114610Z 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-11-03T15:55:40.1116620Z 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-11-03T15:55:40.1121980Z 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-11-03T15:55:40.1123850Z 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-11-03T15:55:40.1125330Z 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-11-03T15:55:40.1132030Z 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-11-03T15:55:40.1133030Z 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-11-03T15:55:40.1139530Z 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-11-03T15:55:40.1140720Z 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-11-03T15:55:40.1147650Z 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-11-03T15:55:40.1148490Z 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-11-03T15:55:40.1149530Z 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-11-03T15:55:40.1155280Z 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-11-03T15:55:40.1157060Z 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-11-03T15:55:40.1163000Z 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-11-03T15:55:40.1170090Z 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-11-03T15:55:40.1170880Z 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-11-03T15:55:40.1171850Z 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-11-03T15:55:40.1180560Z 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-11-03T15:55:40.1181350Z 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-11-03T15:55:40.1188270Z 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-11-03T15:55:40.1189240Z 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-11-03T15:55:40.1190250Z 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-11-03T15:55:40.1196350Z 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-11-03T15:55:40.1197490Z 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-11-03T15:55:40.1203990Z 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-11-03T15:55:40.1204940Z 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-11-03T15:55:40.1205980Z 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-11-03T15:55:40.1211410Z 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-11-03T15:55:40.1214130Z 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-11-03T15:55:40.1218910Z 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-11-03T15:55:40.1220670Z 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-11-03T15:55:40.1221960Z 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-11-03T15:55:40.1228090Z 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-11-03T15:55:40.1229170Z 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-11-03T15:55:40.1235910Z 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-11-03T15:55:40.1236850Z 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-11-03T15:55:40.1243620Z 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-11-03T15:55:40.1244540Z 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-11-03T15:55:40.1245820Z 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-11-03T15:55:40.1251430Z 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-11-03T15:55:40.1254720Z 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-11-03T15:55:40.1259680Z 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-11-03T15:55:40.1260620Z 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-11-03T15:55:40.1263110Z 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-11-03T15:55:40.1267990Z 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-11-03T15:55:40.1268900Z 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-11-03T15:55:40.1272600Z 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-11-03T15:55:40.1277730Z 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-11-03T15:55:40.1279790Z 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-11-03T15:55:40.1280950Z 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-11-03T15:55:40.1286970Z 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-11-03T15:55:40.1288490Z 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-11-03T15:55:40.1296160Z 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-11-03T15:55:40.1297310Z 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-11-03T15:55:40.1298380Z 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-11-03T15:55:40.1303710Z 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-11-03T15:55:40.1305380Z 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-11-03T15:55:40.1306780Z 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-11-03T15:55:40.1311970Z 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-11-03T15:55:40.1312760Z 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-11-03T15:55:40.1319740Z 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-11-03T15:55:40.1320750Z 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-11-03T15:55:40.1327940Z 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-11-03T15:55:40.1328810Z 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-11-03T15:55:40.1336450Z 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-11-03T15:55:40.1337480Z 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-11-03T15:55:40.1338580Z 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-11-03T15:55:40.1344810Z 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-11-03T15:55:40.1345880Z 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-11-03T15:55:40.1352740Z 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-11-03T15:55:40.1353760Z 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-11-03T15:55:40.1354980Z 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-11-03T15:55:40.1359770Z 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-11-03T15:55:40.1362730Z 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-11-03T15:55:40.1367590Z 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-11-03T15:55:40.1369370Z 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-11-03T15:55:40.1372060Z 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-11-03T15:55:40.1379040Z 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-11-03T15:55:40.1382060Z 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-11-03T15:55:40.1386690Z 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-11-03T15:55:40.1388280Z 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-11-03T15:55:40.1394250Z 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-11-03T15:55:40.1395860Z 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-11-03T15:55:40.1402250Z 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-11-03T15:55:40.1403260Z 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-11-03T15:55:40.1404400Z 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-11-03T15:55:40.1410850Z 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-11-03T15:55:40.1411760Z 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-11-03T15:55:40.1418610Z 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-11-03T15:55:40.1419770Z 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-11-03T15:55:40.1426420Z 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-11-03T15:55:40.1427380Z 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-11-03T15:55:40.1428390Z 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-11-03T15:55:40.1434740Z 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-11-03T15:55:40.1436010Z 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-11-03T15:55:40.1443010Z 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-11-03T15:55:40.1443880Z 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-11-03T15:55:40.1444900Z 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-11-03T15:55:40.1450390Z 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-11-03T15:55:40.1451840Z 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-11-03T15:55:40.1458510Z 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-11-03T15:55:40.1459400Z 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-11-03T15:55:40.1465360Z 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-11-03T15:55:40.1466950Z 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-11-03T15:55:40.1468070Z 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-11-03T15:55:40.1475240Z 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-11-03T15:55:40.1476230Z 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-11-03T15:55:40.1482550Z 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-11-03T15:55:40.1483400Z 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-11-03T15:55:40.1490550Z 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-11-03T15:55:40.1491390Z 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-11-03T15:55:40.1492390Z 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-11-03T15:55:40.1497990Z 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-11-03T15:55:40.1499420Z 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-11-03T15:55:40.1505400Z 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-11-03T15:55:40.1506800Z 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-11-03T15:55:40.1507960Z 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-11-03T15:55:40.1514710Z 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-11-03T15:55:40.1515630Z 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-11-03T15:55:40.1522750Z 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-11-03T15:55:40.1523620Z 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-11-03T15:55:40.1530200Z 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-11-03T15:55:40.1531040Z 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-11-03T15:55:40.1532340Z 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-11-03T15:55:40.1538110Z 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-11-03T15:55:40.1539400Z 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-11-03T15:55:40.1546180Z 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-11-03T15:55:40.1547240Z 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-11-03T15:55:40.1548140Z 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-11-03T15:55:40.1553990Z 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-11-03T15:55:40.1555220Z 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-11-03T15:55:40.1561720Z 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-11-03T15:55:40.1563160Z 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-11-03T15:55:40.1569380Z 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-11-03T15:55:40.1570500Z 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-11-03T15:55:40.1571450Z 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-11-03T15:55:40.1577160Z 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-11-03T15:55:40.1578230Z 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-11-03T15:55:40.1580340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.1589600Z 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-11-03T15:55:40.1594150Z 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-11-03T15:55:40.1595750Z 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-11-03T15:55:40.1599070Z 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-11-03T15:55:40.1604170Z 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-11-03T15:55:40.1604950Z 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-11-03T15:55:40.1607920Z 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-11-03T15:55:40.1613600Z 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-11-03T15:55:40.1616620Z 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-11-03T15:55:40.1620370Z 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-11-03T15:55:40.1621430Z 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-11-03T15:55:40.1625500Z 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-11-03T15:55:40.1629170Z 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-11-03T15:55:40.1633560Z 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-11-03T15:55:40.1636500Z 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-11-03T15:55:40.1637580Z 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-11-03T15:55:40.1643350Z 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-11-03T15:55:40.1645270Z 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-11-03T15:55:40.1650410Z 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-11-03T15:55:40.1652720Z 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-11-03T15:55:40.1658380Z 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-11-03T15:55:40.1659260Z 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-11-03T15:55:40.1660820Z 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-11-03T15:55:40.1667030Z 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-11-03T15:55:40.1667820Z 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-11-03T15:55:40.1674710Z 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-11-03T15:55:40.1676850Z 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-11-03T15:55:40.1682500Z 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-11-03T15:55:40.1683480Z 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-11-03T15:55:40.1686790Z 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-11-03T15:55:40.1687690Z 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-11-03T15:55:40.1689500Z 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-11-03T15:55:40.1695620Z 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-11-03T15:55:40.1696480Z 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-11-03T15:55:40.1698220Z 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-11-03T15:55:40.1704160Z 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-11-03T15:55:40.1706260Z 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-11-03T15:55:40.1712720Z 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-11-03T15:55:40.1714670Z 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-11-03T15:55:40.1720830Z 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-11-03T15:55:40.1721760Z 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-11-03T15:55:40.1728740Z 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-11-03T15:55:40.1730240Z 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-11-03T15:55:40.1736380Z 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-11-03T15:55:40.1737270Z 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-11-03T15:55:40.1738350Z 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-11-03T15:55:40.1744280Z 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-11-03T15:55:40.1745170Z 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-11-03T15:55:40.1751660Z 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-11-03T15:55:40.1753180Z 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-11-03T15:55:40.1759480Z 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-11-03T15:55:40.1760400Z 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-11-03T15:55:40.1761530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.1767280Z 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-11-03T15:55:40.1768790Z 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-11-03T15:55:40.1774890Z 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-11-03T15:55:40.1776370Z 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-11-03T15:55:40.1777760Z 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-11-03T15:55:40.1784770Z 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-11-03T15:55:40.1785590Z 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-11-03T15:55:40.1788670Z 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-11-03T15:55:40.1793860Z 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-11-03T15:55:40.1796080Z 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-11-03T15:55:40.1801350Z 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-11-03T15:55:40.1802350Z 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-11-03T15:55:40.1804710Z 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-11-03T15:55:40.1811250Z 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-11-03T15:55:40.1813370Z 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-11-03T15:55:40.1818880Z 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-11-03T15:55:40.1819870Z 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-11-03T15:55:40.1821600Z 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-11-03T15:55:40.1828190Z 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-11-03T15:55:40.1828960Z 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-11-03T15:55:40.1836370Z 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-11-03T15:55:40.1837290Z 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-11-03T15:55:40.1843920Z 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-11-03T15:55:40.1844980Z 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-11-03T15:55:40.1846030Z 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-11-03T15:55:40.1851500Z 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-11-03T15:55:40.1859710Z 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-11-03T15:55:40.1861250Z 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-11-03T15:55:40.1867490Z 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-11-03T15:55:40.1868980Z 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-11-03T15:55:40.1876340Z 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-11-03T15:55:40.1877210Z 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-11-03T15:55:40.1878400Z 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-11-03T15:55:40.1884190Z 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-11-03T15:55:40.1885540Z 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-11-03T15:55:40.1891850Z 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-11-03T15:55:40.1893120Z 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-11-03T15:55:40.1894210Z 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-11-03T15:55:40.1901470Z 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-11-03T15:55:40.1902280Z 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-11-03T15:55:40.1909040Z 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-11-03T15:55:40.1910010Z 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-11-03T15:55:40.1917170Z 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-11-03T15:55:40.1918040Z 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-11-03T15:55:40.1919220Z 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-11-03T15:55:40.1925790Z 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-11-03T15:55:40.1927180Z 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-11-03T15:55:40.1934100Z 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-11-03T15:55:40.1935030Z 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-11-03T15:55:40.1936520Z 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-11-03T15:55:40.1941880Z 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-11-03T15:55:40.1943350Z 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-11-03T15:55:40.1949610Z 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-11-03T15:55:40.1950770Z 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-11-03T15:55:40.1951800Z 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-11-03T15:55:40.1957750Z 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-11-03T15:55:40.1958550Z 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-11-03T15:55:40.1965730Z 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-11-03T15:55:40.1966800Z 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-11-03T15:55:40.1973530Z 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-11-03T15:55:40.1974480Z 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-11-03T15:55:40.1975740Z 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-11-03T15:55:40.1981660Z 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-11-03T15:55:40.1982490Z 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-11-03T15:55:40.1989410Z 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-11-03T15:55:40.1990900Z 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-11-03T15:55:40.1992080Z 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-11-03T15:55:40.1996960Z 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-11-03T15:55:40.1998500Z 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-11-03T15:55:40.2004970Z 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-11-03T15:55:40.2006310Z 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-11-03T15:55:40.2012290Z 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-11-03T15:55:40.2013790Z 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-11-03T15:55:40.2014900Z 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-11-03T15:55:40.2021770Z 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-11-03T15:55:40.2022620Z 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-11-03T15:55:40.2029530Z 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-11-03T15:55:40.2030880Z 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-11-03T15:55:40.2036950Z 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-11-03T15:55:40.2037820Z 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-11-03T15:55:40.2038980Z 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-11-03T15:55:40.2045550Z 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-11-03T15:55:40.2046330Z 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-11-03T15:55:40.2053720Z 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-11-03T15:55:40.2054740Z 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-11-03T15:55:40.2055610Z 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-11-03T15:55:40.2061350Z 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-11-03T15:55:40.2062430Z 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-11-03T15:55:40.2069500Z 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-11-03T15:55:40.2070300Z 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-11-03T15:55:40.2071470Z 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-11-03T15:55:40.2079400Z 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-11-03T15:55:40.2080490Z 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-11-03T15:55:40.2083870Z 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-11-03T15:55:40.2088670Z 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-11-03T15:55:40.2094040Z 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-11-03T15:55:40.2096150Z 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-11-03T15:55:40.2101860Z 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-11-03T15:55:40.2102810Z 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-11-03T15:55:40.2111460Z 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-11-03T15:55:40.2112310Z 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-11-03T15:55:40.2118700Z 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-11-03T15:55:40.2120650Z 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-11-03T15:55:40.2126640Z 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-11-03T15:55:40.2127450Z 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-11-03T15:55:40.2128740Z 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-11-03T15:55:40.2134530Z 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-11-03T15:55:40.2135480Z 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-11-03T15:55:40.2138760Z 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-11-03T15:55:40.2143710Z 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-11-03T15:55:40.2147620Z 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-11-03T15:55:40.2152800Z 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-11-03T15:55:40.2153760Z 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-11-03T15:55:40.2157110Z 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-11-03T15:55:40.2161220Z 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-11-03T15:55:40.2162000Z 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-11-03T15:55:40.2167100Z 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-11-03T15:55:40.2170260Z 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-11-03T15:55:40.2174550Z 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-11-03T15:55:40.2175410Z 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-11-03T15:55:40.2178370Z 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-11-03T15:55:40.2183380Z 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-11-03T15:55:40.2184330Z 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-11-03T15:55:40.2190980Z 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-11-03T15:55:40.2193210Z 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-11-03T15:55:40.2198460Z 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-11-03T15:55:40.2199960Z 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-11-03T15:55:40.2201730Z 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-11-03T15:55:40.2207310Z 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-11-03T15:55:40.2208280Z 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-11-03T15:55:40.2214970Z 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-11-03T15:55:40.2215730Z 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-11-03T15:55:40.2222600Z 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-11-03T15:55:40.2223400Z 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-11-03T15:55:40.2224610Z 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-11-03T15:55:40.2230300Z 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-11-03T15:55:40.2231460Z 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-11-03T15:55:40.2237550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.2239520Z 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-11-03T15:55:40.2245620Z 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-11-03T15:55:40.2246490Z 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-11-03T15:55:40.2248380Z 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-11-03T15:55:40.2254320Z 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-11-03T15:55:40.2255160Z 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-11-03T15:55:40.2261290Z 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-11-03T15:55:40.2263380Z 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-11-03T15:55:40.2269900Z 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-11-03T15:55:40.2270890Z 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-11-03T15:55:40.2272400Z 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-11-03T15:55:40.2277670Z 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-11-03T15:55:40.2278620Z 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-11-03T15:55:40.2281950Z 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-11-03T15:55:40.2287070Z 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-11-03T15:55:40.2290810Z 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-11-03T15:55:40.2295470Z 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-11-03T15:55:40.2299110Z 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-11-03T15:55:40.2303560Z 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-11-03T15:55:40.2304330Z 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-11-03T15:55:40.2311270Z 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-11-03T15:55:40.2313800Z 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-11-03T15:55:40.2320210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.2321550Z 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-11-03T15:55:40.2328390Z 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-11-03T15:55:40.2335650Z 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-11-03T15:55:40.2336460Z 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-11-03T15:55:40.2343740Z 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-11-03T15:55:40.2344910Z 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-11-03T15:55:40.2351540Z 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-11-03T15:55:40.2359340Z 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-11-03T15:55:40.2360320Z 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-11-03T15:55:40.2361310Z 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-11-03T15:55:40.2366690Z 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-11-03T15:55:40.2368280Z 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-11-03T15:55:40.2375090Z 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-11-03T15:55:40.2375860Z 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-11-03T15:55:40.2382510Z 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-11-03T15:55:40.2384050Z 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-11-03T15:55:40.2385090Z 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-11-03T15:55:40.2390490Z 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-11-03T15:55:40.2391180Z 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-11-03T15:55:40.2398450Z 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-11-03T15:55:40.2399260Z 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-11-03T15:55:40.2405460Z 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-11-03T15:55:40.2406940Z 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-11-03T15:55:40.2408080Z 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-11-03T15:55:40.2414610Z 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-11-03T15:55:40.2415560Z 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-11-03T15:55:40.2422630Z 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-11-03T15:55:40.2423490Z 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-11-03T15:55:40.2429790Z 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-11-03T15:55:40.2430690Z 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-11-03T15:55:40.2431820Z 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-11-03T15:55:40.2437320Z 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-11-03T15:55:40.2438720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.2444900Z 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-11-03T15:55:40.2446310Z 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-11-03T15:55:40.2447610Z 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-11-03T15:55:40.2454900Z 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-11-03T15:55:40.2455980Z 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-11-03T15:55:40.2462870Z 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-11-03T15:55:40.2463650Z 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-11-03T15:55:40.2472800Z 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-11-03T15:55:40.2473600Z 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-11-03T15:55:40.2474870Z 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-11-03T15:55:40.2477670Z 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-11-03T15:55:40.2479670Z 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-11-03T15:55:40.2480640Z 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-11-03T15:55:40.2481700Z 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-11-03T15:55:40.2487640Z 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-11-03T15:55:40.2488450Z 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-11-03T15:55:40.2495420Z 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-11-03T15:55:40.2496130Z 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-11-03T15:55:40.2504110Z 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-11-03T15:55:40.2505000Z 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-11-03T15:55:40.2506050Z 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-11-03T15:55:40.2512400Z 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-11-03T15:55:40.2520120Z 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-11-03T15:55:40.2520880Z 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-11-03T15:55:40.2521980Z 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-11-03T15:55:40.2527960Z 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-11-03T15:55:40.2529270Z 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-11-03T15:55:40.2531510Z 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-11-03T15:55:40.2537550Z 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-11-03T15:55:40.2538430Z 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-11-03T15:55:40.2545380Z 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-11-03T15:55:40.2546850Z 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-11-03T15:55:40.2553010Z 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-11-03T15:55:40.2554360Z 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-11-03T15:55:40.2555520Z 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-11-03T15:55:40.2561340Z 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-11-03T15:55:40.2562200Z 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-11-03T15:55:40.2568610Z 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-11-03T15:55:40.2569890Z 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-11-03T15:55:40.2576580Z 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-11-03T15:55:40.2577480Z 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-11-03T15:55:40.2578610Z 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-11-03T15:55:40.2584200Z 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-11-03T15:55:40.2585670Z 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-11-03T15:55:40.2592540Z 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-11-03T15:55:40.2593940Z 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-11-03T15:55:40.2595080Z 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-11-03T15:55:40.2600210Z 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-11-03T15:55:40.2602620Z 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-11-03T15:55:40.2608620Z 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-11-03T15:55:40.2609480Z 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-11-03T15:55:40.2612940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.2617980Z 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-11-03T15:55:40.2618730Z 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-11-03T15:55:40.2622230Z 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-11-03T15:55:40.2627180Z 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-11-03T15:55:40.2629840Z 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-11-03T15:55:40.2634680Z 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-11-03T15:55:40.2635470Z 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-11-03T15:55:40.2639410Z 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-11-03T15:55:40.2643090Z 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-11-03T15:55:40.2646870Z 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-11-03T15:55:40.2647680Z 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-11-03T15:55:40.2652760Z 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-11-03T15:55:40.2655890Z 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-11-03T15:55:40.2660920Z 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-11-03T15:55:40.2661610Z 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-11-03T15:55:40.2665140Z 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-11-03T15:55:40.2670620Z 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-11-03T15:55:40.2673850Z 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-11-03T15:55:40.2678130Z 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-11-03T15:55:40.2678860Z 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-11-03T15:55:40.2682190Z 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-11-03T15:55:40.2686570Z 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-11-03T15:55:40.2690340Z 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-11-03T15:55:40.2694170Z 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-11-03T15:55:40.2695100Z 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-11-03T15:55:40.2699450Z 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-11-03T15:55:40.2703180Z 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-11-03T15:55:40.2708280Z 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-11-03T15:55:40.2709060Z 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-11-03T15:55:40.2712210Z 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-11-03T15:55:40.2716620Z 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-11-03T15:55:40.2719720Z 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-11-03T15:55:40.2724130Z 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-11-03T15:55:40.2725000Z 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-11-03T15:55:40.2728880Z 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-11-03T15:55:40.2732570Z 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-11-03T15:55:40.2736890Z 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-11-03T15:55:40.2739270Z 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-11-03T15:55:40.2740190Z 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-11-03T15:55:40.2746310Z 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-11-03T15:55:40.2747750Z 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-11-03T15:55:40.2754090Z 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-11-03T15:55:40.2755590Z 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-11-03T15:55:40.2761890Z 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-11-03T15:55:40.2762620Z 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-11-03T15:55:40.2764590Z 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-11-03T15:55:40.2771040Z 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-11-03T15:55:40.2771920Z 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-11-03T15:55:40.2778670Z 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-11-03T15:55:40.2779910Z 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-11-03T15:55:40.2786100Z 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-11-03T15:55:40.2787100Z 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-11-03T15:55:40.2788200Z 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-11-03T15:55:40.2793800Z 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-11-03T15:55:40.2795340Z 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-11-03T15:55:40.2801350Z 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-11-03T15:55:40.2802630Z 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-11-03T15:55:40.2809670Z 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-11-03T15:55:40.2810500Z 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-11-03T15:55:40.2811550Z 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-11-03T15:55:40.2817780Z 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-11-03T15:55:40.2818600Z 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-11-03T15:55:40.2825950Z 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-11-03T15:55:40.2826770Z 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-11-03T15:55:40.2833590Z 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-11-03T15:55:40.2834480Z 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-11-03T15:55:40.2835760Z 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-11-03T15:55:40.2841100Z 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-11-03T15:55:40.2842590Z 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-11-03T15:55:40.2849220Z 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-11-03T15:55:40.2850180Z 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-11-03T15:55:40.2851350Z 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-11-03T15:55:40.2857420Z 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-11-03T15:55:40.2858280Z 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-11-03T15:55:40.2865010Z 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-11-03T15:55:40.2866530Z 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-11-03T15:55:40.2867680Z 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-11-03T15:55:40.2873100Z 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-11-03T15:55:40.2874460Z 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-11-03T15:55:40.2881220Z 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-11-03T15:55:40.2882230Z 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-11-03T15:55:40.2889070Z 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-11-03T15:55:40.2889960Z 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-11-03T15:55:40.2891130Z 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-11-03T15:55:40.2896680Z 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-11-03T15:55:40.2898120Z 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-11-03T15:55:40.2904810Z 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-11-03T15:55:40.2906220Z 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-11-03T15:55:40.2913000Z 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-11-03T15:55:40.2913850Z 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-11-03T15:55:40.2914930Z 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-11-03T15:55:40.2920230Z 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-11-03T15:55:40.2922620Z 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-11-03T15:55:40.2927720Z 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-11-03T15:55:40.2929150Z 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-11-03T15:55:40.2931330Z 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-11-03T15:55:40.2937070Z 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-11-03T15:55:40.2937900Z 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-11-03T15:55:40.2945450Z 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-11-03T15:55:40.2946290Z 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-11-03T15:55:40.2953450Z 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-11-03T15:55:40.2954180Z 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-11-03T15:55:40.2955250Z 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-11-03T15:55:40.2961200Z 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-11-03T15:55:40.2962660Z 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-11-03T15:55:40.2969200Z 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-11-03T15:55:40.2970150Z 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-11-03T15:55:40.2971220Z 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-11-03T15:55:40.2976690Z 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-11-03T15:55:40.2977780Z 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-11-03T15:55:40.2984370Z 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-11-03T15:55:40.2985840Z 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-11-03T15:55:40.2991750Z 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-11-03T15:55:40.2993290Z 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-11-03T15:55:40.2994370Z 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-11-03T15:55:40.3000500Z 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-11-03T15:55:40.3001370Z 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-11-03T15:55:40.3008200Z 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-11-03T15:55:40.3009590Z 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-11-03T15:55:40.3015800Z 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-11-03T15:55:40.3016610Z 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-11-03T15:55:40.3017950Z 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-11-03T15:55:40.3024870Z 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-11-03T15:55:40.3025980Z 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-11-03T15:55:40.3032370Z 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-11-03T15:55:40.3040090Z 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-11-03T15:55:40.3040970Z 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-11-03T15:55:40.3042070Z 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-11-03T15:55:40.3048580Z 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-11-03T15:55:40.3049300Z 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-11-03T15:55:40.3056590Z 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-11-03T15:55:40.3057560Z 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-11-03T15:55:40.3065250Z 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-11-03T15:55:40.3066040Z 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-11-03T15:55:40.3067170Z 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-11-03T15:55:40.3073480Z 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-11-03T15:55:40.3074330Z 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-11-03T15:55:40.3080870Z 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-11-03T15:55:40.3081690Z 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-11-03T15:55:40.3082860Z 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-11-03T15:55:40.3089290Z 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-11-03T15:55:40.3090310Z 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-11-03T15:55:40.3097740Z 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-11-03T15:55:40.3098520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.3099530Z 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-11-03T15:55:40.3105730Z 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-11-03T15:55:40.3107130Z 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-11-03T15:55:40.3113830Z 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-11-03T15:55:40.3114660Z 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-11-03T15:55:40.3115890Z 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-11-03T15:55:40.3121770Z 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-11-03T15:55:40.3122480Z 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-11-03T15:55:40.3125120Z 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-11-03T15:55:40.3130950Z 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-11-03T15:55:40.3131830Z 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-11-03T15:55:40.3138480Z 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-11-03T15:55:40.3141050Z 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-11-03T15:55:40.3146760Z 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-11-03T15:55:40.3147490Z 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-11-03T15:55:40.3148740Z 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-11-03T15:55:40.3154520Z 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-11-03T15:55:40.3155410Z 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-11-03T15:55:40.3158480Z 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-11-03T15:55:40.3164120Z 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-11-03T15:55:40.3166610Z 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-11-03T15:55:40.3171180Z 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-11-03T15:55:40.3173460Z 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-11-03T15:55:40.3175090Z 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-11-03T15:55:40.3180460Z 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-11-03T15:55:40.3181210Z 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-11-03T15:55:40.3188580Z 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-11-03T15:55:40.3189470Z 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-11-03T15:55:40.3196920Z 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-11-03T15:55:40.3197730Z 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-11-03T15:55:40.3198960Z 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-11-03T15:55:40.3204040Z 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-11-03T15:55:40.3206550Z 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-11-03T15:55:40.3211650Z 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-11-03T15:55:40.3213080Z 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-11-03T15:55:40.3214920Z 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-11-03T15:55:40.3221310Z 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-11-03T15:55:40.3222330Z 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-11-03T15:55:40.3229250Z 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-11-03T15:55:40.3230330Z 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-11-03T15:55:40.3235640Z 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-11-03T15:55:40.3237130Z 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-11-03T15:55:40.3243500Z 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-11-03T15:55:40.3244980Z 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-11-03T15:55:40.3252670Z 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-11-03T15:55:40.3253460Z 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-11-03T15:55:40.3257650Z 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-11-03T15:55:40.3260000Z 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-11-03T15:55:40.3260680Z 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-11-03T15:55:40.3262150Z 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-11-03T15:55:40.3268820Z 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-11-03T15:55:40.3271900Z 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-11-03T15:55:40.3276890Z 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-11-03T15:55:40.3280610Z 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-11-03T15:55:40.3284540Z 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-11-03T15:55:40.3285400Z 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-11-03T15:55:40.3290220Z 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-11-03T15:55:40.3292640Z 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-11-03T15:55:40.3297660Z 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-11-03T15:55:40.3298500Z 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-11-03T15:55:40.3302280Z 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-11-03T15:55:40.3307280Z 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-11-03T15:55:40.3310400Z 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-11-03T15:55:40.3314680Z 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-11-03T15:55:40.3315600Z 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-11-03T15:55:40.3319230Z 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-11-03T15:55:40.3323670Z 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-11-03T15:55:40.3327260Z 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-11-03T15:55:40.3328130Z 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-11-03T15:55:40.3333960Z 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-11-03T15:55:40.3336340Z 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-11-03T15:55:40.3342130Z 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-11-03T15:55:40.3342880Z 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-11-03T15:55:40.3344240Z 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-11-03T15:55:40.3350590Z 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-11-03T15:55:40.3351420Z 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-11-03T15:55:40.3358230Z 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-11-03T15:55:40.3359740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.3366900Z 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-11-03T15:55:40.3367770Z 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-11-03T15:55:40.3369080Z 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-11-03T15:55:40.3374860Z 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-11-03T15:55:40.3376180Z 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-11-03T15:55:40.3381890Z 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-11-03T15:55:40.3383560Z 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-11-03T15:55:40.3384550Z 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-11-03T15:55:40.3391400Z 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-11-03T15:55:40.3392250Z 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-11-03T15:55:40.3398810Z 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-11-03T15:55:40.3399650Z 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-11-03T15:55:40.3406900Z 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-11-03T15:55:40.3407670Z 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-11-03T15:55:40.3408800Z 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-11-03T15:55:40.3414510Z 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-11-03T15:55:40.3415900Z 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-11-03T15:55:40.3422090Z 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-11-03T15:55:40.3422960Z 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-11-03T15:55:40.3424810Z 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-11-03T15:55:40.3431770Z 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-11-03T15:55:40.3432600Z 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-11-03T15:55:40.3439320Z 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-11-03T15:55:40.3440710Z 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-11-03T15:55:40.3441890Z 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-11-03T15:55:40.3447600Z 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-11-03T15:55:40.3455380Z 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-11-03T15:55:40.3456680Z 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-11-03T15:55:40.3462690Z 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-11-03T15:55:40.3463480Z 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-11-03T15:55:40.3464670Z 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-11-03T15:55:40.3470230Z 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-11-03T15:55:40.3471600Z 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-11-03T15:55:40.3477670Z 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-11-03T15:55:40.3479010Z 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-11-03T15:55:40.3485950Z 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-11-03T15:55:40.3486830Z 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-11-03T15:55:40.3487870Z 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-11-03T15:55:40.3493650Z 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-11-03T15:55:40.3495150Z 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-11-03T15:55:40.3501850Z 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-11-03T15:55:40.3502650Z 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-11-03T15:55:40.3509620Z 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-11-03T15:55:40.3510580Z 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-11-03T15:55:40.3511680Z 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-11-03T15:55:40.3517590Z 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-11-03T15:55:40.3518880Z 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-11-03T15:55:40.3526000Z 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-11-03T15:55:40.3526930Z 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-11-03T15:55:40.3528200Z 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-11-03T15:55:40.3533770Z 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-11-03T15:55:40.3535180Z 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-11-03T15:55:40.3541560Z 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-11-03T15:55:40.3542950Z 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-11-03T15:55:40.3548490Z 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-11-03T15:55:40.3549860Z 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-11-03T15:55:40.3551140Z 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-11-03T15:55:40.3557560Z 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-11-03T15:55:40.3558450Z 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-11-03T15:55:40.3564840Z 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-11-03T15:55:40.3566150Z 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-11-03T15:55:40.3572440Z 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-11-03T15:55:40.3573370Z 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-11-03T15:55:40.3575170Z 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-11-03T15:55:40.3581260Z 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-11-03T15:55:40.3582100Z 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-11-03T15:55:40.3588820Z 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-11-03T15:55:40.3590170Z 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-11-03T15:55:40.3596860Z 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-11-03T15:55:40.3597880Z 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-11-03T15:55:40.3598850Z 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-11-03T15:55:40.3604020Z 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-11-03T15:55:40.3605410Z 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-11-03T15:55:40.3612920Z 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-11-03T15:55:40.3614250Z 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-11-03T15:55:40.3620680Z 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-11-03T15:55:40.3621430Z 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-11-03T15:55:40.3622580Z 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-11-03T15:55:40.3628930Z 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-11-03T15:55:40.3629970Z 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-11-03T15:55:40.3637570Z 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-11-03T15:55:40.3638570Z 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-11-03T15:55:40.3639870Z 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-11-03T15:55:40.3648780Z 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-11-03T15:55:40.3649630Z 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-11-03T15:55:40.3651490Z 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-11-03T15:55:40.3657890Z 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-11-03T15:55:40.3666420Z 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-11-03T15:55:40.3671670Z 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-11-03T15:55:40.3674020Z 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-11-03T15:55:40.3674840Z 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-11-03T15:55:40.3681410Z 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-11-03T15:55:40.3682700Z 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-11-03T15:55:40.3690420Z 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-11-03T15:55:40.3691220Z 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-11-03T15:55:40.3698520Z 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-11-03T15:55:40.3699230Z 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-11-03T15:55:40.3706550Z 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-11-03T15:55:40.3707440Z 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-11-03T15:55:40.3708550Z 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-11-03T15:55:40.3714500Z 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-11-03T15:55:40.3715260Z 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-11-03T15:55:40.3722170Z 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-11-03T15:55:40.3723450Z 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-11-03T15:55:40.3730300Z 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-11-03T15:55:40.3731160Z 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-11-03T15:55:40.3732320Z 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-11-03T15:55:40.3738510Z 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-11-03T15:55:40.3739440Z 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-11-03T15:55:40.3747170Z 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-11-03T15:55:40.3748090Z 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-11-03T15:55:40.3749170Z 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-11-03T15:55:40.3754690Z 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-11-03T15:55:40.3756060Z 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-11-03T15:55:40.3762410Z 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-11-03T15:55:40.3763240Z 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-11-03T15:55:40.3768510Z 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-11-03T15:55:40.3770010Z 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-11-03T15:55:40.3771110Z 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-11-03T15:55:40.3778600Z 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-11-03T15:55:40.3780040Z 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-11-03T15:55:40.3786380Z 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-11-03T15:55:40.3787210Z 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-11-03T15:55:40.3788480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.3794040Z 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-11-03T15:55:40.3794990Z 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-11-03T15:55:40.3801280Z 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-11-03T15:55:40.3803640Z 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-11-03T15:55:40.3809280Z 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-11-03T15:55:40.3810120Z 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-11-03T15:55:40.3811940Z 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-11-03T15:55:40.3817410Z 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-11-03T15:55:40.3818320Z 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-11-03T15:55:40.3825040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.3827190Z 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-11-03T15:55:40.3832580Z 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-11-03T15:55:40.3833380Z 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-11-03T15:55:40.3836260Z 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-11-03T15:55:40.3840640Z 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-11-03T15:55:40.3841590Z 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-11-03T15:55:40.3846490Z 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-11-03T15:55:40.3850760Z 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-11-03T15:55:40.3854480Z 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-11-03T15:55:40.3856030Z 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-11-03T15:55:40.3862720Z 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-11-03T15:55:40.3867150Z 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-11-03T15:55:40.3868120Z 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-11-03T15:55:40.3876310Z 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-11-03T15:55:40.3879850Z 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-11-03T15:55:40.3884400Z 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-11-03T15:55:40.3885360Z 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-11-03T15:55:40.3889240Z 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-11-03T15:55:40.3893380Z 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-11-03T15:55:40.3897240Z 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-11-03T15:55:40.3901780Z 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-11-03T15:55:40.3902500Z 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-11-03T15:55:40.3906970Z 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-11-03T15:55:40.3911370Z 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-11-03T15:55:40.3914550Z 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-11-03T15:55:40.3915410Z 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-11-03T15:55:40.3920490Z 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-11-03T15:55:40.3922660Z 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-11-03T15:55:40.3928150Z 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-11-03T15:55:40.3928990Z 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-11-03T15:55:40.3930850Z 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-11-03T15:55:40.3937050Z 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-11-03T15:55:40.3937940Z 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-11-03T15:55:40.3944810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_is_contiguous_ops.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.3946190Z 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-11-03T15:55:40.3952780Z 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-11-03T15:55:40.3953750Z 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-11-03T15:55:40.3955040Z 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-11-03T15:55:40.3959900Z 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-11-03T15:55:40.3961390Z 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-11-03T15:55:40.3967700Z 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-11-03T15:55:40.3969020Z 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-11-03T15:55:40.3975550Z 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-11-03T15:55:40.3976290Z 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-11-03T15:55:40.3977430Z 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-11-03T15:55:40.3984450Z 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-11-03T15:55:40.3985240Z 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-11-03T15:55:40.3993070Z 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-11-03T15:55:40.3993920Z 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-11-03T15:55:40.4001220Z 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-11-03T15:55:40.4002100Z 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-11-03T15:55:40.4003280Z 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-11-03T15:55:40.4008720Z 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-11-03T15:55:40.4011060Z 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-11-03T15:55:40.4016760Z 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-11-03T15:55:40.4017550Z 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-11-03T15:55:40.4018740Z 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-11-03T15:55:40.4024100Z 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-11-03T15:55:40.4025100Z 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-11-03T15:55:40.4029450Z 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-11-03T15:55:40.4033180Z 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-11-03T15:55:40.4037090Z 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-11-03T15:55:40.4038260Z 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-11-03T15:55:40.4051480Z 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-11-03T15:55:40.4053890Z 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-11-03T15:55:40.4054700Z 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-11-03T15:55:40.4061150Z 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-11-03T15:55:40.4062470Z 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-11-03T15:55:40.4068480Z 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-11-03T15:55:40.4069770Z 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-11-03T15:55:40.4071070Z 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-11-03T15:55:40.4078240Z 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-11-03T15:55:40.4079100Z 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-11-03T15:55:40.4085780Z 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-11-03T15:55:40.4087190Z 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-11-03T15:55:40.4093610Z 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-11-03T15:55:40.4094480Z 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-11-03T15:55:40.4095720Z 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-11-03T15:55:40.4101390Z 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-11-03T15:55:40.4102200Z 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-11-03T15:55:40.4109190Z 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-11-03T15:55:40.4110670Z 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-11-03T15:55:40.4111860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.4116780Z 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-11-03T15:55:40.4118970Z 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-11-03T15:55:40.4124950Z 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-11-03T15:55:40.4125760Z 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-11-03T15:55:40.4127600Z 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-11-03T15:55:40.4133800Z 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-11-03T15:55:40.4134810Z 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-11-03T15:55:40.4140960Z 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-11-03T15:55:40.4142380Z 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-11-03T15:55:40.4148510Z 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-11-03T15:55:40.4151030Z 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-11-03T15:55:40.4151870Z 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-11-03T15:55:40.4158190Z 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-11-03T15:55:40.4159110Z 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-11-03T15:55:40.4165780Z 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-11-03T15:55:40.4166610Z 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-11-03T15:55:40.4173990Z 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-11-03T15:55:40.4174890Z 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-11-03T15:55:40.4176120Z 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-11-03T15:55:40.4181960Z 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-11-03T15:55:40.4182760Z 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-11-03T15:55:40.4189130Z 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-11-03T15:55:40.4191590Z 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-11-03T15:55:40.4192600Z 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-11-03T15:55:40.4196650Z 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-11-03T15:55:40.4198160Z 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-11-03T15:55:40.4204640Z 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-11-03T15:55:40.4212110Z 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-11-03T15:55:40.4213620Z 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-11-03T15:55:40.4214880Z 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-11-03T15:55:40.4221560Z 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-11-03T15:55:40.4222410Z 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-11-03T15:55:40.4229960Z 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-11-03T15:55:40.4230800Z 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-11-03T15:55:40.4237980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.4238900Z 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-11-03T15:55:40.4240120Z 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-11-03T15:55:40.4245920Z 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-11-03T15:55:40.4246690Z 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-11-03T15:55:40.4253680Z 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-11-03T15:55:40.4254400Z 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-11-03T15:55:40.4255500Z 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-11-03T15:55:40.4260810Z 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-11-03T15:55:40.4263450Z 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-11-03T15:55:40.4268770Z 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-11-03T15:55:40.4269660Z 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-11-03T15:55:40.4272610Z 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-11-03T15:55:40.4278080Z 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-11-03T15:55:40.4279000Z 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-11-03T15:55:40.4281380Z 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-11-03T15:55:40.4287540Z 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-11-03T15:55:40.4289860Z 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-11-03T15:55:40.4294960Z 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-11-03T15:55:40.4295780Z 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-11-03T15:55:40.4298750Z 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-11-03T15:55:40.4303900Z 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-11-03T15:55:40.4306800Z 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-11-03T15:55:40.4311370Z 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-11-03T15:55:40.4312200Z 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-11-03T15:55:40.4315650Z 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-11-03T15:55:40.4320060Z 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-11-03T15:55:40.4323790Z 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-11-03T15:55:40.4328150Z 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-11-03T15:55:40.4329090Z 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-11-03T15:55:40.4332560Z 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-11-03T15:55:40.4337580Z 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-11-03T15:55:40.4340760Z 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-11-03T15:55:40.4341650Z 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-11-03T15:55:40.4347430Z 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-11-03T15:55:40.4348730Z 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-11-03T15:55:40.4355280Z 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-11-03T15:55:40.4356220Z 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-11-03T15:55:40.4357570Z 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-11-03T15:55:40.4364780Z 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-11-03T15:55:40.4365660Z 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-11-03T15:55:40.4372290Z 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-11-03T15:55:40.4379600Z 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-11-03T15:55:40.4380590Z 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-11-03T15:55:40.4381690Z 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-11-03T15:55:40.4388010Z 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-11-03T15:55:40.4388950Z 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-11-03T15:55:40.4395910Z 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-11-03T15:55:40.4397320Z 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-11-03T15:55:40.4404010Z 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-11-03T15:55:40.4404950Z 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-11-03T15:55:40.4406010Z 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-11-03T15:55:40.4411850Z 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-11-03T15:55:40.4413220Z 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-11-03T15:55:40.4419340Z 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-11-03T15:55:40.4420150Z 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-11-03T15:55:40.4421510Z 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-11-03T15:55:40.4427470Z 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-11-03T15:55:40.4428380Z 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-11-03T15:55:40.4435590Z 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-11-03T15:55:40.4436650Z 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-11-03T15:55:40.4443080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.4443920Z 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-11-03T15:55:40.4444970Z 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-11-03T15:55:40.4450490Z 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-11-03T15:55:40.4451300Z 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-11-03T15:55:40.4458000Z 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-11-03T15:55:40.4459390Z 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-11-03T15:55:40.4465660Z 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-11-03T15:55:40.4466690Z 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-11-03T15:55:40.4468080Z 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-11-03T15:55:40.4475280Z 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-11-03T15:55:40.4476060Z 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-11-03T15:55:40.4483800Z 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-11-03T15:55:40.4484650Z 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-11-03T15:55:40.4491410Z 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-11-03T15:55:40.4492180Z 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-11-03T15:55:40.4493290Z 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-11-03T15:55:40.4499780Z 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-11-03T15:55:40.4500370Z 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-11-03T15:55:40.4507530Z 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-11-03T15:55:40.4508360Z 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-11-03T15:55:40.4509390Z 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-11-03T15:55:40.4515260Z 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-11-03T15:55:40.4516640Z 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-11-03T15:55:40.4523540Z 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-11-03T15:55:40.4524410Z 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-11-03T15:55:40.4525700Z 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-11-03T15:55:40.4531590Z 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-11-03T15:55:40.4539500Z 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-11-03T15:55:40.4540980Z 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-11-03T15:55:40.4542220Z 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-11-03T15:55:40.4547500Z 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-11-03T15:55:40.4548780Z 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-11-03T15:55:40.4555250Z 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-11-03T15:55:40.4556490Z 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-11-03T15:55:40.4557940Z 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-11-03T15:55:40.4564870Z 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-11-03T15:55:40.4565790Z 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-11-03T15:55:40.4571890Z 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-11-03T15:55:40.4574330Z 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-11-03T15:55:40.4579660Z 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-11-03T15:55:40.4580560Z 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-11-03T15:55:40.4582220Z 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-11-03T15:55:40.4587830Z 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-11-03T15:55:40.4588730Z 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-11-03T15:55:40.4592410Z 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-11-03T15:55:40.4597550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_is_contiguous.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.4601260Z 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-11-03T15:55:40.4605990Z 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-11-03T15:55:40.4606960Z 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-11-03T15:55:40.4609810Z 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-11-03T15:55:40.4613470Z 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-11-03T15:55:40.4614750Z 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-11-03T15:55:40.4619040Z 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-11-03T15:55:40.4622760Z 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-11-03T15:55:40.4627790Z 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-11-03T15:55:40.4630280Z 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-11-03T15:55:40.4631000Z 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-11-03T15:55:40.4637590Z 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-11-03T15:55:40.4638920Z 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-11-03T15:55:40.4645330Z 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-11-03T15:55:40.4646110Z 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-11-03T15:55:40.4648010Z 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-11-03T15:55:40.4654510Z 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-11-03T15:55:40.4655340Z 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-11-03T15:55:40.4661950Z 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-11-03T15:55:40.4662850Z 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-11-03T15:55:40.4670020Z 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-11-03T15:55:40.4670830Z 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-11-03T15:55:40.4672120Z 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-11-03T15:55:40.4678270Z 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-11-03T15:55:40.4679110Z 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-11-03T15:55:40.4685960Z 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-11-03T15:55:40.4687290Z 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-11-03T15:55:40.4688380Z 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-11-03T15:55:40.4693760Z 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-11-03T15:55:40.4695260Z 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-11-03T15:55:40.4701630Z 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-11-03T15:55:40.4703000Z 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-11-03T15:55:40.4709420Z 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-11-03T15:55:40.4710200Z 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-11-03T15:55:40.4711430Z 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-11-03T15:55:40.4717110Z 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-11-03T15:55:40.4718580Z 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-11-03T15:55:40.4724950Z 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-11-03T15:55:40.4726270Z 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-11-03T15:55:40.4732940Z 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-11-03T15:55:40.4733740Z 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-11-03T15:55:40.4734790Z 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-11-03T15:55:40.4740600Z 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-11-03T15:55:40.4741700Z 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-11-03T15:55:40.4748170Z 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-11-03T15:55:40.4749490Z 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-11-03T15:55:40.4755870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.4756610Z 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-11-03T15:55:40.4758410Z 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-11-03T15:55:40.4764640Z 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-11-03T15:55:40.4765480Z 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-11-03T15:55:40.4772550Z 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-11-03T15:55:40.4773420Z 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-11-03T15:55:40.4780530Z 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-11-03T15:55:40.4781340Z 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-11-03T15:55:40.4782380Z 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-11-03T15:55:40.4788750Z 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-11-03T15:55:40.4789590Z 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-11-03T15:55:40.4797030Z 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-11-03T15:55:40.4797850Z 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-11-03T15:55:40.4799050Z 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-11-03T15:55:40.4804430Z 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-11-03T15:55:40.4805910Z 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-11-03T15:55:40.4812900Z 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-11-03T15:55:40.4813600Z 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-11-03T15:55:40.4816430Z 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-11-03T15:55:40.4817380Z 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-11-03T15:55:40.4820850Z 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-11-03T15:55:40.4825390Z 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-11-03T15:55:40.4830130Z 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-11-03T15:55:40.4833930Z 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-11-03T15:55:40.4834810Z 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-11-03T15:55:40.4839870Z 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-11-03T15:55:40.4842930Z 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-11-03T15:55:40.4847260Z 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-11-03T15:55:40.4848140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.4852300Z 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-11-03T15:55:40.4856640Z 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-11-03T15:55:40.4860460Z 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-11-03T15:55:40.4864090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.4865020Z 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-11-03T15:55:40.4869770Z 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-11-03T15:55:40.4872910Z 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-11-03T15:55:40.4877350Z 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-11-03T15:55:40.4878090Z 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-11-03T15:55:40.4881810Z 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-11-03T15:55:40.4887310Z 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-11-03T15:55:40.4890270Z 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-11-03T15:55:40.4894720Z 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-11-03T15:55:40.4895650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.4899060Z 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-11-03T15:55:40.4903410Z 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-11-03T15:55:40.4906590Z 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-11-03T15:55:40.4907460Z 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-11-03T15:55:40.4913380Z 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-11-03T15:55:40.4914810Z 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-11-03T15:55:40.4921040Z 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-11-03T15:55:40.4922430Z 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-11-03T15:55:40.4928640Z 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-11-03T15:55:40.4930180Z 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-11-03T15:55:40.4931290Z 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-11-03T15:55:40.4937830Z 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-11-03T15:55:40.4938720Z 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-11-03T15:55:40.4946330Z 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-11-03T15:55:40.4947120Z 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-11-03T15:55:40.4954440Z 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-11-03T15:55:40.4955300Z 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-11-03T15:55:40.4956550Z 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-11-03T15:55:40.4962510Z 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-11-03T15:55:40.4963500Z 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-11-03T15:55:40.4970990Z 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-11-03T15:55:40.4971760Z 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-11-03T15:55:40.4972880Z 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-11-03T15:55:40.4978180Z 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-11-03T15:55:40.4980530Z 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-11-03T15:55:40.4985950Z 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-11-03T15:55:40.4986690Z 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-11-03T15:55:40.4988580Z 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-11-03T15:55:40.4993350Z 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-11-03T15:55:40.4994830Z 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-11-03T15:55:40.5000920Z 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-11-03T15:55:40.5003140Z 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-11-03T15:55:40.5008830Z 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-11-03T15:55:40.5009730Z 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-11-03T15:55:40.5011530Z 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-11-03T15:55:40.5017590Z 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-11-03T15:55:40.5018460Z 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-11-03T15:55:40.5025200Z 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-11-03T15:55:40.5026550Z 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-11-03T15:55:40.5033290Z 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-11-03T15:55:40.5034090Z 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-11-03T15:55:40.5035180Z 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-11-03T15:55:40.5040970Z 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-11-03T15:55:40.5041960Z 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-11-03T15:55:40.5049150Z 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-11-03T15:55:40.5050060Z 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-11-03T15:55:40.5057120Z 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-11-03T15:55:40.5057980Z 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-11-03T15:55:40.5059080Z 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-11-03T15:55:40.5064850Z 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-11-03T15:55:40.5067300Z 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-11-03T15:55:40.5073690Z 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-11-03T15:55:40.5074500Z 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-11-03T15:55:40.5075550Z 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-11-03T15:55:40.5081210Z 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-11-03T15:55:40.5082570Z 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-11-03T15:55:40.5088870Z 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-11-03T15:55:40.5089800Z 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-11-03T15:55:40.5090930Z 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-11-03T15:55:40.5098180Z 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-11-03T15:55:40.5098990Z 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-11-03T15:55:40.5106230Z 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-11-03T15:55:40.5107050Z 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-11-03T15:55:40.5114050Z 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-11-03T15:55:40.5114780Z 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-11-03T15:55:40.5115970Z 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-11-03T15:55:40.5121840Z 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-11-03T15:55:40.5123180Z 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-11-03T15:55:40.5129600Z 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-11-03T15:55:40.5130500Z 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-11-03T15:55:40.5131670Z 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-11-03T15:55:40.5136990Z 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-11-03T15:55:40.5137930Z 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-11-03T15:55:40.5144750Z 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-11-03T15:55:40.5146920Z 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-11-03T15:55:40.5151980Z 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-11-03T15:55:40.5153450Z 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-11-03T15:55:40.5154820Z 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-11-03T15:55:40.5161660Z 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-11-03T15:55:40.5162500Z 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-11-03T15:55:40.5169670Z 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-11-03T15:55:40.5170440Z 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-11-03T15:55:40.5177490Z 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-11-03T15:55:40.5178320Z 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-11-03T15:55:40.5179540Z 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-11-03T15:55:40.5185380Z 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-11-03T15:55:40.5186780Z 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-11-03T15:55:40.5192920Z 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-11-03T15:55:40.5193690Z 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-11-03T15:55:40.5195170Z 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-11-03T15:55:40.5200700Z 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-11-03T15:55:40.5201450Z 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-11-03T15:55:40.5208460Z 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-11-03T15:55:40.5209880Z 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-11-03T15:55:40.5211150Z 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-11-03T15:55:40.5217840Z 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-11-03T15:55:40.5218650Z 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-11-03T15:55:40.5219780Z 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-11-03T15:55:40.5227460Z 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-11-03T15:55:40.5228220Z 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-11-03T15:55:40.5233990Z 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-11-03T15:55:40.5235530Z 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-11-03T15:55:40.5241740Z 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-11-03T15:55:40.5243220Z 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-11-03T15:55:40.5244400Z 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-11-03T15:55:40.5251380Z 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-11-03T15:55:40.5252370Z 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-11-03T15:55:40.5258960Z 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-11-03T15:55:40.5261350Z 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-11-03T15:55:40.5266410Z 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-11-03T15:55:40.5267340Z 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-11-03T15:55:40.5269400Z 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-11-03T15:55:40.5274520Z 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-11-03T15:55:40.5275340Z 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-11-03T15:55:40.5279330Z 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-11-03T15:55:40.5283660Z 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-11-03T15:55:40.5286730Z 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-11-03T15:55:40.5287450Z 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-11-03T15:55:40.5293160Z 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-11-03T15:55:40.5295760Z 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-11-03T15:55:40.5301160Z 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-11-03T15:55:40.5302500Z 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-11-03T15:55:40.5309510Z 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-11-03T15:55:40.5310450Z 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-11-03T15:55:40.5311520Z 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-11-03T15:55:40.5317430Z 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-11-03T15:55:40.5318780Z 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-11-03T15:55:40.5325410Z 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-11-03T15:55:40.5326780Z 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-11-03T15:55:40.5327960Z 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-11-03T15:55:40.5335330Z 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-11-03T15:55:40.5336170Z 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-11-03T15:55:40.5342960Z 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-11-03T15:55:40.5343560Z 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-11-03T15:55:40.5350830Z 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-11-03T15:55:40.5351800Z 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-11-03T15:55:40.5352920Z 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-11-03T15:55:40.5358320Z 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-11-03T15:55:40.5359790Z 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-11-03T15:55:40.5366560Z 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-11-03T15:55:40.5367670Z 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-11-03T15:55:40.5368790Z 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-11-03T15:55:40.5375000Z 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-11-03T15:55:40.5375710Z 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-11-03T15:55:40.5382890Z 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-11-03T15:55:40.5384140Z 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-11-03T15:55:40.5384910Z 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-11-03T15:55:40.5391170Z 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-11-03T15:55:40.5392400Z 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-11-03T15:55:40.5398820Z 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-11-03T15:55:40.5400220Z 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-11-03T15:55:40.5401350Z 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-11-03T15:55:40.5406620Z 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-11-03T15:55:40.5408960Z 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-11-03T15:55:40.5414310Z 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-11-03T15:55:40.5415710Z 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-11-03T15:55:40.5417710Z 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-11-03T15:55:40.5424080Z 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-11-03T15:55:40.5424840Z 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-11-03T15:55:40.5431540Z 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-11-03T15:55:40.5433140Z 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-11-03T15:55:40.5439200Z 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-11-03T15:55:40.5440050Z 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-11-03T15:55:40.5441120Z 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-11-03T15:55:40.5446710Z 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-11-03T15:55:40.5448000Z 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-11-03T15:55:40.5454480Z 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-11-03T15:55:40.5455970Z 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-11-03T15:55:40.5462460Z 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-11-03T15:55:40.5463400Z 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-11-03T15:55:40.5464480Z 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-11-03T15:55:40.5471300Z 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-11-03T15:55:40.5472180Z 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-11-03T15:55:40.5478540Z 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-11-03T15:55:40.5479890Z 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-11-03T15:55:40.5486340Z 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-11-03T15:55:40.5487160Z 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-11-03T15:55:40.5488390Z 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-11-03T15:55:40.5494690Z 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-11-03T15:55:40.5495560Z 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-11-03T15:55:40.5502500Z 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-11-03T15:55:40.5504030Z 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-11-03T15:55:40.5510390Z 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-11-03T15:55:40.5511250Z 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-11-03T15:55:40.5512470Z 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-11-03T15:55:40.5517740Z 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-11-03T15:55:40.5519780Z 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-11-03T15:55:40.5524680Z 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-11-03T15:55:40.5526080Z 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-11-03T15:55:40.5529160Z 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-11-03T15:55:40.5533380Z 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-11-03T15:55:40.5534350Z 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-11-03T15:55:40.5541460Z 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-11-03T15:55:40.5542380Z 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-11-03T15:55:40.5548950Z 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-11-03T15:55:40.5550400Z 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-11-03T15:55:40.5551610Z 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-11-03T15:55:40.5563230Z 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-11-03T15:55:40.5563850Z 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-11-03T15:55:40.5566830Z 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-11-03T15:55:40.5567590Z 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-11-03T15:55:40.5574250Z 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-11-03T15:55:40.5575050Z 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-11-03T15:55:40.5576190Z 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-11-03T15:55:40.5582040Z 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-11-03T15:55:40.5583520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.5589930Z 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-11-03T15:55:40.5592290Z 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-11-03T15:55:40.5593100Z 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-11-03T15:55:40.5598300Z 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-11-03T15:55:40.5599110Z 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-11-03T15:55:40.5604930Z 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-11-03T15:55:40.5607710Z 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-11-03T15:55:40.5608840Z 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-11-03T15:55:40.5614250Z 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-11-03T15:55:40.5615940Z 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-11-03T15:55:40.5616900Z 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-11-03T15:55:40.5622870Z 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-11-03T15:55:40.5623840Z 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-11-03T15:55:40.5624930Z 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-11-03T15:55:40.5631360Z 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-11-03T15:55:40.5638910Z 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-11-03T15:55:40.5640420Z 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-11-03T15:55:40.5646570Z 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-11-03T15:55:40.5647450Z 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-11-03T15:55:40.5648600Z 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-11-03T15:55:40.5654810Z 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-11-03T15:55:40.5655620Z 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-11-03T15:55:40.5659010Z 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-11-03T15:55:40.5664900Z 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-11-03T15:55:40.5666350Z 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-11-03T15:55:40.5667720Z 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-11-03T15:55:40.5674670Z 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-11-03T15:55:40.5675670Z 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-11-03T15:55:40.5682910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.5683750Z 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-11-03T15:55:40.5690640Z 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-11-03T15:55:40.5691710Z 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-11-03T15:55:40.5692930Z 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-11-03T15:55:40.5698370Z 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-11-03T15:55:40.5699760Z 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-11-03T15:55:40.5706050Z 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-11-03T15:55:40.5707000Z 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-11-03T15:55:40.5708140Z 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-11-03T15:55:40.5713700Z 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-11-03T15:55:40.5715080Z 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-11-03T15:55:40.5721120Z 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-11-03T15:55:40.5723390Z 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-11-03T15:55:40.5728680Z 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-11-03T15:55:40.5730160Z 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-11-03T15:55:40.5732050Z 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-11-03T15:55:40.5737310Z 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-11-03T15:55:40.5738190Z 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-11-03T15:55:40.5740160Z 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-11-03T15:55:40.5746960Z 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-11-03T15:55:40.5749310Z 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-11-03T15:55:40.5754450Z 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-11-03T15:55:40.5755300Z 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-11-03T15:55:40.5758330Z 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-11-03T15:55:40.5763780Z 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-11-03T15:55:40.5765970Z 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-11-03T15:55:40.5771350Z 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-11-03T15:55:40.5772170Z 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-11-03T15:55:40.5774550Z 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-11-03T15:55:40.5780310Z 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-11-03T15:55:40.5781200Z 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-11-03T15:55:40.5787750Z 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-11-03T15:55:40.5789710Z 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-11-03T15:55:40.5795420Z 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-11-03T15:55:40.5796290Z 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-11-03T15:55:40.5797990Z 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-11-03T15:55:40.5803570Z 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-11-03T15:55:40.5804370Z 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-11-03T15:55:40.5811160Z 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-11-03T15:55:40.5812720Z 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-11-03T15:55:40.5818750Z 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-11-03T15:55:40.5820050Z 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-11-03T15:55:40.5821120Z 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-11-03T15:55:40.5828380Z 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-11-03T15:55:40.5829210Z 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-11-03T15:55:40.5836020Z 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-11-03T15:55:40.5836890Z 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-11-03T15:55:40.5843940Z 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-11-03T15:55:40.5844840Z 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-11-03T15:55:40.5846140Z 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-11-03T15:55:40.5851660Z 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-11-03T15:55:40.5859990Z 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-11-03T15:55:40.5861020Z 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-11-03T15:55:40.5862090Z 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-11-03T15:55:40.5867590Z 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-11-03T15:55:40.5869140Z 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-11-03T15:55:40.5875500Z 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-11-03T15:55:40.5876620Z 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-11-03T15:55:40.5877680Z 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-11-03T15:55:40.5884380Z 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-11-03T15:55:40.5885260Z 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-11-03T15:55:40.5891970Z 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-11-03T15:55:40.5892920Z 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-11-03T15:55:40.5899570Z 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-11-03T15:55:40.5900650Z 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-11-03T15:55:40.5901810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_mask_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.5907490Z 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-11-03T15:55:40.5908670Z 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-11-03T15:55:40.5915240Z 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-11-03T15:55:40.5916550Z 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-11-03T15:55:40.5917950Z 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-11-03T15:55:40.5925310Z 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-11-03T15:55:40.5926170Z 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-11-03T15:55:40.5932760Z 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-11-03T15:55:40.5933650Z 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-11-03T15:55:40.5939970Z 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-11-03T15:55:40.5940860Z 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-11-03T15:55:40.5941930Z 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-11-03T15:55:40.5947800Z 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-11-03T15:55:40.5948930Z 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-11-03T15:55:40.5955420Z 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-11-03T15:55:40.5956730Z 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-11-03T15:55:40.5963120Z 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-11-03T15:55:40.5964000Z 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-11-03T15:55:40.5965300Z 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-11-03T15:55:40.5970480Z 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-11-03T15:55:40.5971610Z 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-11-03T15:55:40.5978630Z 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-11-03T15:55:40.5980000Z 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-11-03T15:55:40.5986680Z 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-11-03T15:55:40.5987560Z 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-11-03T15:55:40.5988620Z 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-11-03T15:55:40.5995000Z 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-11-03T15:55:40.5995990Z 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-11-03T15:55:40.6004660Z 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-11-03T15:55:40.6005640Z 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-11-03T15:55:40.6006940Z 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-11-03T15:55:40.6009320Z 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-11-03T15:55:40.6012640Z 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-11-03T15:55:40.6014000Z 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-11-03T15:55:40.6015140Z 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-11-03T15:55:40.6019550Z 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-11-03T15:55:40.6021470Z 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-11-03T15:55:40.6027360Z 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-11-03T15:55:40.6035090Z 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-11-03T15:55:40.6037330Z 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-11-03T15:55:40.6038360Z 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-11-03T15:55:40.6044970Z 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-11-03T15:55:40.6045860Z 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-11-03T15:55:40.6052580Z 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-11-03T15:55:40.6053470Z 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-11-03T15:55:40.6054590Z 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-11-03T15:55:40.6060900Z 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-11-03T15:55:40.6061700Z 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-11-03T15:55:40.6069430Z 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-11-03T15:55:40.6070370Z 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-11-03T15:55:40.6077510Z 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-11-03T15:55:40.6078350Z 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-11-03T15:55:40.6079580Z 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-11-03T15:55:40.6085160Z 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-11-03T15:55:40.6087130Z 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-11-03T15:55:40.6092540Z 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-11-03T15:55:40.6093400Z 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-11-03T15:55:40.6096300Z 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-11-03T15:55:40.6100560Z 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-11-03T15:55:40.6101360Z 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-11-03T15:55:40.6106470Z 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-11-03T15:55:40.6110190Z 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-11-03T15:55:40.6113640Z 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-11-03T15:55:40.6114680Z 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-11-03T15:55:40.6119880Z 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-11-03T15:55:40.6122890Z 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-11-03T15:55:40.6127240Z 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-11-03T15:55:40.6128110Z 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-11-03T15:55:40.6131630Z 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-11-03T15:55:40.6136920Z 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-11-03T15:55:40.6139940Z 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-11-03T15:55:40.6144320Z 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-11-03T15:55:40.6145150Z 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-11-03T15:55:40.6148950Z 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-11-03T15:55:40.6153290Z 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-11-03T15:55:40.6157070Z 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-11-03T15:55:40.6160920Z 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-11-03T15:55:40.6161860Z 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-11-03T15:55:40.6166380Z 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-11-03T15:55:40.6169430Z 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-11-03T15:55:40.6173940Z 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-11-03T15:55:40.6174980Z 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-11-03T15:55:40.6179110Z 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-11-03T15:55:40.6183330Z 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-11-03T15:55:40.6187480Z 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-11-03T15:55:40.6190900Z 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-11-03T15:55:40.6191780Z 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-11-03T15:55:40.6196750Z 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-11-03T15:55:40.6201160Z 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-11-03T15:55:40.6204800Z 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-11-03T15:55:40.6205600Z 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-11-03T15:55:40.6210560Z 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-11-03T15:55:40.6212710Z 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-11-03T15:55:40.6218050Z 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-11-03T15:55:40.6219120Z 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-11-03T15:55:40.6222460Z 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-11-03T15:55:40.6226900Z 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-11-03T15:55:40.6229920Z 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-11-03T15:55:40.6230770Z 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-11-03T15:55:40.6236620Z 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-11-03T15:55:40.6238210Z 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-11-03T15:55:40.6243660Z 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-11-03T15:55:40.6245570Z 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-11-03T15:55:40.6251030Z 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-11-03T15:55:40.6251900Z 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-11-03T15:55:40.6254680Z 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-11-03T15:55:40.6260590Z 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-11-03T15:55:40.6263610Z 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-11-03T15:55:40.6268260Z 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-11-03T15:55:40.6269140Z 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-11-03T15:55:40.6271590Z 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-11-03T15:55:40.6276940Z 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-11-03T15:55:40.6277770Z 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-11-03T15:55:40.6284760Z 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-11-03T15:55:40.6286140Z 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-11-03T15:55:40.6291780Z 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-11-03T15:55:40.6293360Z 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-11-03T15:55:40.6294750Z 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-11-03T15:55:40.6301190Z 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-11-03T15:55:40.6302110Z 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-11-03T15:55:40.6308750Z 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-11-03T15:55:40.6310150Z 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-11-03T15:55:40.6316720Z 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-11-03T15:55:40.6317640Z 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-11-03T15:55:40.6318900Z 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-11-03T15:55:40.6324610Z 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-11-03T15:55:40.6325510Z 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-11-03T15:55:40.6328720Z 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-11-03T15:55:40.6333910Z 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-11-03T15:55:40.6334760Z 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-11-03T15:55:40.6342010Z 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-11-03T15:55:40.6342870Z 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-11-03T15:55:40.6350060Z 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-11-03T15:55:40.6350910Z 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-11-03T15:55:40.6352030Z 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-11-03T15:55:40.6357710Z 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-11-03T15:55:40.6359190Z 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-11-03T15:55:40.6365460Z 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-11-03T15:55:40.6366350Z 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-11-03T15:55:40.6367390Z 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-11-03T15:55:40.6374820Z 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-11-03T15:55:40.6375700Z 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-11-03T15:55:40.6383020Z 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-11-03T15:55:40.6383770Z 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-11-03T15:55:40.6391340Z 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-11-03T15:55:40.6392110Z 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-11-03T15:55:40.6393360Z 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-11-03T15:55:40.6396300Z 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-11-03T15:55:40.6399350Z 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-11-03T15:55:40.6400190Z 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-11-03T15:55:40.6402180Z 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-11-03T15:55:40.6408910Z 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-11-03T15:55:40.6411950Z 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-11-03T15:55:40.6419970Z 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-11-03T15:55:40.6421150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.6424290Z 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-11-03T15:55:40.6428600Z 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-11-03T15:55:40.6429470Z 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-11-03T15:55:40.6432530Z 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-11-03T15:55:40.6436830Z 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-11-03T15:55:40.6437780Z 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-11-03T15:55:40.6441940Z 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-11-03T15:55:40.6445740Z 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-11-03T15:55:40.6450620Z 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-11-03T15:55:40.6452750Z 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-11-03T15:55:40.6458300Z 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-11-03T15:55:40.6459190Z 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-11-03T15:55:40.6461650Z 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-11-03T15:55:40.6467030Z 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-11-03T15:55:40.6470070Z 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-11-03T15:55:40.6474390Z 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-11-03T15:55:40.6475270Z 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-11-03T15:55:40.6478960Z 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-11-03T15:55:40.6483480Z 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-11-03T15:55:40.6487720Z 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-11-03T15:55:40.6490800Z 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-11-03T15:55:40.6491800Z 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-11-03T15:55:40.6496900Z 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-11-03T15:55:40.6499060Z 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-11-03T15:55:40.6505470Z 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-11-03T15:55:40.6506370Z 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-11-03T15:55:40.6508030Z 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-11-03T15:55:40.6514240Z 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-11-03T15:55:40.6515120Z 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-11-03T15:55:40.6522250Z 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-11-03T15:55:40.6523860Z 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-11-03T15:55:40.6530250Z 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-11-03T15:55:40.6531190Z 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-11-03T15:55:40.6532260Z 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-11-03T15:55:40.6537770Z 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-11-03T15:55:40.6538560Z 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-11-03T15:55:40.6545460Z 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-11-03T15:55:40.6546320Z 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-11-03T15:55:40.6553700Z 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-11-03T15:55:40.6554590Z 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-11-03T15:55:40.6555870Z 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-11-03T15:55:40.6561740Z 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-11-03T15:55:40.6562620Z 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-11-03T15:55:40.6569030Z 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-11-03T15:55:40.6570440Z 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-11-03T15:55:40.6571720Z 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-11-03T15:55:40.6578840Z 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-11-03T15:55:40.6579810Z 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-11-03T15:55:40.6586680Z 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-11-03T15:55:40.6587510Z 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-11-03T15:55:40.6594710Z 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-11-03T15:55:40.6595760Z 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-11-03T15:55:40.6596880Z 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-11-03T15:55:40.6603510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_v2_native.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.6604350Z 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-11-03T15:55:40.6611150Z 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-11-03T15:55:40.6612000Z 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-11-03T15:55:40.6613130Z 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-11-03T15:55:40.6619410Z 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-11-03T15:55:40.6620350Z 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-11-03T15:55:40.6626850Z 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-11-03T15:55:40.6627710Z 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-11-03T15:55:40.6629100Z 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-11-03T15:55:40.6635430Z 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-11-03T15:55:40.6636240Z 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-11-03T15:55:40.6642910Z 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-11-03T15:55:40.6644240Z 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-11-03T15:55:40.6645490Z 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-11-03T15:55:40.6650460Z 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-11-03T15:55:40.6652250Z 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-11-03T15:55:40.6658470Z 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-11-03T15:55:40.6659640Z 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-11-03T15:55:40.6667550Z 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-11-03T15:55:40.6668350Z 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-11-03T15:55:40.6669490Z 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-11-03T15:55:40.6674750Z 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-11-03T15:55:40.6676210Z 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-11-03T15:55:40.6683290Z 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-11-03T15:55:40.6684130Z 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-11-03T15:55:40.6685340Z 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-11-03T15:55:40.6690940Z 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-11-03T15:55:40.6692070Z 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-11-03T15:55:40.6698710Z 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-11-03T15:55:40.6700300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen/ops 2025-11-03T15:55:40.6706630Z 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-11-03T15:55:40.6707680Z 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-11-03T15:55:40.6708940Z 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-11-03T15:55:40.6714570Z 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-11-03T15:55:40.6715590Z 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-11-03T15:55:40.6722040Z 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-11-03T15:55:40.6723560Z 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-11-03T15:55:40.6730020Z 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-11-03T15:55:40.6730900Z 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-11-03T15:55:40.6732060Z 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-11-03T15:55:40.6737430Z 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-11-03T15:55:40.6739070Z 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-11-03T15:55:40.6745450Z 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-11-03T15:55:40.6746840Z 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-11-03T15:55:40.6748130Z 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-11-03T15:55:40.6754900Z 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-11-03T15:55:40.6755730Z 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-11-03T15:55:40.6762850Z 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-11-03T15:55:40.6763680Z 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-11-03T15:55:40.6770630Z 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-11-03T15:55:40.6771510Z 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-11-03T15:55:40.6772790Z 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-11-03T15:55:40.6778830Z 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-11-03T15:55:40.6779960Z 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-11-03T15:55:40.6786080Z 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-11-03T15:55:40.6787460Z 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-11-03T15:55:40.6788670Z 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-11-03T15:55:40.6794130Z 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-11-03T15:55:40.6794980Z 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-11-03T15:55:40.6797940Z 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-11-03T15:55:40.6802180Z 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-11-03T15:55:40.6803180Z 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-11-03T15:55:40.6807080Z 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-11-03T15:55:40.6810910Z 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-11-03T15:55:40.6816950Z 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-11-03T15:55:40.6820240Z 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-11-03T15:55:40.6824320Z 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-11-03T15:55:40.6825130Z 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-11-03T15:55:40.6829480Z 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-11-03T15:55:40.6833650Z 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-11-03T15:55:40.6836800Z 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-11-03T15:55:40.6837560Z 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-11-03T15:55:40.6843720Z 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-11-03T15:55:40.6845850Z 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-11-03T15:55:40.6851510Z 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-11-03T15:55:40.6852920Z 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-11-03T15:55:40.6854750Z 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-11-03T15:55:40.6861090Z 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-11-03T15:55:40.6862050Z 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-11-03T15:55:40.6869560Z 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-11-03T15:55:40.6870480Z 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-11-03T15:55:40.6877850Z 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-11-03T15:55:40.6881160Z 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-11-03T15:55:40.6885150Z 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-11-03T15:55:40.6886510Z 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-11-03T15:55:40.6892540Z 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-11-03T15:55:40.6893410Z 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-11-03T15:55:40.6894580Z 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-11-03T15:55:40.6900260Z 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-11-03T15:55:40.6901030Z 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-11-03T15:55:40.6908240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DTensorState.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen 2025-11-03T15:55:40.6909540Z 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-11-03T15:55:40.6916060Z 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-11-03T15:55:40.6916810Z 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-11-03T15:55:40.6917920Z 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-11-03T15:55:40.6923420Z 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-11-03T15:55:40.6924530Z 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-11-03T15:55:40.6931620Z 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-11-03T15:55:40.6932500Z 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-11-03T15:55:40.6939630Z 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-11-03T15:55:40.6940500Z 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-11-03T15:55:40.6941580Z 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-11-03T15:55:40.6947280Z 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-11-03T15:55:40.6948630Z 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-11-03T15:55:40.6955850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-11-03T15:55:40.6956490Z 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-11-03T15:55:40.6957780Z 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-11-03T15:55:40.6958900Z 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-11-03T15:55:40.6964950Z 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-11-03T15:55:40.6965800Z 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-11-03T15:55:40.6972220Z 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-11-03T15:55:40.6973740Z 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-11-03T15:55:40.6980040Z 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-11-03T15:55:40.6980870Z 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-11-03T15:55:40.6982040Z 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-11-03T15:55:40.6987660Z 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-11-03T15:55:40.6988550Z 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-11-03T15:55:40.6991010Z 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-11-03T15:55:40.6997190Z 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-11-03T15:55:40.6999320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/FunctionalizeFallbackKernel.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/ATen 2025-11-03T15:55:40.7005090Z 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-11-03T15:55:40.7005890Z 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-11-03T15:55:40.7008030Z 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-11-03T15:55:40.7014130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-11-03T15:55:40.7014810Z 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-11-03T15:55:40.7015890Z 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-11-03T15:55:40.7021720Z 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-11-03T15:55:40.7023110Z 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-11-03T15:55:40.7029380Z 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-11-03T15:55:40.7030920Z 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-11-03T15:55:40.7032080Z 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-11-03T15:55:40.7039200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10 2025-11-03T15:55:40.7040280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-11-03T15:55:40.7041200Z 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-11-03T15:55:40.7042650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-11-03T15:55:40.7043540Z 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-11-03T15:55:40.7044730Z 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-11-03T15:55:40.7046260Z 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-11-03T15:55:40.7052440Z 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-11-03T15:55:40.7053820Z 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-11-03T15:55:40.7055000Z 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-11-03T15:55:40.7060610Z 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-11-03T15:55:40.7061450Z 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-11-03T15:55:40.7069020Z 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-11-03T15:55:40.7069940Z 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-11-03T15:55:40.7076930Z 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-11-03T15:55:40.7077850Z 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-11-03T15:55:40.7078950Z 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-11-03T15:55:40.7084710Z 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-11-03T15:55:40.7086110Z 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-11-03T15:55:40.7093530Z 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-11-03T15:55:40.7094410Z 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-11-03T15:55:40.7095560Z 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-11-03T15:55:40.7100830Z 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-11-03T15:55:40.7102860Z 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-11-03T15:55:40.7105810Z 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-11-03T15:55:40.7109990Z 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-11-03T15:55:40.7111430Z 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-11-03T15:55:40.7113800Z 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-11-03T15:55:40.7119360Z 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-11-03T15:55:40.7123180Z 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-11-03T15:55:40.7126880Z 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-11-03T15:55:40.7127630Z 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-11-03T15:55:40.7132900Z 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-11-03T15:55:40.7135940Z 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-11-03T15:55:40.7140570Z 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-11-03T15:55:40.7141420Z 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-11-03T15:55:40.7145840Z 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-11-03T15:55:40.7149350Z 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-11-03T15:55:40.7153310Z 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-11-03T15:55:40.7154900Z 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-11-03T15:55:40.7156080Z 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-11-03T15:55:40.7157210Z 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-11-03T15:55:40.7158350Z 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-11-03T15:55:40.7159390Z 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-11-03T15:55:40.7160540Z 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-11-03T15:55:40.7161700Z 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-11-03T15:55:40.7162760Z 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-11-03T15:55:40.7163830Z 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-11-03T15:55:40.7164970Z 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-11-03T15:55:40.7166110Z 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-11-03T15:55:40.7167270Z 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-11-03T15:55:40.7168350Z 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-11-03T15:55:40.7169410Z 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-11-03T15:55:40.7170510Z 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-11-03T15:55:40.7171870Z 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-11-03T15:55:40.7173030Z 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-11-03T15:55:40.7175670Z 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-11-03T15:55:40.7176410Z 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-11-03T15:55:40.7181140Z 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-11-03T15:55:40.7182580Z 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-11-03T15:55:40.7185260Z 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-11-03T15:55:40.7189800Z 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-11-03T15:55:40.7190790Z 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-11-03T15:55:40.7197580Z 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-11-03T15:55:40.7199040Z 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-11-03T15:55:40.7205360Z 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-11-03T15:55:40.7206950Z 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-11-03T15:55:40.7208080Z 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-11-03T15:55:40.7215060Z 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-11-03T15:55:40.7216110Z 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-11-03T15:55:40.7223510Z 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-11-03T15:55:40.7224650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test 2025-11-03T15:55:40.7225720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-11-03T15:55:40.7226670Z 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-11-03T15:55:40.7231130Z 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-11-03T15:55:40.7232240Z 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-11-03T15:55:40.7234380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-11-03T15:55:40.7234990Z 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-11-03T15:55:40.7239210Z 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-11-03T15:55:40.7241150Z 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-11-03T15:55:40.7246180Z 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-11-03T15:55:40.7247050Z 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-11-03T15:55:40.7248200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/FileSystem.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/c10/util 2025-11-03T15:55:40.7253730Z 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-11-03T15:55:40.7256400Z 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-11-03T15:55:40.7261300Z 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-11-03T15:55:40.7263690Z 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-11-03T15:55:40.7264500Z 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-11-03T15:55:40.7270570Z 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-11-03T15:55:40.7272070Z 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-11-03T15:55:40.7278960Z 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-11-03T15:55:40.7279990Z 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-11-03T15:55:40.7287310Z 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-11-03T15:55:40.7288100Z 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-11-03T15:55:40.7289200Z 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-11-03T15:55:40.7295530Z 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-11-03T15:55:40.7297060Z 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-11-03T15:55:40.7304810Z 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-11-03T15:55:40.7305680Z 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-11-03T15:55:40.7306720Z 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-11-03T15:55:40.7313230Z 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-11-03T15:55:40.7314220Z 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-11-03T15:55:40.7315330Z 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-11-03T15:55:40.7320820Z 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-11-03T15:55:40.7321640Z 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-11-03T15:55:40.7329550Z 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-11-03T15:55:40.7330410Z 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-11-03T15:55:40.7336920Z 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-11-03T15:55:40.7337760Z 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-11-03T15:55:40.7339070Z 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-11-03T15:55:40.7345340Z 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-11-03T15:55:40.7346350Z 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-11-03T15:55:40.7353620Z 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-11-03T15:55:40.7354440Z 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-11-03T15:55:40.7355590Z 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-11-03T15:55:40.7360800Z 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-11-03T15:55:40.7363120Z 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-11-03T15:55:40.7370130Z 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-11-03T15:55:40.7375260Z 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-11-03T15:55:40.7375880Z 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-11-03T15:55:40.7378530Z 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-11-03T15:55:40.7379400Z 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-11-03T15:55:40.7387660Z 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-11-03T15:55:40.7388520Z 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-11-03T15:55:40.7389590Z 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-11-03T15:55:40.7395480Z 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-11-03T15:55:40.7396980Z 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-11-03T15:55:40.7404050Z 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-11-03T15:55:40.7404870Z 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-11-03T15:55:40.7405890Z 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-11-03T15:55:40.7412030Z 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-11-03T15:55:40.7413000Z 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-11-03T15:55:40.7419920Z 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-11-03T15:55:40.7420830Z 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-11-03T15:55:40.7421900Z 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-11-03T15:55:40.7427470Z 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-11-03T15:55:40.7428900Z 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-11-03T15:55:40.7435050Z 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-11-03T15:55:40.7436450Z 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-11-03T15:55:40.7437640Z 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-11-03T15:55:40.7444090Z 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-11-03T15:55:40.7444880Z 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-11-03T15:55:40.7451780Z 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-11-03T15:55:40.7452660Z 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-11-03T15:55:40.7461530Z 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-11-03T15:55:40.7462230Z 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-11-03T15:55:40.7463490Z 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-11-03T15:55:40.7467590Z 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-11-03T15:55:40.7469050Z 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-11-03T15:55:40.7470420Z 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-11-03T15:55:40.7471580Z 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-11-03T15:55:40.7472880Z 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-11-03T15:55:40.7477650Z 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-11-03T15:55:40.7479530Z 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-11-03T15:55:40.7480610Z 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-11-03T15:55:40.7481690Z 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-11-03T15:55:40.7482820Z 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-11-03T15:55:40.7483990Z 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-11-03T15:55:40.7485250Z 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-11-03T15:55:40.7487050Z 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-11-03T15:55:40.7488470Z 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-11-03T15:55:40.7489650Z 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-11-03T15:55:40.7490700Z 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-11-03T15:55:40.7491790Z 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-11-03T15:55:40.7492910Z 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-11-03T15:55:40.7494020Z 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-11-03T15:55:40.7495080Z 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-11-03T15:55:40.7496150Z 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-11-03T15:55:40.7497230Z 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-11-03T15:55:40.7498380Z 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-11-03T15:55:40.7499560Z 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-11-03T15:55:40.7500660Z 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-11-03T15:55:40.7501760Z 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-11-03T15:55:40.7503100Z 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-11-03T15:55:40.7504310Z 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-11-03T15:55:40.7505410Z 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-11-03T15:55:40.7506490Z 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-11-03T15:55:40.7507600Z 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-11-03T15:55:40.7508880Z 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-11-03T15:55:40.7509880Z 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-11-03T15:55:40.7511030Z 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-11-03T15:55:40.7512650Z 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-11-03T15:55:40.7513580Z 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-11-03T15:55:40.7515040Z 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-11-03T15:55:40.7516100Z 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-11-03T15:55:40.7517180Z 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-11-03T15:55:40.7518270Z 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-11-03T15:55:40.7519340Z 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-11-03T15:55:40.7520490Z 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-11-03T15:55:40.7521810Z 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-11-03T15:55:40.7522940Z 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-11-03T15:55:40.7523980Z 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-11-03T15:55:40.7526180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-11-03T15:55:40.7526810Z 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-11-03T15:55:40.7527950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/igamma.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/c10/metal 2025-11-03T15:55:40.7529210Z 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-11-03T15:55:40.7530850Z 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-11-03T15:55:40.7531920Z 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-11-03T15:55:40.7533010Z 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-11-03T15:55:40.7534090Z 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-11-03T15:55:40.7535380Z 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-11-03T15:55:40.7536390Z 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-11-03T15:55:40.7538420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-11-03T15:55:40.7539310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda/impl 2025-11-03T15:55:40.7540360Z 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-11-03T15:55:40.7541730Z 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-11-03T15:55:40.7543090Z 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-11-03T15:55:40.7544290Z 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-11-03T15:55:40.7545950Z 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-11-03T15:55:40.7547110Z 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-11-03T15:55:40.7548350Z 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-11-03T15:55:40.7549580Z 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-11-03T15:55:40.7550860Z 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-11-03T15:55:40.7552120Z 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-11-03T15:55:40.7553320Z 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-11-03T15:55:40.7554520Z 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-11-03T15:55:40.7555590Z 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-11-03T15:55:40.7556700Z 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-11-03T15:55:40.7557880Z 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-11-03T15:55:40.7559170Z 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-11-03T15:55:40.7560580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-11-03T15:55:40.7561610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/impl 2025-11-03T15:55:40.7562490Z 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-11-03T15:55:40.7563810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test 2025-11-03T15:55:40.7564880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test/impl 2025-11-03T15:55:40.7565730Z 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-11-03T15:55:40.7566790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUGraphsC10Utils.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include/c10/xpu 2025-11-03T15:55:40.7567910Z 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-11-03T15:55:40.7569040Z 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-11-03T15:55:40.7570200Z 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-11-03T15:55:40.7571230Z 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-11-03T15:55:40.7572330Z 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-11-03T15:55:40.7573390Z 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-11-03T15:55:40.7575120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-11-03T15:55:40.7575620Z 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-11-03T15:55:40.7576780Z 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-11-03T15:55:40.7577900Z 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-11-03T15:55:40.7579230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/mobile 2025-11-03T15:55:40.7580090Z 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-11-03T15:55:40.7581320Z 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-11-03T15:55:40.7582440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/psimd.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include 2025-11-03T15:55:40.7583870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/experiments-config.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include 2025-11-03T15:55:40.7584940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fxdiv.h -> build/bdist.macosx-14.0-arm64/wheel/./torch/include 2025-11-03T15:55:40.7586310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-11-03T15:55:40.7587150Z 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-11-03T15:55:40.7588500Z 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-11-03T15:55:40.7589590Z 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-11-03T15:55:40.7593430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/torch_version.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.7594670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends 2025-11-03T15:55:40.7595720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/opt_einsum 2025-11-03T15:55:40.7596590Z 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-11-03T15:55:40.7598020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mha 2025-11-03T15:55:40.7598840Z 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-11-03T15:55:40.7600080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/nnpack 2025-11-03T15:55:40.7600930Z 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-11-03T15:55:40.7602630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mps 2025-11-03T15:55:40.7603030Z 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-11-03T15:55:40.7604370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cpu 2025-11-03T15:55:40.7605140Z 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-11-03T15:55:40.7606410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/_coreml 2025-11-03T15:55:40.7607240Z 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-11-03T15:55:40.7608370Z 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-11-03T15:55:40.7609380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cuda 2025-11-03T15:55:40.7610220Z 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-11-03T15:55:40.7612140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/quantized 2025-11-03T15:55:40.7612750Z 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-11-03T15:55:40.7613960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/miopen 2025-11-03T15:55:40.7614770Z 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-11-03T15:55:40.7675680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/backends 2025-11-03T15:55:40.7676880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkl 2025-11-03T15:55:40.7677820Z 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-11-03T15:55:40.7679220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/xnnpack 2025-11-03T15:55:40.7680130Z 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-11-03T15:55:40.7681450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/kleidiai 2025-11-03T15:55:40.7682270Z 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-11-03T15:55:40.7683600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cusparselt 2025-11-03T15:55:40.7684460Z 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-11-03T15:55:40.7685790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkldnn 2025-11-03T15:55:40.7686600Z 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-11-03T15:55:40.7687880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/xeon 2025-11-03T15:55:40.7688700Z 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-11-03T15:55:40.7689640Z 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-11-03T15:55:40.7699030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-11-03T15:55:40.7699540Z 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-11-03T15:55:40.7700490Z 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-11-03T15:55:40.7702590Z 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-11-03T15:55:40.7703510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/openmp 2025-11-03T15:55:40.7704350Z 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-11-03T15:55:40.7705670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cudnn 2025-11-03T15:55:40.7706510Z 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-11-03T15:55:40.7707670Z 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-11-03T15:55:40.7709010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-11-03T15:55:40.7709820Z 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-11-03T15:55:40.7710920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/decompositions.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_decomp 2025-11-03T15:55:40.7713550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_decomp 2025-11-03T15:55:40.7714570Z 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-11-03T15:55:40.7715660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_VF.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.7717030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-11-03T15:55:40.7717810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/streams.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/xpu 2025-11-03T15:55:40.7718910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/memory.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/xpu 2025-11-03T15:55:40.7720040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/xpu 2025-11-03T15:55:40.7721470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/_gpu_trace.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/xpu 2025-11-03T15:55:40.7722560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/random.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/xpu 2025-11-03T15:55:40.7723870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/xpu 2025-11-03T15:55:40.7724640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_streambase.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.7726110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-11-03T15:55:40.7726900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/_ops.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/masked 2025-11-03T15:55:40.7728410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/masked 2025-11-03T15:55:40.7729470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/_docs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/masked 2025-11-03T15:55:40.7731490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-11-03T15:55:40.7732110Z 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-11-03T15:55:40.7733200Z 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-11-03T15:55:40.7734280Z 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-11-03T15:55:40.7735510Z 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-11-03T15:55:40.7736610Z 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-11-03T15:55:40.7737780Z 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-11-03T15:55:40.7738870Z 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-11-03T15:55:40.7740000Z 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-11-03T15:55:40.7740980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor_docs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.7743600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-11-03T15:55:40.7744070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/lr_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7746210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/rmsprop.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7747060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_adafactor.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7748280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_muon.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7749410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/sparse_adam.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7750490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/rprop.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7751730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/sgd.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7752940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7754000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adamax.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7755260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adagrad.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7757200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/optim/_multi_tensor 2025-11-03T15:55:40.7757740Z 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-11-03T15:55:40.7758890Z 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-11-03T15:55:40.7759910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adamw.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7761000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/swa_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7762260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/lbfgs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7763470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/radam.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7764690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adam.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7766100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7767510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/nadam.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7768720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/asgd.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7770080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_functional.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7771410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adadelta.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/optim 2025-11-03T15:55:40.7772470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_weights_only_unpickler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.7773810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.7776360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-11-03T15:55:40.7776930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/dtype_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7778090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cudagraph_trees.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7779800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/select_algorithm.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7781970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/ops_handler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7782970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/metrics.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7784040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codecache.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7786270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mock_cache.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7787070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/optimize_indexing.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7788180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/freezing_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7789290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7790370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cpp_builder.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7791960Z 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-11-03T15:55:40.7793270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/config.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7795420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-11-03T15:55:40.7796050Z 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-11-03T15:55:40.7797220Z 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-11-03T15:55:40.7798200Z 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-11-03T15:55:40.7799320Z 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-11-03T15:55:40.7800540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comms.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7802000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/memory.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7803280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mkldnn_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7804740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/async_compile.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7806120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/config_comms.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7807210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/pattern_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7808750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/quantized_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7809830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/triton_bundler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7810940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/aoti_eager.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7812060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/graph.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7813740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/lowering.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7816490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-11-03T15:55:40.7817340Z 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-11-03T15:55:40.7818450Z 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-11-03T15:55:40.7820660Z 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-11-03T15:55:40.7821320Z 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-11-03T15:55:40.7822440Z 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-11-03T15:55:40.7823500Z 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-11-03T15:55:40.7824600Z 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-11-03T15:55:40.7825500Z 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-11-03T15:55:40.7826540Z 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-11-03T15:55:40.7827870Z 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-11-03T15:55:40.7829060Z 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-11-03T15:55:40.7831260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime/caching 2025-11-03T15:55:40.7831940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching/interfaces.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/runtime/caching 2025-11-03T15:55:40.7833180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching/config.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/runtime/caching 2025-11-03T15:55:40.7834280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching/locks.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/runtime/caching 2025-11-03T15:55:40.7835380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/runtime/caching 2025-11-03T15:55:40.7836470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching/context.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/runtime/caching 2025-11-03T15:55:40.7837510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching/utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/runtime/caching 2025-11-03T15:55:40.7838600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching/exceptions.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/runtime/caching 2025-11-03T15:55:40.7839780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/caching/implementations.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/runtime/caching 2025-11-03T15:55:40.7840890Z 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-11-03T15:55:40.7841960Z 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-11-03T15:55:40.7843100Z 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-11-03T15:55:40.7844270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/jagged_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7845450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/test_operators.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7846520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cache.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7847650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7848700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7850810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cudagraph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7851650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/sizevars.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7852910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/ir.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7856200Z 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-11-03T15:55:40.7857400Z 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-11-03T15:55:40.7858660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/index_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7859770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/constant_folding.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7861390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-11-03T15:55:40.7862270Z 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-11-03T15:55:40.7863580Z 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-11-03T15:55:40.7864990Z 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-11-03T15:55:40.7867090Z 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-11-03T15:55:40.7868120Z 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-11-03T15:55:40.7869160Z 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-11-03T15:55:40.7872090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cutedsl 2025-11-03T15:55:40.7872630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/codegen/cutedsl 2025-11-03T15:55:40.7873720Z 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-11-03T15:55:40.7874850Z 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-11-03T15:55:40.7875950Z 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-11-03T15:55:40.7877240Z 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-11-03T15:55:40.7878360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl/_cutedsl_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/codegen/cutedsl 2025-11-03T15:55:40.7879450Z 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-11-03T15:55:40.7880560Z 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-11-03T15:55:40.7882040Z 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-11-03T15:55:40.7883120Z 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-11-03T15:55:40.7885650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-11-03T15:55:40.7886170Z 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-11-03T15:55:40.7887690Z 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-11-03T15:55:40.7888770Z 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-11-03T15:55:40.7889890Z 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-11-03T15:55:40.7891580Z 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-11-03T15:55:40.7892360Z 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-11-03T15:55:40.7893850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-11-03T15:55:40.7894830Z 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-11-03T15:55:40.7896190Z 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-11-03T15:55:40.7897140Z 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-11-03T15:55:40.7898720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports 2025-11-03T15:55:40.7899520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-11-03T15:55:40.7900540Z 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-11-03T15:55:40.7901730Z 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-11-03T15:55:40.7902940Z 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-11-03T15:55:40.7904110Z 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-11-03T15:55:40.7905140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot 2025-11-03T15:55:40.7906140Z 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-11-03T15:55:40.7907300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-11-03T15:55:40.7908260Z 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-11-03T15:55:40.7909520Z 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-11-03T15:55:40.7910440Z 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-11-03T15:55:40.7911580Z 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-11-03T15:55:40.7912660Z 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-11-03T15:55:40.7913910Z 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-11-03T15:55:40.7915040Z 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-11-03T15:55:40.7916520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/xpu 2025-11-03T15:55:40.7917620Z 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-11-03T15:55:40.7918330Z 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-11-03T15:55:40.7919450Z 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-11-03T15:55:40.7920890Z 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-11-03T15:55:40.7922120Z 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-11-03T15:55:40.7923090Z 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-11-03T15:55:40.7924400Z 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-11-03T15:55:40.7925760Z 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-11-03T15:55:40.7927280Z 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-11-03T15:55:40.7929840Z 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-11-03T15:55:40.7931650Z 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-11-03T15:55:40.7933650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2025-11-03T15:55:40.7934350Z 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-11-03T15:55:40.7935900Z 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-11-03T15:55:40.7937530Z 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-11-03T15:55:40.7938680Z 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-11-03T15:55:40.7940010Z 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-11-03T15:55:40.7941490Z 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-11-03T15:55:40.7942680Z 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-11-03T15:55:40.7944100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/mtia 2025-11-03T15:55:40.7945000Z 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-11-03T15:55:40.7945960Z 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-11-03T15:55:40.7947100Z 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-11-03T15:55:40.7949060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-11-03T15:55:40.7949820Z 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-11-03T15:55:40.7951230Z 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-11-03T15:55:40.7952620Z 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-11-03T15:55:40.7953720Z 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-11-03T15:55:40.7954920Z 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-11-03T15:55:40.7955860Z 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-11-03T15:55:40.7956930Z 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-11-03T15:55:40.7958000Z 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-11-03T15:55:40.7960500Z 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-11-03T15:55:40.7961750Z 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-11-03T15:55:40.7963130Z 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-11-03T15:55:40.7964270Z 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-11-03T15:55:40.7965430Z 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-11-03T15:55:40.7966780Z 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-11-03T15:55:40.7968080Z 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-11-03T15:55:40.7969740Z 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-11-03T15:55:40.7970850Z 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-11-03T15:55:40.7971980Z 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-11-03T15:55:40.7973340Z 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-11-03T15:55:40.7974460Z 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-11-03T15:55:40.7975560Z 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-11-03T15:55:40.7977360Z 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-11-03T15:55:40.7978820Z 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-11-03T15:55:40.7979790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/inductor_prims.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7981020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/virtualized.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7982460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/test_case.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7983580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/script.ld -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7984700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autotune_process.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7986210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/standalone_compile.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.7987840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/template_heuristics 2025-11-03T15:55:40.7988750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/params.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/template_heuristics 2025-11-03T15:55:40.7990040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/triton.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/template_heuristics 2025-11-03T15:55:40.7992000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/contiguous_mm.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/template_heuristics 2025-11-03T15:55:40.7993050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/registry.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/template_heuristics 2025-11-03T15:55:40.7994350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/gemm.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/template_heuristics 2025-11-03T15:55:40.7995470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/template_heuristics 2025-11-03T15:55:40.7996760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/triton_addmm.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/template_heuristics 2025-11-03T15:55:40.7997970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/decompose_k.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/template_heuristics 2025-11-03T15:55:40.7999210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/aten.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/template_heuristics 2025-11-03T15:55:40.8000490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/base.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/template_heuristics 2025-11-03T15:55:40.8001600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/await_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8003010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-11-03T15:55:40.8003920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/timer.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/compile_worker 2025-11-03T15:55:40.8005200Z 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-11-03T15:55:40.8006150Z 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-11-03T15:55:40.8007010Z 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-11-03T15:55:40.8008160Z 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-11-03T15:55:40.8009380Z 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-11-03T15:55:40.8010420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/exc.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8011460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8013680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/debug.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8014890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel_inputs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8016020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/__autotune_main__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8017180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8018490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comm_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8019700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/decomposition.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8021290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-11-03T15:55:40.8022350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-11-03T15:55:40.8023280Z 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-11-03T15:55:40.8024450Z 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-11-03T15:55:40.8025640Z 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-11-03T15:55:40.8026880Z 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-11-03T15:55:40.8027760Z 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-11-03T15:55:40.8029080Z 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-11-03T15:55:40.8030140Z 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-11-03T15:55:40.8031280Z 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-11-03T15:55:40.8032550Z 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-11-03T15:55:40.8033520Z 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-11-03T15:55:40.8034490Z 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-11-03T15:55:40.8035900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-11-03T15:55:40.8036750Z 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-11-03T15:55:40.8038280Z 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-11-03T15:55:40.8039430Z 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-11-03T15:55:40.8040540Z 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-11-03T15:55:40.8041760Z 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-11-03T15:55:40.8042900Z 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-11-03T15:55:40.8043950Z 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-11-03T15:55:40.8045160Z 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-11-03T15:55:40.8047280Z 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-11-03T15:55:40.8048810Z 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-11-03T15:55:40.8049910Z 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-11-03T15:55:40.8051070Z 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-11-03T15:55:40.8051960Z 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-11-03T15:55:40.8053360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/overlap_scheduling.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/fx_passes 2025-11-03T15:55:40.8054600Z 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-11-03T15:55:40.8055890Z 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-11-03T15:55:40.8057100Z 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-11-03T15:55:40.8058470Z 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-11-03T15:55:40.8060390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-11-03T15:55:40.8061210Z 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-11-03T15:55:40.8062340Z 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-11-03T15:55:40.8063420Z 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-11-03T15:55:40.8064680Z 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-11-03T15:55:40.8066000Z 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-11-03T15:55:40.8067140Z 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-11-03T15:55:40.8068430Z 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-11-03T15:55:40.8069650Z 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-11-03T15:55:40.8070870Z 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-11-03T15:55:40.8071970Z 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-11-03T15:55:40.8073030Z 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-11-03T15:55:40.8074220Z 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-11-03T15:55:40.8075240Z 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-11-03T15:55:40.8076330Z 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-11-03T15:55:40.8077440Z 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-11-03T15:55:40.8078490Z 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-11-03T15:55:40.8079620Z 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-11-03T15:55:40.8081030Z 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-11-03T15:55:40.8082130Z 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-11-03T15:55:40.8083220Z 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-11-03T15:55:40.8084310Z 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-11-03T15:55:40.8085430Z 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-11-03T15:55:40.8086610Z 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-11-03T15:55:40.8087690Z 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-11-03T15:55:40.8088760Z 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-11-03T15:55:40.8089890Z 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-11-03T15:55:40.8091180Z 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-11-03T15:55:40.8092360Z 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-11-03T15:55:40.8093390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/memory_estimator.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/fx_passes 2025-11-03T15:55:40.8094710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/overlap_preserving_bucketer.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/fx_passes 2025-11-03T15:55:40.8095950Z 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-11-03T15:55:40.8097310Z 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-11-03T15:55:40.8098650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/control_dependencies.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/fx_passes 2025-11-03T15:55:40.8099810Z 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-11-03T15:55:40.8101170Z 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-11-03T15:55:40.8102640Z 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-11-03T15:55:40.8103920Z 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-11-03T15:55:40.8105000Z 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-11-03T15:55:40.8106140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8107320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/shape_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8108480Z 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-11-03T15:55:40.8109540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8111980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comms_debug.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8113120Z 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-11-03T15:55:40.8114480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mkldnn_ir.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8115950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/wrapper_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8117070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/choices.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8118350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/remote_cache.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8119530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/augmented_graph_helper.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8120760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comm_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8121820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compiler_bisector.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8123110Z 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-11-03T15:55:40.8124130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/bounds.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8125300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel_template_choice.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8126350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/output_code.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8127680Z 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-11-03T15:55:40.8129670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/lookup_table 2025-11-03T15:55:40.8130500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/lookup_table/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/lookup_table 2025-11-03T15:55:40.8131660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/lookup_table/choices.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/lookup_table 2025-11-03T15:55:40.8216390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/freezing.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8217180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/dependencies.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8225270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/tiling_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8226700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-11-03T15:55:40.8227550Z 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-11-03T15:55:40.8228780Z 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-11-03T15:55:40.8230100Z 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-11-03T15:55:40.8231190Z 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-11-03T15:55:40.8233030Z 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-11-03T15:55:40.8234120Z 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-11-03T15:55:40.8235560Z 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-11-03T15:55:40.8236860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex 2025-11-03T15:55:40.8237740Z 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-11-03T15:55:40.8238870Z 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-11-03T15:55:40.8239970Z 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-11-03T15:55:40.8241070Z 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-11-03T15:55:40.8242190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/flex_flash_attention.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/kernel/flex 2025-11-03T15:55:40.8243560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex/templates 2025-11-03T15:55:40.8244510Z 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-11-03T15:55:40.8245890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates/flash_attention.py.jinja -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/kernel/flex/templates 2025-11-03T15:55:40.8247010Z 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-11-03T15:55:40.8248170Z 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-11-03T15:55:40.8249340Z 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-11-03T15:55:40.8250450Z 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-11-03T15:55:40.8255520Z 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-11-03T15:55:40.8255990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/custom_op.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor/kernel 2025-11-03T15:55:40.8256140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-11-03T15:55:40.8256470Z 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-11-03T15:55:40.8256820Z 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-11-03T15:55:40.8257730Z 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-11-03T15:55:40.8258920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/loop_body.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8260370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/subgraph_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_inductor 2025-11-03T15:55:40.8262440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-11-03T15:55:40.8262960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8265130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark 2025-11-03T15:55:40.8265700Z 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-11-03T15:55:40.8267130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-11-03T15:55:40.8268010Z 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-11-03T15:55:40.8269180Z 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-11-03T15:55:40.8270310Z 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-11-03T15:55:40.8271400Z 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-11-03T15:55:40.8272360Z 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-11-03T15:55:40.8273570Z 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-11-03T15:55:40.8274790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-11-03T15:55:40.8275660Z 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-11-03T15:55:40.8276920Z 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-11-03T15:55:40.8277880Z 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-11-03T15:55:40.8278950Z 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-11-03T15:55:40.8280090Z 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-11-03T15:55:40.8281200Z 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-11-03T15:55:40.8282520Z 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-11-03T15:55:40.8283960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-11-03T15:55:40.8284800Z 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-11-03T15:55:40.8286780Z 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-11-03T15:55:40.8289970Z 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-11-03T15:55:40.8290790Z 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-11-03T15:55:40.8291730Z 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-11-03T15:55:40.8292810Z 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-11-03T15:55:40.8293890Z 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-11-03T15:55:40.8295250Z 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-11-03T15:55:40.8296450Z 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-11-03T15:55:40.8297790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-11-03T15:55:40.8298690Z 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-11-03T15:55:40.8299880Z 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-11-03T15:55:40.8300820Z 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-11-03T15:55:40.8301810Z 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-11-03T15:55:40.8303030Z 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-11-03T15:55:40.8304150Z 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-11-03T15:55:40.8305290Z 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-11-03T15:55:40.8306410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_foreach_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8307500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8308570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_traceback.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8309730Z 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-11-03T15:55:40.8310870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_mode_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8311960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/checkpoint.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8313480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/show_pickle.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8314530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/deterministic.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8315580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/file_baton.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8316760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backend_registration.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8318030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/module_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8319090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_zoo.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8320180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_zip.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8321300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/collect_env.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8322640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/throughput_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8323750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/dlpack.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8325160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-11-03T15:55:40.8326010Z 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-11-03T15:55:40.8327480Z 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-11-03T15:55:40.8328350Z 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-11-03T15:55:40.8329440Z 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-11-03T15:55:40.8330490Z 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-11-03T15:55:40.8331580Z 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-11-03T15:55:40.8332690Z 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-11-03T15:55:40.8333970Z 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-11-03T15:55:40.8335160Z 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-11-03T15:55:40.8336210Z 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-11-03T15:55:40.8337900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/serialization 2025-11-03T15:55:40.8338520Z 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-11-03T15:55:40.8339680Z 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-11-03T15:55:40.8340720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_debug_mode.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8342260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/backcompat 2025-11-03T15:55:40.8343080Z 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-11-03T15:55:40.8344150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_cxx_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8345440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8346500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_functools.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8347530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_import_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8348590Z 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-11-03T15:55:40.8349930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-11-03T15:55:40.8350740Z 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-11-03T15:55:40.8351910Z 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-11-03T15:55:40.8355430Z 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-11-03T15:55:40.8356260Z 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-11-03T15:55:40.8357430Z 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-11-03T15:55:40.8358670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_dtype_abbrs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8359860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_config_typing.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8360900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bundled_inputs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8362100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_helion.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8363250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/mkldnn.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8364580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/viz 2025-11-03T15:55:40.8365340Z 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-11-03T15:55:40.8366250Z 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-11-03T15:55:40.8367570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/cpp_backtrace.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8368640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_contextlib.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8369980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/jit 2025-11-03T15:55:40.8370740Z 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-11-03T15:55:40.8371700Z 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-11-03T15:55:40.8372730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_python_dispatch.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8374640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-11-03T15:55:40.8375190Z 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-11-03T15:55:40.8376300Z 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-11-03T15:55:40.8377430Z 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-11-03T15:55:40.8378560Z 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-11-03T15:55:40.8379630Z 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-11-03T15:55:40.8380760Z 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-11-03T15:55:40.8382050Z 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-11-03T15:55:40.8383140Z 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-11-03T15:55:40.8384520Z 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-11-03T15:55:40.8385580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_exposed_in.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8386630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_filelock.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8387690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_thunk.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8388750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_config_module.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8389990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_device.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8391060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/flop_counter.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8392380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_typing_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8396760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_stats.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8400700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-11-03T15:55:40.8401310Z 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-11-03T15:55:40.8404870Z 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-11-03T15:55:40.8405670Z 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-11-03T15:55:40.8410070Z 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-11-03T15:55:40.8413790Z 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-11-03T15:55:40.8418730Z 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-11-03T15:55:40.8419590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/cpp_extension.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8423080Z 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-11-03T15:55:40.8427480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_triton.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8431210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_content_store.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8432330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-11-03T15:55:40.8433420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-11-03T15:55:40.8434310Z 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-11-03T15:55:40.8436860Z 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-11-03T15:55:40.8439990Z 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-11-03T15:55:40.8440940Z 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-11-03T15:55:40.8446230Z 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-11-03T15:55:40.8448410Z 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-11-03T15:55:40.8453730Z 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-11-03T15:55:40.8454620Z 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-11-03T15:55:40.8461690Z 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-11-03T15:55:40.8464180Z 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-11-03T15:55:40.8469900Z 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-11-03T15:55:40.8470870Z 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-11-03T15:55:40.8471900Z 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-11-03T15:55:40.8473420Z 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-11-03T15:55:40.8475120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-11-03T15:55:40.8475960Z 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-11-03T15:55:40.8477330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-11-03T15:55:40.8478240Z 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-11-03T15:55:40.8479400Z 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-11-03T15:55:40.8480530Z 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-11-03T15:55:40.8481590Z 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-11-03T15:55:40.8482730Z 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-11-03T15:55:40.8483960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-11-03T15:55:40.8484860Z 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-11-03T15:55:40.8486010Z 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-11-03T15:55:40.8487100Z 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-11-03T15:55:40.8488210Z 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-11-03T15:55:40.8489230Z 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-11-03T15:55:40.8490330Z 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-11-03T15:55:40.8491460Z 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-11-03T15:55:40.8492840Z 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-11-03T15:55:40.8493960Z 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-11-03T15:55:40.8495110Z 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-11-03T15:55:40.8496160Z 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-11-03T15:55:40.8497290Z 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-11-03T15:55:40.8498450Z 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-11-03T15:55:40.8500010Z 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-11-03T15:55:40.8501310Z 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-11-03T15:55:40.8503090Z 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-11-03T15:55:40.8504430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-11-03T15:55:40.8505390Z 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-11-03T15:55:40.8506730Z 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-11-03T15:55:40.8507710Z 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-11-03T15:55:40.8509020Z 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-11-03T15:55:40.8510260Z 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-11-03T15:55:40.8512290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-11-03T15:55:40.8512960Z 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-11-03T15:55:40.8514310Z 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-11-03T15:55:40.8515490Z 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-11-03T15:55:40.8519900Z 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-11-03T15:55:40.8520890Z 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-11-03T15:55:40.8521960Z 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-11-03T15:55:40.8528300Z 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-11-03T15:55:40.8529460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/_strobelight 2025-11-03T15:55:40.8530380Z 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-11-03T15:55:40.8536390Z 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-11-03T15:55:40.8537090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_ordered_set.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8538160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/weak.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8539280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/mobile_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/utils 2025-11-03T15:55:40.8544520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/overrides.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8588730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_namedtensor_internals.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8589450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/return_types.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8590820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/types.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8591890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_linalg_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8593040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__config__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8594090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8596250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-11-03T15:55:40.8596670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/contrib/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/contrib 2025-11-03T15:55:40.8597640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/contrib/_tensorboard_vis.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/contrib 2025-11-03T15:55:40.8598960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/random.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8600030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nativert 2025-11-03T15:55:40.8601030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nativert/backends 2025-11-03T15:55:40.8601920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nativert/backends/_lower_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/nativert/backends 2025-11-03T15:55:40.8603040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nativert/backends/_lowered_aoti_module.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/nativert/backends 2025-11-03T15:55:40.8604060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nativert/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/nativert/backends 2025-11-03T15:55:40.8604890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nativert/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/nativert 2025-11-03T15:55:40.8605770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/hub.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8607880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-11-03T15:55:40.8608270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/observer.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/quantization 2025-11-03T15:55:40.8609410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fuse_modules.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/quantization 2025-11-03T15:55:40.8610570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantization_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/quantization 2025-11-03T15:55:40.8611670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/quantization 2025-11-03T15:55:40.8613050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-11-03T15:55:40.8613860Z 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-11-03T15:55:40.8614950Z 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-11-03T15:55:40.8615980Z 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-11-03T15:55:40.8617070Z 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-11-03T15:55:40.8618120Z 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-11-03T15:55:40.8619140Z 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-11-03T15:55:40.8620180Z 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-11-03T15:55:40.8621310Z 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-11-03T15:55:40.8622450Z 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-11-03T15:55:40.8623540Z 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-11-03T15:55:40.8624640Z 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-11-03T15:55:40.8625750Z 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-11-03T15:55:40.8626840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_numeric_suite.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/quantization 2025-11-03T15:55:40.8627970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fake_quantize.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/quantization 2025-11-03T15:55:40.8629040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/qconfig.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/quantization 2025-11-03T15:55:40.8630110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/quantization 2025-11-03T15:55:40.8631270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_quantized_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/quantization 2025-11-03T15:55:40.8632310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/stubs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/quantization 2025-11-03T15:55:40.8633370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/quantization 2025-11-03T15:55:40.8634410Z 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-11-03T15:55:40.8635430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize_jit.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/quantization 2025-11-03T15:55:40.8636520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quant_type.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/quantization 2025-11-03T15:55:40.8637610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize_fx.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/quantization 2025-11-03T15:55:40.8638700Z 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-11-03T15:55:40.8639660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor_str.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8640900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_sources.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8642370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/special 2025-11-03T15:55:40.8643170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/special/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/special 2025-11-03T15:55:40.8645190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-11-03T15:55:40.8645630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_profiler.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8646750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_functionalization.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8647800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_onnx.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8648970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_c10d.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8650170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8651300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_monitor.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8652570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_itt.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8653570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C/_export 2025-11-03T15:55:40.8654420Z 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-11-03T15:55:40.8655600Z 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-11-03T15:55:40.8656850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C/_acc 2025-11-03T15:55:40.8657600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_acc/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C/_acc 2025-11-03T15:55:40.8658730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_lazy.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8659800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8663380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_nvtx.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8664130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cpu.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8665210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_nn.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8666320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cusparselt.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8667740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_instruction_counter.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8668540Z 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-11-03T15:55:40.8669650Z 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-11-03T15:55:40.8670730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_functorch.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8671880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_VariableFunctions.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8678780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_rpc.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8679970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-11-03T15:55:40.8680770Z 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-11-03T15:55:40.8681960Z 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-11-03T15:55:40.8683010Z 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-11-03T15:55:40.8684140Z 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-11-03T15:55:40.8685200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_verbose.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8686240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_aoti.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8687380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8688480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_functions.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8689600Z 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-11-03T15:55:40.8690630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cudnn.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8691780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/_C 2025-11-03T15:55:40.8693160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-11-03T15:55:40.8694480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-11-03T15:55:40.8695490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/generated 2025-11-03T15:55:40.8696360Z 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-11-03T15:55:40.8697320Z 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-11-03T15:55:40.8701600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-11-03T15:55:40.8702280Z 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-11-03T15:55:40.8703430Z 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-11-03T15:55:40.8705300Z 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-11-03T15:55:40.8706330Z 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-11-03T15:55:40.8707680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-11-03T15:55:40.8708610Z 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-11-03T15:55:40.8709740Z 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-11-03T15:55:40.8710830Z 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-11-03T15:55:40.8712200Z 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-11-03T15:55:40.8713720Z 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-11-03T15:55:40.8715130Z 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-11-03T15:55:40.8716390Z 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-11-03T15:55:40.8717680Z 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-11-03T15:55:40.8719040Z 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-11-03T15:55:40.8720220Z 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-11-03T15:55:40.8721590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-11-03T15:55:40.8722480Z 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-11-03T15:55:40.8723400Z 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-11-03T15:55:40.8724450Z 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-11-03T15:55:40.8725480Z 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-11-03T15:55:40.8726550Z 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-11-03T15:55:40.8727890Z 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-11-03T15:55:40.8729120Z 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-11-03T15:55:40.8730190Z 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-11-03T15:55:40.8731310Z 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-11-03T15:55:40.8733650Z 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-11-03T15:55:40.8734980Z 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-11-03T15:55:40.8736250Z 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-11-03T15:55:40.8737550Z 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-11-03T15:55:40.8739070Z 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-11-03T15:55:40.8740370Z 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-11-03T15:55:40.8742310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-11-03T15:55:40.8743090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-11-03T15:55:40.8744000Z 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-11-03T15:55:40.8745010Z 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-11-03T15:55:40.8746410Z 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-11-03T15:55:40.8747850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn 2025-11-03T15:55:40.8748750Z 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-11-03T15:55:40.8749790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-11-03T15:55:40.8750710Z 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-11-03T15:55:40.8751690Z 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-11-03T15:55:40.8752950Z 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-11-03T15:55:40.8754080Z 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-11-03T15:55:40.8755190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-11-03T15:55:40.8756090Z 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-11-03T15:55:40.8757470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-11-03T15:55:40.8758380Z 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-11-03T15:55:40.8759620Z 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-11-03T15:55:40.8760900Z 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-11-03T15:55:40.8761960Z 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-11-03T15:55:40.8763040Z 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-11-03T15:55:40.8764180Z 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-11-03T15:55:40.8765560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-11-03T15:55:40.8766870Z 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-11-03T15:55:40.8767680Z 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-11-03T15:55:40.8768770Z 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-11-03T15:55:40.8769740Z 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-11-03T15:55:40.8771430Z 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-11-03T15:55:40.8772600Z 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-11-03T15:55:40.8773890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-11-03T15:55:40.8774770Z 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-11-03T15:55:40.8775700Z 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-11-03T15:55:40.8776840Z 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-11-03T15:55:40.8778270Z 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-11-03T15:55:40.8779530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-11-03T15:55:40.8780420Z 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-11-03T15:55:40.8781430Z 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-11-03T15:55:40.8782820Z 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-11-03T15:55:40.8783620Z 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-11-03T15:55:40.8786630Z 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-11-03T15:55:40.8787290Z 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-11-03T15:55:40.8790750Z 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-11-03T15:55:40.8791770Z 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-11-03T15:55:40.8793450Z 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-11-03T15:55:40.8797390Z 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-11-03T15:55:40.8801860Z 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-11-03T15:55:40.8803470Z 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-11-03T15:55:40.8806100Z 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-11-03T15:55:40.8810400Z 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-11-03T15:55:40.8831160Z 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-11-03T15:55:40.8833080Z 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-11-03T15:55:40.8834200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-11-03T15:55:40.8835070Z 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-11-03T15:55:40.8836160Z 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-11-03T15:55:40.8841090Z 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-11-03T15:55:40.8845410Z 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-11-03T15:55:40.8848180Z 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-11-03T15:55:40.8851680Z 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-11-03T15:55:40.8853120Z 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-11-03T15:55:40.8860470Z 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-11-03T15:55:40.8861560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/codegen 2025-11-03T15:55:40.8862530Z 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-11-03T15:55:40.8863700Z 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-11-03T15:55:40.8864840Z 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-11-03T15:55:40.8865950Z 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-11-03T15:55:40.8867210Z 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-11-03T15:55:40.8869320Z 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-11-03T15:55:40.8871450Z 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-11-03T15:55:40.8872270Z 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-11-03T15:55:40.8873500Z 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-11-03T15:55:40.8874890Z 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-11-03T15:55:40.8876010Z 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-11-03T15:55:40.8877100Z 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-11-03T15:55:40.8879730Z 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-11-03T15:55:40.8880800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-11-03T15:55:40.8881700Z 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-11-03T15:55:40.8882850Z 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-11-03T15:55:40.8883960Z 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-11-03T15:55:40.8885220Z 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-11-03T15:55:40.8886500Z 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-11-03T15:55:40.8887560Z 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-11-03T15:55:40.8888650Z 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-11-03T15:55:40.8889870Z 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-11-03T15:55:40.8891010Z 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-11-03T15:55:40.8892080Z 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-11-03T15:55:40.8893120Z 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-11-03T15:55:40.8894510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_creation.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/testing 2025-11-03T15:55:40.8895610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/testing 2025-11-03T15:55:40.8896710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_comparison.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/testing 2025-11-03T15:55:40.8898220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/testing 2025-11-03T15:55:40.8899300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vmap_internals.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8900760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-11-03T15:55:40.8901630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/triton.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_library 2025-11-03T15:55:40.8902790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_profile.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_library 2025-11-03T15:55:40.8903940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/infer_schema.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_library 2025-11-03T15:55:40.8904990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/opaque_object.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_library 2025-11-03T15:55:40.8906050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/simple_registry.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_library 2025-11-03T15:55:40.8907120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_library 2025-11-03T15:55:40.8908480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_library 2025-11-03T15:55:40.8909560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_impl.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_library 2025-11-03T15:55:40.8910690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_library 2025-11-03T15:55:40.8911780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_library 2025-11-03T15:55:40.8913170Z 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-11-03T15:55:40.8914160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/functional.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8915740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lowrank.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8916750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_appdirs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.8918680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-11-03T15:55:40.8919180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/memory.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/accelerator 2025-11-03T15:55:40.8920310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/accelerator 2025-11-03T15:55:40.8921400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/accelerator 2025-11-03T15:55:40.8922640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-11-03T15:55:40.8923450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/autocast_mode.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/amp 2025-11-03T15:55:40.8924710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/amp 2025-11-03T15:55:40.8925960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/amp 2025-11-03T15:55:40.8927420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-11-03T15:55:40.8928180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_ir_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.8929320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_monkeytype_config.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.8930470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_decompositions.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.8931520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_recursive.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9009840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_logging.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9010830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_serialization.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9011880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/quantized.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9012980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_script.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9014600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_script.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9015750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_shape_functions.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9017070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_decomposition_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9018110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_freeze.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9019220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_pickle.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9020290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_check.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9021410Z 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-11-03T15:55:40.9022440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/frontend.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9023780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/supported_ops.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9024830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9025970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_fuser.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9027080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_builtins.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9028190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_dataclass_impls.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9029250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_trace.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9031430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit/_passes 2025-11-03T15:55:40.9032010Z 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-11-03T15:55:40.9033090Z 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-11-03T15:55:40.9033920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/generate_bytecode.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9035050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_state.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9036350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit/mobile 2025-11-03T15:55:40.9037190Z 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-11-03T15:55:40.9038270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_async.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9039640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/annotations.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9040760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_await.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/jit 2025-11-03T15:55:40.9042450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-11-03T15:55:40.9043120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/package.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9044430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/cache_size.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9045510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/callback.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9046560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/comptime.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9047680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/logging.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9048910Z 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-11-03T15:55:40.9049910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9051030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/precompile_context.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9052130Z 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-11-03T15:55:40.9053320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/config.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9054770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/guards.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9057200Z 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-11-03T15:55:40.9058020Z 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-11-03T15:55:40.9059110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/aot_compile.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9060280Z 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-11-03T15:55:40.9061520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/device_interface.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9063550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-11-03T15:55:40.9064330Z 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-11-03T15:55:40.9065610Z 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-11-03T15:55:40.9066660Z 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-11-03T15:55:40.9068190Z 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-11-03T15:55:40.9069440Z 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-11-03T15:55:40.9070670Z 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-11-03T15:55:40.9071840Z 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-11-03T15:55:40.9073130Z 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-11-03T15:55:40.9074240Z 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-11-03T15:55:40.9075300Z 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-11-03T15:55:40.9076400Z 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-11-03T15:55:40.9077460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9078560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9079680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/mutation_guard.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9080830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/types.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9081920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/metrics_context.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9083180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/bytecode_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9084250Z 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-11-03T15:55:40.9085300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/external_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9086380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/test_case.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9087510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9088620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/resume_execution.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9089860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/output_graph.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9091850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/compiled_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9093210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/exc.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9094570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9097010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-11-03T15:55:40.9097680Z 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-11-03T15:55:40.9099290Z 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-11-03T15:55:40.9100590Z 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-11-03T15:55:40.9102120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/streams.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo/variables 2025-11-03T15:55:40.9103600Z 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-11-03T15:55:40.9105340Z 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-11-03T15:55:40.9106360Z 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-11-03T15:55:40.9107740Z 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-11-03T15:55:40.9108840Z 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-11-03T15:55:40.9110450Z 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-11-03T15:55:40.9111900Z 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-11-03T15:55:40.9114040Z 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-11-03T15:55:40.9115380Z 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-11-03T15:55:40.9117440Z 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-11-03T15:55:40.9118280Z 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-11-03T15:55:40.9119560Z 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-11-03T15:55:40.9120800Z 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-11-03T15:55:40.9122660Z 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-11-03T15:55:40.9123720Z 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-11-03T15:55:40.9124800Z 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-11-03T15:55:40.9126500Z 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-11-03T15:55:40.9127810Z 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-11-03T15:55:40.9129260Z 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-11-03T15:55:40.9130530Z 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-11-03T15:55:40.9132850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-11-03T15:55:40.9133540Z 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-11-03T15:55:40.9134880Z 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-11-03T15:55:40.9140170Z 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-11-03T15:55:40.9140510Z 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-11-03T15:55:40.9140850Z 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-11-03T15:55:40.9141140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/replay_record.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9179230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/side_effects.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9181150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-11-03T15:55:40.9181720Z 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-11-03T15:55:40.9182890Z 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-11-03T15:55:40.9184060Z 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-11-03T15:55:40.9185190Z 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-11-03T15:55:40.9186240Z 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-11-03T15:55:40.9187390Z 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-11-03T15:55:40.9188480Z 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-11-03T15:55:40.9189540Z 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-11-03T15:55:40.9190620Z 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-11-03T15:55:40.9191760Z 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-11-03T15:55:40.9192830Z 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-11-03T15:55:40.9193930Z 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-11-03T15:55:40.9195200Z 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-11-03T15:55:40.9196250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/trace_rules.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9198580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/bytecode_transformation.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9199700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/convert_frame.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9201160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/funcname_cache.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9202220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_bytecode_inputs.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9203270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/testing.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9204470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/pgo.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9205930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9206910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/symbolic_convert.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9209550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/codegen.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9210350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/source.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9211710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/aot_compile_types.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9212770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/eval_frame.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9214330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/functional_export.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9215680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/code_context.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9216820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_deduplication.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9218060Z 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-11-03T15:55:40.9219130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/debug_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9220390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/decorators.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_dynamo 2025-11-03T15:55:40.9221750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_environment.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.9223190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-11-03T15:55:40.9224010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/metrics.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_lazy 2025-11-03T15:55:40.9225090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/config.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_lazy 2025-11-03T15:55:40.9226140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_lazy 2025-11-03T15:55:40.9227350Z 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-11-03T15:55:40.9228350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/debug.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_lazy 2025-11-03T15:55:40.9229430Z 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-11-03T15:55:40.9230510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/ir_cache.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_lazy 2025-11-03T15:55:40.9231600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/ts_backend.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_lazy 2025-11-03T15:55:40.9232720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/computation.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_lazy 2025-11-03T15:55:40.9233730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/closure.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_lazy 2025-11-03T15:55:40.9234920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/device_context.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_lazy 2025-11-03T15:55:40.9235950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/storage.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.9237450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C.cpython-312-darwin.so -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:40.9239060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao 2025-11-03T15:55:40.9240120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn 2025-11-03T15:55:40.9241130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat 2025-11-03T15:55:40.9242140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic 2025-11-03T15:55:40.9242990Z 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-11-03T15:55:40.9244350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-11-03T15:55:40.9245230Z 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-11-03T15:55:40.9246420Z 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-11-03T15:55:40.9247440Z 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-11-03T15:55:40.9248730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-11-03T15:55:40.9249560Z 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-11-03T15:55:40.9250670Z 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-11-03T15:55:40.9251810Z 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-11-03T15:55:40.9252930Z 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-11-03T15:55:40.9254300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized 2025-11-03T15:55:40.9255290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic 2025-11-03T15:55:40.9256190Z 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-11-03T15:55:40.9257410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-11-03T15:55:40.9258330Z 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-11-03T15:55:40.9259410Z 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-11-03T15:55:40.9260520Z 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-11-03T15:55:40.9261820Z 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-11-03T15:55:40.9263280Z 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-11-03T15:55:40.9264500Z 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-11-03T15:55:40.9265780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-11-03T15:55:40.9266620Z 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-11-03T15:55:40.9267910Z 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-11-03T15:55:40.9268950Z 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-11-03T15:55:40.9270080Z 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-11-03T15:55:40.9271210Z 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-11-03T15:55:40.9272300Z 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-11-03T15:55:40.9273450Z 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-11-03T15:55:40.9274510Z 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-11-03T15:55:40.9275890Z 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-11-03T15:55:40.9277020Z 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-11-03T15:55:40.9278130Z 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-11-03T15:55:40.9279440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference 2025-11-03T15:55:40.9280300Z 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-11-03T15:55:40.9281590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-11-03T15:55:40.9282720Z 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-11-03T15:55:40.9283960Z 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-11-03T15:55:40.9285190Z 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-11-03T15:55:40.9286300Z 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-11-03T15:55:40.9287470Z 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-11-03T15:55:40.9288720Z 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-11-03T15:55:40.9289960Z 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-11-03T15:55:40.9291460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable 2025-11-03T15:55:40.9292260Z 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-11-03T15:55:40.9293620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-11-03T15:55:40.9294520Z 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-11-03T15:55:40.9295670Z 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-11-03T15:55:40.9296930Z 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-11-03T15:55:40.9298910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic 2025-11-03T15:55:40.9299430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat 2025-11-03T15:55:40.9300310Z 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-11-03T15:55:40.9301670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-11-03T15:55:40.9302540Z 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-11-03T15:55:40.9303870Z 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-11-03T15:55:40.9305100Z 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-11-03T15:55:40.9306290Z 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-11-03T15:55:40.9307510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized 2025-11-03T15:55:40.9308520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic 2025-11-03T15:55:40.9309410Z 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-11-03T15:55:40.9310720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-11-03T15:55:40.9311640Z 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-11-03T15:55:40.9312850Z 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-11-03T15:55:40.9313850Z 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-11-03T15:55:40.9315170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-11-03T15:55:40.9316230Z 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-11-03T15:55:40.9317210Z 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-11-03T15:55:40.9318390Z 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-11-03T15:55:40.9319510Z 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-11-03T15:55:40.9320990Z 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-11-03T15:55:40.9322100Z 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-11-03T15:55:40.9323630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-11-03T15:55:40.9324600Z 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-11-03T15:55:40.9325790Z 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-11-03T15:55:40.9327140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse 2025-11-03T15:55:40.9328200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-11-03T15:55:40.9329240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-11-03T15:55:40.9330120Z 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-11-03T15:55:40.9331250Z 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-11-03T15:55:40.9332400Z 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-11-03T15:55:40.9333560Z 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-11-03T15:55:40.9334640Z 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-11-03T15:55:40.9335690Z 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-11-03T15:55:40.9337060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-11-03T15:55:40.9338150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-11-03T15:55:40.9339000Z 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-11-03T15:55:40.9340660Z 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-11-03T15:55:40.9341590Z 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-11-03T15:55:40.9342780Z 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-11-03T15:55:40.9343710Z 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-11-03T15:55:40.9344960Z 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-11-03T15:55:40.9346090Z 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-11-03T15:55:40.9347200Z 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-11-03T15:55:40.9348580Z 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-11-03T15:55:40.9350140Z 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-11-03T15:55:40.9351030Z 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-11-03T15:55:40.9352290Z 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-11-03T15:55:40.9353170Z 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-11-03T15:55:40.9354480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/ao 2025-11-03T15:55:40.9356480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-11-03T15:55:40.9356950Z 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-11-03T15:55:40.9358830Z 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-11-03T15:55:40.9359760Z 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-11-03T15:55:40.9361170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-11-03T15:55:40.9362150Z 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-11-03T15:55:40.9363440Z 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-11-03T15:55:40.9364530Z 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-11-03T15:55:40.9365610Z 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-11-03T15:55:40.9366670Z 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-11-03T15:55:40.9367780Z 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-11-03T15:55:40.9369030Z 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-11-03T15:55:40.9370280Z 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-11-03T15:55:40.9371330Z 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-11-03T15:55:40.9372580Z 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-11-03T15:55:40.9373960Z 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-11-03T15:55:40.9375110Z 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-11-03T15:55:40.9376220Z 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-11-03T15:55:40.9377330Z 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-11-03T15:55:40.9378710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-11-03T15:55:40.9379570Z 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-11-03T15:55:40.9380690Z 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-11-03T15:55:40.9381810Z 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-11-03T15:55:40.9383330Z 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-11-03T15:55:40.9384470Z 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-11-03T15:55:40.9385540Z 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-11-03T15:55:40.9386630Z 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-11-03T15:55:40.9387740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-11-03T15:55:40.9388670Z 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-11-03T15:55:40.9389840Z 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-11-03T15:55:40.9391040Z 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-11-03T15:55:40.9392350Z 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-11-03T15:55:40.9393770Z 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-11-03T15:55:40.9395040Z 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-11-03T15:55:40.9396160Z 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-11-03T15:55:40.9397870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-11-03T15:55:40.9398510Z 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-11-03T15:55:40.9399670Z 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-11-03T15:55:40.9400750Z 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-11-03T15:55:40.9402070Z 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-11-03T15:55:40.9403160Z 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-11-03T15:55:40.9404580Z 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-11-03T15:55:40.9406000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-11-03T15:55:40.9406870Z 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-11-03T15:55:40.9408430Z 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-11-03T15:55:40.9409680Z 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-11-03T15:55:40.9410860Z 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-11-03T15:55:40.9411790Z 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-11-03T15:55:40.9413020Z 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-11-03T15:55:40.9414090Z 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-11-03T15:55:40.9415500Z 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-11-03T15:55:40.9416630Z 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-11-03T15:55:40.9418100Z 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-11-03T15:55:40.9419300Z 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-11-03T15:55:40.9420460Z 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-11-03T15:55:40.9421550Z 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-11-03T15:55:40.9422710Z 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-11-03T15:55:40.9424320Z 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-11-03T15:55:40.9425340Z 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-11-03T15:55:40.9426660Z 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-11-03T15:55:40.9427770Z 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-11-03T15:55:40.9429020Z 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-11-03T15:55:40.9430110Z 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-11-03T15:55:40.9431330Z 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-11-03T15:55:40.9432640Z 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-11-03T15:55:40.9433740Z 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-11-03T15:55:40.9434850Z 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-11-03T15:55:40.9435980Z 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-11-03T15:55:40.9437290Z 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-11-03T15:55:40.9438350Z 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-11-03T15:55:40.9439460Z 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-11-03T15:55:40.9440850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-11-03T15:55:40.9441740Z 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-11-03T15:55:40.9442920Z 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-11-03T15:55:40.9444490Z 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-11-03T15:55:40.9445650Z 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-11-03T15:55:40.9446790Z 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-11-03T15:55:40.9447840Z 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-11-03T15:55:40.9448970Z 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-11-03T15:55:40.9450050Z 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-11-03T15:55:40.9451210Z 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-11-03T15:55:40.9452490Z 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-11-03T15:55:40.9453560Z 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-11-03T15:55:40.9455270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning 2025-11-03T15:55:40.9456150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-11-03T15:55:40.9457090Z 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-11-03T15:55:40.9458250Z 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-11-03T15:55:40.9459180Z 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-11-03T15:55:40.9460310Z 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-11-03T15:55:40.9461440Z 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-11-03T15:55:40.9462740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental 2025-11-03T15:55:40.9463770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-11-03T15:55:40.9465080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-11-03T15:55:40.9465900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-11-03T15:55:40.9466890Z 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-11-03T15:55:40.9468080Z 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-11-03T15:55:40.9469110Z 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-11-03T15:55:40.9470180Z 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-11-03T15:55:40.9471080Z 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-11-03T15:55:40.9472240Z 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-11-03T15:55:40.9473620Z 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-11-03T15:55:40.9474790Z 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-11-03T15:55:40.9476330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-11-03T15:55:40.9477170Z 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-11-03T15:55:40.9478520Z 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-11-03T15:55:40.9479880Z 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-11-03T15:55:40.9481150Z 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-11-03T15:55:40.9482460Z 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-11-03T15:55:40.9483930Z 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-11-03T15:55:40.9485060Z 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-11-03T15:55:40.9486170Z 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-11-03T15:55:40.9487310Z 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-11-03T15:55:40.9488390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-11-03T15:55:40.9489370Z 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-11-03T15:55:40.9490700Z 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-11-03T15:55:40.9491680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-11-03T15:55:40.9492570Z 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-11-03T15:55:40.9493750Z 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-11-03T15:55:40.9494970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-11-03T15:55:40.9495880Z 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-11-03T15:55:40.9497170Z 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-11-03T15:55:40.9498280Z 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-11-03T15:55:40.9499210Z 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-11-03T15:55:40.9500270Z 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-11-03T15:55:40.9501440Z 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-11-03T15:55:40.9502870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-11-03T15:55:40.9503740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/memory.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/mtia 2025-11-03T15:55:40.9504830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/mtia 2025-11-03T15:55:40.9505910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/mtia 2025-11-03T15:55:40.9507220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-11-03T15:55:40.9508070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_python.dylib -> build/bdist.macosx-14.0-arm64/wheel/./torch/lib 2025-11-03T15:55:40.9972970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch.dylib -> build/bdist.macosx-14.0-arm64/wheel/./torch/lib 2025-11-03T15:55:40.9974060Z 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-11-03T15:55:40.9975380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libomp.dylib -> build/bdist.macosx-14.0-arm64/wheel/./torch/lib 2025-11-03T15:55:40.9980890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm_windows 2025-11-03T15:55:40.9981560Z 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-11-03T15:55:40.9982980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-11-03T15:55:40.9983780Z 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-11-03T15:55:40.9984880Z 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-11-03T15:55:40.9985970Z 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-11-03T15:55:40.9987200Z 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-11-03T15:55:40.9988250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_cpu.dylib -> build/bdist.macosx-14.0-arm64/wheel/./torch/lib 2025-11-03T15:55:42.2154850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libc10.dylib -> build/bdist.macosx-14.0-arm64/wheel/./torch/lib 2025-11-03T15:55:42.2162430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm.dylib -> build/bdist.macosx-14.0-arm64/wheel/./torch/lib 2025-11-03T15:55:42.2164020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_VF.pyi -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:42.2171360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_compile.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:42.2172310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/py.typed -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:42.2173210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lobpcg.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:42.2175900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-11-03T15:55:42.2176850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/linalg 2025-11-03T15:55:42.2177790Z 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-11-03T15:55:42.2179180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn 2025-11-03T15:55:42.2179980Z 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-11-03T15:55:42.2181540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn/functional 2025-11-03T15:55:42.2182380Z 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-11-03T15:55:42.2183810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_refs 2025-11-03T15:55:42.2184960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_refs 2025-11-03T15:55:42.2187920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/special 2025-11-03T15:55:42.2188490Z 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-11-03T15:55:42.2189730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/fft.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_refs 2025-11-03T15:55:42.2191230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fft 2025-11-03T15:55:42.2192050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fft/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/fft 2025-11-03T15:55:42.2193490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__future__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:42.2194870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-11-03T15:55:42.2195730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_memory_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/profiler 2025-11-03T15:55:42.2197290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/itt.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/profiler 2025-11-03T15:55:42.2198420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_pattern_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/profiler 2025-11-03T15:55:42.2199760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/profiler 2025-11-03T15:55:42.2200870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/profiler 2025-11-03T15:55:42.2202290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/python_tracer.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/profiler 2025-11-03T15:55:42.2203490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/profiler 2025-11-03T15:55:42.2204890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-11-03T15:55:42.2205760Z 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-11-03T15:55:42.2206940Z 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-11-03T15:55:42.2207980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/sparse 2025-11-03T15:55:42.2209360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/semi_structured.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/sparse 2025-11-03T15:55:42.2210630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_triton_ops.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/sparse 2025-11-03T15:55:42.2212320Z 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-11-03T15:55:42.2216600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_awaits 2025-11-03T15:55:42.2217100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_awaits 2025-11-03T15:55:42.2218250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_guards.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:42.2219630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_python_dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:42.2221080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-11-03T15:55:42.2221940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_safeguard.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2223250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/experimental 2025-11-03T15:55:42.2224080Z 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-11-03T15:55:42.2225390Z 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-11-03T15:55:42.2226460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/exported_program.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2227930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/unflatten.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2229470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2230620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/custom_obj.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2232000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/passes 2025-11-03T15:55:42.2232830Z 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-11-03T15:55:42.2233940Z 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-11-03T15:55:42.2235090Z 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-11-03T15:55:42.2236130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2237530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_unlift.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2238870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_trace.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2240490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/graph_signature.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2241660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_wrapper_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2242750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/decomp_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2244300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-11-03T15:55:42.2245090Z 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-11-03T15:55:42.2246530Z 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-11-03T15:55:42.2247630Z 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-11-03T15:55:42.2248780Z 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-11-03T15:55:42.2249800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_swap.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2251030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_draft_export.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2252320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/dynamic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2253680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_tree_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2254920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_leakage_detection_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/export 2025-11-03T15:55:42.2256240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nested 2025-11-03T15:55:42.2257250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-11-03T15:55:42.2258140Z 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-11-03T15:55:42.2259430Z 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-11-03T15:55:42.2264370Z 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-11-03T15:55:42.2265130Z 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-11-03T15:55:42.2265850Z 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-11-03T15:55:42.2266560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/nested 2025-11-03T15:55:42.2267020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C_flatbuffer 2025-11-03T15:55:42.2267510Z 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-11-03T15:55:42.2268120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_classes.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:42.2268950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-11-03T15:55:42.2269830Z 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-11-03T15:55:42.2270880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/_strobelight 2025-11-03T15:55:42.2271780Z 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-11-03T15:55:42.2273060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/numa 2025-11-03T15:55:42.2273840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/numa/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/numa 2025-11-03T15:55:42.2274750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/numa/binding.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/numa 2025-11-03T15:55:42.2306290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-11-03T15:55:42.2306860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/_cache.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/compiler 2025-11-03T15:55:42.2311100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/config.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/compiler 2025-11-03T15:55:42.2319820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/compiler 2025-11-03T15:55:42.2329160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/signal 2025-11-03T15:55:42.2329730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/signal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/signal 2025-11-03T15:55:42.2334180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/signal/windows 2025-11-03T15:55:42.2334690Z 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-11-03T15:55:42.2337220Z 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-11-03T15:55:42.2358900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/serialization.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:42.2370970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-11-03T15:55:42.2371550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/inverse_gamma.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2377210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/laplace.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2381490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/relaxed_bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2382250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/categorical.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2383320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/transforms.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2387660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/dirichlet.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2391380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/log_normal.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2393210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/transformed_distribution.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2395440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/geometric.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2396570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/generalized_pareto.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2398020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/weibull.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2399960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/studentT.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2401080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/multivariate_normal.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2403920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/normal.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2404660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/poisson.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2408330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/beta.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2409710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/kumaraswamy.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2437770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/half_normal.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2448650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/relaxed_categorical.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2450850Z 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-11-03T15:55:42.2452000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/half_cauchy.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2453200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2454420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/lkj_cholesky.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2455590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/independent.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2456740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/multinomial.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2457940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/exponential.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2458930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/pareto.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2460110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/negative_binomial.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2461150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/cauchy.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2462220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/von_mises.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2463310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/distribution.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2464390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/gumbel.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2465590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/constraint_registry.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2466690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2467790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/kl.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2469110Z 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-11-03T15:55:42.2470220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/continuous_bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2471290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/fishersnedecor.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2472350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/constraints.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2473540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/uniform.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2474670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2475820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/exp_family.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2476880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/logistic_normal.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2477980Z 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-11-03T15:55:42.2479010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/wishart.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2480180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/gamma.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2481200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/chi2.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2482270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/binomial.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/distributions 2025-11-03T15:55:42.2483760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-11-03T15:55:42.2484720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/package_exporter.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/package 2025-11-03T15:55:42.2486800Z 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-11-03T15:55:42.2487480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_mock.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/package 2025-11-03T15:55:42.2488480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/importer.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/package 2025-11-03T15:55:42.2489660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_stdlib.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/package 2025-11-03T15:55:42.2490830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_mangling.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/package 2025-11-03T15:55:42.2491870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/package 2025-11-03T15:55:42.2493010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/package_importer.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/package 2025-11-03T15:55:42.2494300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_package_unpickler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/package 2025-11-03T15:55:42.2495330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/glob_group.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/package 2025-11-03T15:55:42.2496450Z 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-11-03T15:55:42.2497550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_package_pickler.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/package 2025-11-03T15:55:42.2498880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-11-03T15:55:42.2499810Z 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-11-03T15:55:42.2500960Z 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-11-03T15:55:42.2502040Z 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-11-03T15:55:42.2503180Z 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-11-03T15:55:42.2504260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_importlib.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/package 2025-11-03T15:55:42.2505330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_directory_reader.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/package 2025-11-03T15:55:42.2506420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_digraph.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/package 2025-11-03T15:55:42.2507490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torch 2025-11-03T15:55:42.2509160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share 2025-11-03T15:55:42.2510150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake 2025-11-03T15:55:42.2511210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-11-03T15:55:42.2512120Z 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-11-03T15:55:42.2513270Z 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-11-03T15:55:42.2514620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-11-03T15:55:42.2515600Z 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-11-03T15:55:42.2516750Z 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-11-03T15:55:42.2517970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-11-03T15:55:42.2519020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-11-03T15:55:42.2520010Z 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-11-03T15:55:42.2521180Z 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-11-03T15:55:42.2522400Z 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-11-03T15:55:42.2523600Z 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-11-03T15:55:42.2524750Z 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-11-03T15:55:42.2525850Z 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-11-03T15:55:42.2527530Z 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-11-03T15:55:42.2528630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-11-03T15:55:42.2529550Z 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-11-03T15:55:42.2530670Z 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-11-03T15:55:42.2531770Z 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-11-03T15:55:42.2532910Z 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-11-03T15:55:42.2534200Z 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-11-03T15:55:42.2535370Z 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-11-03T15:55:42.2536460Z 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-11-03T15:55:42.2537530Z 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-11-03T15:55:42.2538590Z 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-11-03T15:55:42.2539750Z 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-11-03T15:55:42.2540890Z 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-11-03T15:55:42.2542320Z 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-11-03T15:55:42.2543600Z 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-11-03T15:55:42.2544690Z 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-11-03T15:55:42.2546090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Torch 2025-11-03T15:55:42.2546910Z 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-11-03T15:55:42.2548350Z 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-11-03T15:55:42.2549210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/ATen 2025-11-03T15:55:42.2550470Z 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-11-03T15:55:42.2551730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/func 2025-11-03T15:55:42.2552560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/func/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torch/func 2025-11-03T15:55:42.2557380Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-11-03T15:55:42.2558030Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/native_function_generation.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2559570Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-11-03T15:55:42.2560430Z 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-11-03T15:55:42.2561880Z 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-11-03T15:55:42.2562630Z 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-11-03T15:55:42.2563480Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_vmap_plumbing.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2564570Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2567040Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged 2025-11-03T15:55:42.2567860Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-11-03T15:55:42.2568740Z 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-11-03T15:55:42.2570200Z 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-11-03T15:55:42.2571310Z 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-11-03T15:55:42.2572490Z 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-11-03T15:55:42.2573790Z 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-11-03T15:55:42.2575180Z 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-11-03T15:55:42.2576240Z 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-11-03T15:55:42.2577200Z 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-11-03T15:55:42.2578800Z 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-11-03T15:55:42.2579870Z 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-11-03T15:55:42.2580970Z 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-11-03T15:55:42.2582220Z 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-11-03T15:55:42.2583330Z 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-11-03T15:55:42.2584780Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-11-03T15:55:42.2585800Z 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-11-03T15:55:42.2586920Z 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-11-03T15:55:42.2588060Z 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-11-03T15:55:42.2589240Z 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-11-03T15:55:42.2590380Z 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-11-03T15:55:42.2591770Z 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-11-03T15:55:42.2592760Z 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-11-03T15:55:42.2593840Z 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-11-03T15:55:42.2595090Z 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-11-03T15:55:42.2596340Z 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-11-03T15:55:42.2597620Z 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-11-03T15:55:42.2598820Z 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-11-03T15:55:42.2600430Z 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-11-03T15:55:42.2601640Z 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-11-03T15:55:42.2602900Z 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-11-03T15:55:42.2604300Z 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-11-03T15:55:42.2605590Z 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-11-03T15:55:42.2606800Z 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-11-03T15:55:42.2607940Z 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-11-03T15:55:42.2609100Z 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-11-03T15:55:42.2610270Z 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-11-03T15:55:42.2611380Z 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-11-03T15:55:42.2612520Z 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-11-03T15:55:42.2613560Z 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-11-03T15:55:42.2614910Z 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-11-03T15:55:42.2616020Z 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-11-03T15:55:42.2618320Z 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-11-03T15:55:42.2619490Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen 2025-11-03T15:55:42.2620540Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/native 2025-11-03T15:55:42.2621480Z 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-11-03T15:55:42.2625930Z 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-11-03T15:55:42.2627110Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-11-03T15:55:42.2628060Z 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-11-03T15:55:42.2629150Z 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-11-03T15:55:42.2630460Z 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-11-03T15:55:42.2631570Z 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-11-03T15:55:42.2632750Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/ViewMetaClasses.h -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/packaged/ATen/templates 2025-11-03T15:55:42.2633880Z 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-11-03T15:55:42.2634950Z 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-11-03T15:55:42.2636070Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/ViewMetaClasses.cpp -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/packaged/ATen/templates 2025-11-03T15:55:42.2637180Z 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-11-03T15:55:42.2638370Z 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-11-03T15:55:42.2639390Z 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-11-03T15:55:42.2640570Z 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-11-03T15:55:42.2641610Z 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-11-03T15:55:42.2642810Z 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-11-03T15:55:42.2644010Z 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-11-03T15:55:42.2645110Z 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-11-03T15:55:42.2646230Z 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-11-03T15:55:42.2647330Z 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-11-03T15:55:42.2648460Z 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-11-03T15:55:42.2649670Z 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-11-03T15:55:42.2650730Z 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-11-03T15:55:42.2651820Z 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-11-03T15:55:42.2653070Z 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-11-03T15:55:42.2654260Z 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-11-03T15:55:42.2655410Z 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-11-03T15:55:42.2656740Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/ViewMetaClassesPythonBinding.cpp -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/packaged/ATen/templates 2025-11-03T15:55:42.2657840Z 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-11-03T15:55:42.2658840Z 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-11-03T15:55:42.2660020Z 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-11-03T15:55:42.2661160Z 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-11-03T15:55:42.2662170Z 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-11-03T15:55:42.2663300Z 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-11-03T15:55:42.2664540Z 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-11-03T15:55:42.2665590Z 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-11-03T15:55:42.2666640Z 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-11-03T15:55:42.2667760Z 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-11-03T15:55:42.2668910Z 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-11-03T15:55:42.2670030Z 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-11-03T15:55:42.2671060Z 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-11-03T15:55:42.2672230Z 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-11-03T15:55:42.2673420Z 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-11-03T15:55:42.2674480Z 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-11-03T15:55:42.2676060Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-11-03T15:55:42.2676910Z 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-11-03T15:55:42.2678010Z 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-11-03T15:55:42.2678920Z 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-11-03T15:55:42.2680300Z 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-11-03T15:55:42.2681370Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/local.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2682480Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_functionalization_type.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2683780Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/code_template.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2685210Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-11-03T15:55:42.2686070Z 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-11-03T15:55:42.2687020Z 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-11-03T15:55:42.2688170Z 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-11-03T15:55:42.2689200Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2690330Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/yaml_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2691440Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_aoti_c_shim.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2692720Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/model.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2694500Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_schema_utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2695600Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/context.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2696690Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/utils.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2698230Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-11-03T15:55:42.2699100Z 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-11-03T15:55:42.2700260Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/ufunc.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/dest 2025-11-03T15:55:42.2701450Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/dest 2025-11-03T15:55:42.2702600Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/native_functions.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/dest 2025-11-03T15:55:42.2703660Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/lazy_ir.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/dest 2025-11-03T15:55:42.2704950Z 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-11-03T15:55:42.2706580Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-11-03T15:55:42.2707420Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/api 2025-11-03T15:55:42.2708480Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/translate.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/api 2025-11-03T15:55:42.2710050Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-11-03T15:55:42.2710850Z 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-11-03T15:55:42.2712180Z 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-11-03T15:55:42.2713180Z 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-11-03T15:55:42.2714250Z 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-11-03T15:55:42.2715320Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/ufunc.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/api 2025-11-03T15:55:42.2716420Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/api 2025-11-03T15:55:42.2717390Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/native.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/api 2025-11-03T15:55:42.2718470Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/api 2025-11-03T15:55:42.2719640Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/unboxing.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/api 2025-11-03T15:55:42.2720740Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/functionalization.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/api 2025-11-03T15:55:42.2721860Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/api 2025-11-03T15:55:42.2723160Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/structured.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/api 2025-11-03T15:55:42.2724350Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/python.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/api 2025-11-03T15:55:42.2725790Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/lazy.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/api 2025-11-03T15:55:42.2727120Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/meta.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/api 2025-11-03T15:55:42.2728180Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_backend_stubs.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2729740Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-11-03T15:55:42.2730560Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/aoti 2025-11-03T15:55:42.2731470Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti/fallback_ops.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen/aoti 2025-11-03T15:55:42.2737200Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_lazy_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/./torchgen 2025-11-03T15:55:42.2737980Z creating build/bdist.macosx-14.0-arm64/wheel/functorch 2025-11-03T15:55:42.2738290Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-11-03T15:55:42.2738860Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/control_flow.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/experimental 2025-11-03T15:55:42.2739600Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/experimental 2025-11-03T15:55:42.2740330Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/ops.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/experimental 2025-11-03T15:55:42.2740860Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src 2025-11-03T15:55:42.2741360Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/make_functional 2025-11-03T15:55:42.2742240Z 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-11-03T15:55:42.2743320Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/_src 2025-11-03T15:55:42.2744480Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/eager_transforms 2025-11-03T15:55:42.2745360Z 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-11-03T15:55:42.2746730Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/aot_autograd 2025-11-03T15:55:42.2747500Z 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-11-03T15:55:42.2748810Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/vmap 2025-11-03T15:55:42.2749670Z 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-11-03T15:55:42.2751020Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-11-03T15:55:42.2751840Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/magic_trace.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/dim 2025-11-03T15:55:42.2753010Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/_getsetitem.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/dim 2025-11-03T15:55:42.2754270Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/_order.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/dim 2025-11-03T15:55:42.2755420Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/_dim_entry.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/dim 2025-11-03T15:55:42.2756410Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/_wrap.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/dim 2025-11-03T15:55:42.2757630Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/dim 2025-11-03T15:55:42.2759020Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/op_properties.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/dim 2025-11-03T15:55:42.2760070Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/_py_inst_decoder.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/dim 2025-11-03T15:55:42.2761210Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/_enable_all_layers.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/dim 2025-11-03T15:55:42.2762260Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/wrap_type.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/dim 2025-11-03T15:55:42.2763420Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/_tensor_info.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/dim 2025-11-03T15:55:42.2764610Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch 2025-11-03T15:55:42.2765990Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/compile 2025-11-03T15:55:42.2766880Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/compile/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/compile 2025-11-03T15:55:42.2768160Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-11-03T15:55:42.2769020Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/_parsing.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/einops 2025-11-03T15:55:42.2770200Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/einops 2025-11-03T15:55:42.2771290Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/rearrange.py -> build/bdist.macosx-14.0-arm64/wheel/./functorch/einops 2025-11-03T15:55:42.2773800Z running install_egg_info 2025-11-03T15:55:42.2814580Z running egg_info 2025-11-03T15:55:42.2849590Z writing torch.egg-info/PKG-INFO 2025-11-03T15:55:42.2861510Z writing dependency_links to torch.egg-info/dependency_links.txt 2025-11-03T15:55:42.2862860Z writing entry points to torch.egg-info/entry_points.txt 2025-11-03T15:55:42.2877610Z writing requirements to torch.egg-info/requires.txt 2025-11-03T15:55:42.2878770Z writing top-level names to torch.egg-info/top_level.txt 2025-11-03T15:55:42.6920510Z reading manifest file 'torch.egg-info/SOURCES.txt' 2025-11-03T15:55:47.2503700Z reading manifest template 'MANIFEST.in' 2025-11-03T15:55:47.2884750Z warning: no directories found matching 'ios' 2025-11-03T15:55:48.4181120Z no previously-included directories found matching 'third_party/nccl/pkg/debian' 2025-11-03T15:55:48.6910050Z no previously-included directories found matching '**/.gitlab' 2025-11-03T15:55:48.8006500Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-11-03T15:55:48.9100140Z warning: no previously-included files matching '*.obj' found anywhere in distribution 2025-11-03T15:55:49.0192500Z warning: no previously-included files matching '*.so' found anywhere in distribution 2025-11-03T15:55:49.7855150Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-11-03T15:55:49.8944690Z warning: no previously-included files matching '*~' found anywhere in distribution 2025-11-03T15:55:50.3981370Z adding license file 'LICENSE' 2025-11-03T15:55:50.3981580Z adding license file 'NOTICE' 2025-11-03T15:55:52.7153030Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-11-03T15:55:52.7521810Z Copying torch.egg-info to build/bdist.macosx-14.0-arm64/wheel/./torch-2.10.0a0+git3f6538f-py3.12.egg-info 2025-11-03T15:55:52.7700210Z running install_scripts 2025-11-03T15:55:52.7751820Z creating build/bdist.macosx-14.0-arm64/wheel/torch-2.10.0a0+git3f6538f.dist-info/WHEEL 2025-11-03T15:55:52.7755460Z creating '/Users/ec2-user/runner/_work/pytorch/pytorch/dist/.tmp-xdgtewl3/torch-2.10.0a0+git3f6538f-cp312-cp312-macosx_11_0_arm64.whl' and adding 'build/bdist.macosx-14.0-arm64/wheel' to it 2025-11-03T15:55:52.7794350Z adding 'functorch/__init__.py' 2025-11-03T15:55:52.7796540Z adding 'functorch/_src/__init__.py' 2025-11-03T15:55:52.7797660Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-11-03T15:55:52.7799190Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-11-03T15:55:52.7800380Z adding 'functorch/_src/make_functional/__init__.py' 2025-11-03T15:55:52.7801530Z adding 'functorch/_src/vmap/__init__.py' 2025-11-03T15:55:52.7802700Z adding 'functorch/compile/__init__.py' 2025-11-03T15:55:52.7815290Z adding 'functorch/dim/__init__.py' 2025-11-03T15:55:52.7817100Z adding 'functorch/dim/_dim_entry.py' 2025-11-03T15:55:52.7818910Z adding 'functorch/dim/_enable_all_layers.py' 2025-11-03T15:55:52.7823550Z adding 'functorch/dim/_getsetitem.py' 2025-11-03T15:55:52.7825850Z adding 'functorch/dim/_order.py' 2025-11-03T15:55:52.7826750Z adding 'functorch/dim/_py_inst_decoder.py' 2025-11-03T15:55:52.7827860Z adding 'functorch/dim/_tensor_info.py' 2025-11-03T15:55:52.7830750Z adding 'functorch/dim/_wrap.py' 2025-11-03T15:55:52.7831530Z adding 'functorch/dim/magic_trace.py' 2025-11-03T15:55:52.7833580Z adding 'functorch/dim/op_properties.py' 2025-11-03T15:55:52.7852280Z adding 'functorch/dim/wrap_type.py' 2025-11-03T15:55:52.7854710Z adding 'functorch/einops/__init__.py' 2025-11-03T15:55:52.7857840Z adding 'functorch/einops/_parsing.py' 2025-11-03T15:55:52.7860210Z adding 'functorch/einops/rearrange.py' 2025-11-03T15:55:52.7861210Z adding 'functorch/experimental/__init__.py' 2025-11-03T15:55:52.7862240Z adding 'functorch/experimental/control_flow.py' 2025-11-03T15:55:52.7863060Z adding 'functorch/experimental/ops.py' 2025-11-03T15:55:52.7867840Z adding 'torch/_C.cpython-312-darwin.so' 2025-11-03T15:55:52.7868790Z adding 'torch/_VF.py' 2025-11-03T15:55:52.8017910Z adding 'torch/_VF.pyi' 2025-11-03T15:55:52.8024140Z adding 'torch/__config__.py' 2025-11-03T15:55:52.8025350Z adding 'torch/__future__.py' 2025-11-03T15:55:52.8049390Z adding 'torch/__init__.py' 2025-11-03T15:55:52.8054270Z adding 'torch/_appdirs.py' 2025-11-03T15:55:52.8055400Z adding 'torch/_classes.py' 2025-11-03T15:55:52.8056560Z adding 'torch/_compile.py' 2025-11-03T15:55:52.8059640Z adding 'torch/_custom_ops.py' 2025-11-03T15:55:52.8060210Z adding 'torch/_environment.py' 2025-11-03T15:55:52.8069630Z adding 'torch/_guards.py' 2025-11-03T15:55:52.8082980Z adding 'torch/_jit_internal.py' 2025-11-03T15:55:52.8084890Z adding 'torch/_linalg_utils.py' 2025-11-03T15:55:52.8094190Z adding 'torch/_lobpcg.py' 2025-11-03T15:55:52.8097100Z adding 'torch/_lowrank.py' 2025-11-03T15:55:52.8147210Z adding 'torch/_meta_registrations.py' 2025-11-03T15:55:52.8150200Z adding 'torch/_namedtensor_internals.py' 2025-11-03T15:55:52.8163460Z adding 'torch/_ops.py' 2025-11-03T15:55:52.8166060Z adding 'torch/_python_dispatcher.py' 2025-11-03T15:55:52.8166820Z adding 'torch/_size_docs.py' 2025-11-03T15:55:52.8168760Z adding 'torch/_sources.py' 2025-11-03T15:55:52.8169710Z adding 'torch/_storage_docs.py' 2025-11-03T15:55:52.8170580Z adding 'torch/_streambase.py' 2025-11-03T15:55:52.8186180Z adding 'torch/_tensor.py' 2025-11-03T15:55:52.8212910Z adding 'torch/_tensor_docs.py' 2025-11-03T15:55:52.8219520Z adding 'torch/_tensor_str.py' 2025-11-03T15:55:52.8220160Z adding 'torch/_thread_safe_fork.py' 2025-11-03T15:55:52.8307510Z adding 'torch/_torch_docs.py' 2025-11-03T15:55:52.8318690Z adding 'torch/_utils.py' 2025-11-03T15:55:52.8322280Z adding 'torch/_utils_internal.py' 2025-11-03T15:55:52.8324850Z adding 'torch/_vmap_internals.py' 2025-11-03T15:55:52.8329220Z adding 'torch/_weights_only_unpickler.py' 2025-11-03T15:55:52.8348240Z adding 'torch/functional.py' 2025-11-03T15:55:52.8356090Z adding 'torch/hub.py' 2025-11-03T15:55:52.8370380Z adding 'torch/library.py' 2025-11-03T15:55:52.8387320Z adding 'torch/overrides.py' 2025-11-03T15:55:52.8388280Z adding 'torch/py.typed' 2025-11-03T15:55:52.8390790Z adding 'torch/quasirandom.py' 2025-11-03T15:55:52.8392870Z adding 'torch/random.py' 2025-11-03T15:55:52.8393660Z adding 'torch/return_types.py' 2025-11-03T15:55:52.8395810Z adding 'torch/return_types.pyi' 2025-11-03T15:55:52.8413760Z adding 'torch/serialization.py' 2025-11-03T15:55:52.8423350Z adding 'torch/storage.py' 2025-11-03T15:55:52.8425100Z adding 'torch/torch_version.py' 2025-11-03T15:55:52.8426520Z adding 'torch/types.py' 2025-11-03T15:55:52.8427460Z adding 'torch/version.py' 2025-11-03T15:55:52.8578270Z adding 'torch/_C/_VariableFunctions.pyi' 2025-11-03T15:55:52.8642760Z adding 'torch/_C/__init__.pyi' 2025-11-03T15:55:52.8646320Z adding 'torch/_C/_aoti.pyi' 2025-11-03T15:55:52.8647670Z adding 'torch/_C/_autograd.pyi' 2025-11-03T15:55:52.8648650Z adding 'torch/_C/_cpu.pyi' 2025-11-03T15:55:52.8649700Z adding 'torch/_C/_cudnn.pyi' 2025-11-03T15:55:52.8650530Z adding 'torch/_C/_cusparselt.pyi' 2025-11-03T15:55:52.8651420Z adding 'torch/_C/_distributed.pyi' 2025-11-03T15:55:52.8652390Z adding 'torch/_C/_distributed_autograd.pyi' 2025-11-03T15:55:52.8657320Z adding 'torch/_C/_distributed_c10d.pyi' 2025-11-03T15:55:52.8658850Z adding 'torch/_C/_distributed_rpc.pyi' 2025-11-03T15:55:52.8659930Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-11-03T15:55:52.8660730Z adding 'torch/_C/_functionalization.pyi' 2025-11-03T15:55:52.8661790Z adding 'torch/_C/_functions.pyi' 2025-11-03T15:55:52.8662970Z adding 'torch/_C/_functorch.pyi' 2025-11-03T15:55:52.8663810Z adding 'torch/_C/_instruction_counter.pyi' 2025-11-03T15:55:52.8664560Z adding 'torch/_C/_itt.pyi' 2025-11-03T15:55:52.8666580Z adding 'torch/_C/_jit_tree_views.pyi' 2025-11-03T15:55:52.8667160Z adding 'torch/_C/_lazy.pyi' 2025-11-03T15:55:52.8667960Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-11-03T15:55:52.8668930Z adding 'torch/_C/_monitor.pyi' 2025-11-03T15:55:52.8671130Z adding 'torch/_C/_nn.pyi' 2025-11-03T15:55:52.8671730Z adding 'torch/_C/_nvtx.pyi' 2025-11-03T15:55:52.8672590Z adding 'torch/_C/_onnx.pyi' 2025-11-03T15:55:52.8674610Z adding 'torch/_C/_profiler.pyi' 2025-11-03T15:55:52.8675260Z adding 'torch/_C/_verbose.pyi' 2025-11-03T15:55:52.8676460Z adding 'torch/_C/_acc/__init__.pyi' 2025-11-03T15:55:52.8677490Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-11-03T15:55:52.8678360Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-11-03T15:55:52.8679720Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-11-03T15:55:52.8682170Z adding 'torch/_C/_dynamo/guards.pyi' 2025-11-03T15:55:52.8682960Z adding 'torch/_C/_export/__init__.pyi' 2025-11-03T15:55:52.8683830Z adding 'torch/_C/_export/pt2_archive_constants.pyi' 2025-11-03T15:55:52.8685050Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-11-03T15:55:52.8686320Z adding 'torch/_awaits/__init__.py' 2025-11-03T15:55:52.8687280Z adding 'torch/_custom_op/__init__.py' 2025-11-03T15:55:52.8690330Z adding 'torch/_custom_op/autograd.py' 2025-11-03T15:55:52.8695800Z adding 'torch/_custom_op/impl.py' 2025-11-03T15:55:52.8699710Z adding 'torch/_decomp/__init__.py' 2025-11-03T15:55:52.8737700Z adding 'torch/_decomp/decompositions.py' 2025-11-03T15:55:52.8741320Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-11-03T15:55:52.8744010Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-11-03T15:55:52.8744730Z adding 'torch/_dispatch/__init__.py' 2025-11-03T15:55:52.8746950Z adding 'torch/_dispatch/python.py' 2025-11-03T15:55:52.8749660Z adding 'torch/_dynamo/__init__.py' 2025-11-03T15:55:52.8752130Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-11-03T15:55:52.8755060Z adding 'torch/_dynamo/aot_compile.py' 2025-11-03T15:55:52.8755910Z adding 'torch/_dynamo/aot_compile_types.py' 2025-11-03T15:55:52.8758630Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-11-03T15:55:52.8773130Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-11-03T15:55:52.8775700Z adding 'torch/_dynamo/cache_size.py' 2025-11-03T15:55:52.8777540Z adding 'torch/_dynamo/callback.py' 2025-11-03T15:55:52.8778460Z adding 'torch/_dynamo/code_context.py' 2025-11-03T15:55:52.8784350Z adding 'torch/_dynamo/codegen.py' 2025-11-03T15:55:52.8797290Z adding 'torch/_dynamo/compiled_autograd.py' 2025-11-03T15:55:52.8801990Z adding 'torch/_dynamo/comptime.py' 2025-11-03T15:55:52.8810700Z adding 'torch/_dynamo/config.py' 2025-11-03T15:55:52.8828520Z adding 'torch/_dynamo/convert_frame.py' 2025-11-03T15:55:52.8829990Z adding 'torch/_dynamo/create_parameter_op.py' 2025-11-03T15:55:52.8831140Z adding 'torch/_dynamo/current_scope_id.py' 2025-11-03T15:55:52.8838810Z adding 'torch/_dynamo/debug_utils.py' 2025-11-03T15:55:52.8847490Z adding 'torch/_dynamo/decorators.py' 2025-11-03T15:55:52.8851300Z adding 'torch/_dynamo/device_interface.py' 2025-11-03T15:55:52.8852250Z adding 'torch/_dynamo/distributed.py' 2025-11-03T15:55:52.8873450Z adding 'torch/_dynamo/eval_frame.py' 2025-11-03T15:55:52.8879820Z adding 'torch/_dynamo/exc.py' 2025-11-03T15:55:52.8882310Z adding 'torch/_dynamo/external_utils.py' 2025-11-03T15:55:52.8883380Z adding 'torch/_dynamo/funcname_cache.py' 2025-11-03T15:55:52.8890440Z adding 'torch/_dynamo/functional_export.py' 2025-11-03T15:55:52.8891370Z adding 'torch/_dynamo/graph_break_hints.py' 2025-11-03T15:55:52.8908800Z adding 'torch/_dynamo/graph_break_registry.json' 2025-11-03T15:55:52.8910430Z adding 'torch/_dynamo/graph_bytecode_inputs.py' 2025-11-03T15:55:52.8916070Z adding 'torch/_dynamo/graph_deduplication.py' 2025-11-03T15:55:52.8920520Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-11-03T15:55:52.8921720Z adding 'torch/_dynamo/graph_utils.py' 2025-11-03T15:55:52.8960720Z adding 'torch/_dynamo/guards.py' 2025-11-03T15:55:52.8962510Z adding 'torch/_dynamo/hooks.py' 2025-11-03T15:55:52.8963550Z adding 'torch/_dynamo/logging.py' 2025-11-03T15:55:52.8965910Z adding 'torch/_dynamo/metrics_context.py' 2025-11-03T15:55:52.8967290Z adding 'torch/_dynamo/mutation_guard.py' 2025-11-03T15:55:52.9005350Z adding 'torch/_dynamo/output_graph.py' 2025-11-03T15:55:52.9014650Z adding 'torch/_dynamo/package.py' 2025-11-03T15:55:52.9022510Z adding 'torch/_dynamo/pgo.py' 2025-11-03T15:55:52.9024780Z adding 'torch/_dynamo/precompile_context.py' 2025-11-03T15:55:52.9026610Z adding 'torch/_dynamo/profiler.py' 2025-11-03T15:55:52.9027930Z adding 'torch/_dynamo/replay_record.py' 2025-11-03T15:55:52.9034110Z adding 'torch/_dynamo/resume_execution.py' 2025-11-03T15:55:52.9044620Z adding 'torch/_dynamo/side_effects.py' 2025-11-03T15:55:52.9050650Z adding 'torch/_dynamo/source.py' 2025-11-03T15:55:52.9094910Z adding 'torch/_dynamo/symbolic_convert.py' 2025-11-03T15:55:52.9097200Z adding 'torch/_dynamo/tensor_version_op.py' 2025-11-03T15:55:52.9099420Z adding 'torch/_dynamo/test_case.py' 2025-11-03T15:55:52.9100210Z adding 'torch/_dynamo/test_dont_skip_tracing_functions.py' 2025-11-03T15:55:52.9103400Z adding 'torch/_dynamo/test_minifier_common.py' 2025-11-03T15:55:52.9107210Z adding 'torch/_dynamo/testing.py' 2025-11-03T15:55:52.9131470Z adding 'torch/_dynamo/trace_rules.py' 2025-11-03T15:55:52.9133780Z adding 'torch/_dynamo/types.py' 2025-11-03T15:55:52.9173440Z adding 'torch/_dynamo/utils.py' 2025-11-03T15:55:52.9175700Z adding 'torch/_dynamo/backends/__init__.py' 2025-11-03T15:55:52.9177820Z adding 'torch/_dynamo/backends/common.py' 2025-11-03T15:55:52.9180250Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-11-03T15:55:52.9184140Z adding 'torch/_dynamo/backends/debugging.py' 2025-11-03T15:55:52.9190950Z adding 'torch/_dynamo/backends/distributed.py' 2025-11-03T15:55:52.9191890Z adding 'torch/_dynamo/backends/inductor.py' 2025-11-03T15:55:52.9193010Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-11-03T15:55:52.9195080Z adding 'torch/_dynamo/backends/registry.py' 2025-11-03T15:55:52.9195730Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-11-03T15:55:52.9196840Z adding 'torch/_dynamo/backends/torchxla.py' 2025-11-03T15:55:52.9199300Z adding 'torch/_dynamo/backends/tvm.py' 2025-11-03T15:55:52.9202620Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-11-03T15:55:52.9203370Z adding 'torch/_dynamo/polyfills/_collections.py' 2025-11-03T15:55:52.9204780Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-11-03T15:55:52.9205740Z adding 'torch/_dynamo/polyfills/functools.py' 2025-11-03T15:55:52.9206700Z adding 'torch/_dynamo/polyfills/fx.py' 2025-11-03T15:55:52.9208940Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-11-03T15:55:52.9209760Z adding 'torch/_dynamo/polyfills/loader.py' 2025-11-03T15:55:52.9210970Z adding 'torch/_dynamo/polyfills/operator.py' 2025-11-03T15:55:52.9211950Z adding 'torch/_dynamo/polyfills/os.py' 2025-11-03T15:55:52.9216100Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-11-03T15:55:52.9216780Z adding 'torch/_dynamo/polyfills/struct.py' 2025-11-03T15:55:52.9217720Z adding 'torch/_dynamo/polyfills/sys.py' 2025-11-03T15:55:52.9218790Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-11-03T15:55:52.9219890Z adding 'torch/_dynamo/repro/__init__.py' 2025-11-03T15:55:52.9229190Z adding 'torch/_dynamo/repro/after_aot.py' 2025-11-03T15:55:52.9234030Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-11-03T15:55:52.9239180Z adding 'torch/_dynamo/repro/aoti.py' 2025-11-03T15:55:52.9241580Z adding 'torch/_dynamo/variables/__init__.py' 2025-11-03T15:55:52.9246790Z adding 'torch/_dynamo/variables/base.py' 2025-11-03T15:55:52.9281640Z adding 'torch/_dynamo/variables/builder.py' 2025-11-03T15:55:52.9303220Z adding 'torch/_dynamo/variables/builtin.py' 2025-11-03T15:55:52.9306630Z adding 'torch/_dynamo/variables/constant.py' 2025-11-03T15:55:52.9314120Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-11-03T15:55:52.9323830Z adding 'torch/_dynamo/variables/dicts.py' 2025-11-03T15:55:52.9327680Z adding 'torch/_dynamo/variables/distributed.py' 2025-11-03T15:55:52.9347100Z adding 'torch/_dynamo/variables/functions.py' 2025-11-03T15:55:52.9375710Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-11-03T15:55:52.9385750Z adding 'torch/_dynamo/variables/iter.py' 2025-11-03T15:55:52.9386110Z adding 'torch/_dynamo/variables/lazy.py' 2025-11-03T15:55:52.9393090Z adding 'torch/_dynamo/variables/lists.py' 2025-11-03T15:55:52.9408240Z adding 'torch/_dynamo/variables/misc.py' 2025-11-03T15:55:52.9419330Z adding 'torch/_dynamo/variables/nn_module.py' 2025-11-03T15:55:52.9423400Z adding 'torch/_dynamo/variables/optimizer.py' 2025-11-03T15:55:52.9424980Z adding 'torch/_dynamo/variables/script_object.py' 2025-11-03T15:55:52.9426320Z adding 'torch/_dynamo/variables/sdpa.py' 2025-11-03T15:55:52.9429230Z adding 'torch/_dynamo/variables/streams.py' 2025-11-03T15:55:52.9443340Z adding 'torch/_dynamo/variables/tensor.py' 2025-11-03T15:55:52.9459340Z adding 'torch/_dynamo/variables/torch.py' 2025-11-03T15:55:52.9465600Z adding 'torch/_dynamo/variables/torch_function.py' 2025-11-03T15:55:52.9483440Z adding 'torch/_dynamo/variables/user_defined.py' 2025-11-03T15:55:52.9486240Z adding 'torch/_export/__init__.py' 2025-11-03T15:55:52.9487070Z adding 'torch/_export/config.py' 2025-11-03T15:55:52.9500600Z adding 'torch/_export/converter.py' 2025-11-03T15:55:52.9501760Z adding 'torch/_export/error.py' 2025-11-03T15:55:52.9511490Z adding 'torch/_export/non_strict_utils.py' 2025-11-03T15:55:52.9515210Z adding 'torch/_export/pass_base.py' 2025-11-03T15:55:52.9516600Z adding 'torch/_export/tools.py' 2025-11-03T15:55:52.9530100Z adding 'torch/_export/utils.py' 2025-11-03T15:55:52.9534080Z adding 'torch/_export/verifier.py' 2025-11-03T15:55:52.9537040Z adding 'torch/_export/wrappers.py' 2025-11-03T15:55:52.9538080Z adding 'torch/_export/db/__init__.py' 2025-11-03T15:55:52.9540120Z adding 'torch/_export/db/case.py' 2025-11-03T15:55:52.9540770Z adding 'torch/_export/db/gen_example.py' 2025-11-03T15:55:52.9541880Z adding 'torch/_export/db/logging.py' 2025-11-03T15:55:52.9543950Z adding 'torch/_export/db/examples/__init__.py' 2025-11-03T15:55:52.9544660Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-11-03T15:55:52.9545580Z adding 'torch/_export/db/examples/autograd_function.py' 2025-11-03T15:55:52.9546440Z adding 'torch/_export/db/examples/class_method.py' 2025-11-03T15:55:52.9547530Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-11-03T15:55:52.9548450Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-11-03T15:55:52.9549570Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-11-03T15:55:52.9550440Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-11-03T15:55:52.9551320Z adding 'torch/_export/db/examples/cond_operands.py' 2025-11-03T15:55:52.9552250Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-11-03T15:55:52.9553140Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-11-03T15:55:52.9554020Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-11-03T15:55:52.9554830Z adding 'torch/_export/db/examples/decorator.py' 2025-11-03T15:55:52.9555750Z adding 'torch/_export/db/examples/dictionary.py' 2025-11-03T15:55:52.9556680Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-11-03T15:55:52.9557510Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-11-03T15:55:52.9558420Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-11-03T15:55:52.9559290Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-11-03T15:55:52.9560210Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-11-03T15:55:52.9561040Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-11-03T15:55:52.9561990Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-11-03T15:55:52.9562800Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-11-03T15:55:52.9563630Z adding 'torch/_export/db/examples/list_contains.py' 2025-11-03T15:55:52.9564490Z adding 'torch/_export/db/examples/list_unpack.py' 2025-11-03T15:55:52.9565410Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-11-03T15:55:52.9566290Z adding 'torch/_export/db/examples/nested_function.py' 2025-11-03T15:55:52.9567170Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-11-03T15:55:52.9568000Z adding 'torch/_export/db/examples/optional_input.py' 2025-11-03T15:55:52.9568850Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-11-03T15:55:52.9569690Z adding 'torch/_export/db/examples/scalar_output.py' 2025-11-03T15:55:52.9570570Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-11-03T15:55:52.9571360Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-11-03T15:55:52.9572210Z adding 'torch/_export/db/examples/static_if.py' 2025-11-03T15:55:52.9573020Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-11-03T15:55:52.9573850Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-11-03T15:55:52.9574680Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-11-03T15:55:52.9575500Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-11-03T15:55:52.9576470Z adding 'torch/_export/pass_infra/__init__.py' 2025-11-03T15:55:52.9577440Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-11-03T15:55:52.9578580Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-11-03T15:55:52.9579840Z adding 'torch/_export/passes/__init__.py' 2025-11-03T15:55:52.9581330Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-11-03T15:55:52.9584170Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-11-03T15:55:52.9585710Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-11-03T15:55:52.9588770Z adding 'torch/_export/passes/constant_folding.py' 2025-11-03T15:55:52.9590100Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-11-03T15:55:52.9591430Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-11-03T15:55:52.9595430Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-11-03T15:55:52.9596330Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-11-03T15:55:52.9598760Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-11-03T15:55:52.9603930Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-11-03T15:55:52.9605390Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-11-03T15:55:52.9606810Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-11-03T15:55:52.9609090Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-11-03T15:55:52.9610150Z adding 'torch/_export/serde/__init__.py' 2025-11-03T15:55:52.9613180Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-11-03T15:55:52.9615370Z adding 'torch/_export/serde/export_schema.thrift' 2025-11-03T15:55:52.9618720Z adding 'torch/_export/serde/schema.py' 2025-11-03T15:55:52.9621000Z adding 'torch/_export/serde/schema.yaml' 2025-11-03T15:55:52.9625660Z adding 'torch/_export/serde/schema_check.py' 2025-11-03T15:55:52.9656570Z adding 'torch/_export/serde/serialize.py' 2025-11-03T15:55:52.9658800Z adding 'torch/_export/serde/union.py' 2025-11-03T15:55:52.9659900Z adding 'torch/_functorch/__init__.py' 2025-11-03T15:55:52.9677540Z adding 'torch/_functorch/aot_autograd.py' 2025-11-03T15:55:52.9682060Z adding 'torch/_functorch/apis.py' 2025-11-03T15:55:52.9688290Z adding 'torch/_functorch/autograd_function.py' 2025-11-03T15:55:52.9689210Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-11-03T15:55:52.9691490Z adding 'torch/_functorch/benchmark_utils.py' 2025-11-03T15:55:52.9693810Z adding 'torch/_functorch/compile_utils.py' 2025-11-03T15:55:52.9697060Z adding 'torch/_functorch/compilers.py' 2025-11-03T15:55:52.9701520Z adding 'torch/_functorch/config.py' 2025-11-03T15:55:52.9702790Z adding 'torch/_functorch/deprecated.py' 2025-11-03T15:55:52.9717970Z adding 'torch/_functorch/eager_transforms.py' 2025-11-03T15:55:52.9721090Z adding 'torch/_functorch/functional_call.py' 2025-11-03T15:55:52.9724890Z adding 'torch/_functorch/fx_minifier.py' 2025-11-03T15:55:52.9729390Z adding 'torch/_functorch/make_functional.py' 2025-11-03T15:55:52.9755650Z adding 'torch/_functorch/partitioners.py' 2025-11-03T15:55:52.9757780Z adding 'torch/_functorch/predispatch.py' 2025-11-03T15:55:52.9760180Z adding 'torch/_functorch/pyfunctorch.py' 2025-11-03T15:55:52.9760820Z adding 'torch/_functorch/python_key.py' 2025-11-03T15:55:52.9761740Z adding 'torch/_functorch/pytree_hacks.py' 2025-11-03T15:55:52.9766600Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-11-03T15:55:52.9767370Z adding 'torch/_functorch/utils.py' 2025-11-03T15:55:52.9771630Z adding 'torch/_functorch/vmap.py' 2025-11-03T15:55:52.9772710Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-11-03T15:55:52.9775140Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-11-03T15:55:52.9777710Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-11-03T15:55:52.9778950Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-11-03T15:55:52.9781790Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-11-03T15:55:52.9782740Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-11-03T15:55:52.9788380Z adding 'torch/_functorch/_aot_autograd/aot_autograd_result.py' 2025-11-03T15:55:52.9797220Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-11-03T15:55:52.9807570Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-11-03T15:55:52.9813370Z adding 'torch/_functorch/_aot_autograd/descriptors.py' 2025-11-03T15:55:52.9816520Z adding 'torch/_functorch/_aot_autograd/frontend_utils.py' 2025-11-03T15:55:52.9821500Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-11-03T15:55:52.9824150Z adding 'torch/_functorch/_aot_autograd/fx_utils.py' 2025-11-03T15:55:52.9827980Z adding 'torch/_functorch/_aot_autograd/graph_capture.py' 2025-11-03T15:55:52.9841250Z adding 'torch/_functorch/_aot_autograd/graph_capture_wrappers.py' 2025-11-03T15:55:52.9860910Z adding 'torch/_functorch/_aot_autograd/graph_compile.py' 2025-11-03T15:55:52.9865470Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-11-03T15:55:52.9866820Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-11-03T15:55:52.9891950Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-11-03T15:55:52.9905650Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-11-03T15:55:52.9907210Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-11-03T15:55:52.9911950Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-11-03T15:55:52.9917250Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-11-03T15:55:52.9918680Z adding 'torch/_higher_order_ops/__init__.py' 2025-11-03T15:55:52.9919860Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-11-03T15:55:52.9921900Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-11-03T15:55:52.9929770Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-11-03T15:55:52.9937010Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-11-03T15:55:52.9939820Z adding 'torch/_higher_order_ops/base_hop.py' 2025-11-03T15:55:52.9946050Z adding 'torch/_higher_order_ops/cond.py' 2025-11-03T15:55:52.9948840Z adding 'torch/_higher_order_ops/effects.py' 2025-11-03T15:55:52.9950710Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-11-03T15:55:52.9952060Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-11-03T15:55:52.9959570Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-11-03T15:55:52.9960400Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-11-03T15:55:52.9962200Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-11-03T15:55:52.9967620Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-11-03T15:55:52.9971780Z adding 'torch/_higher_order_ops/local_map.py' 2025-11-03T15:55:52.9974380Z adding 'torch/_higher_order_ops/map.py' 2025-11-03T15:55:52.9975890Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-11-03T15:55:52.9979170Z adding 'torch/_higher_order_ops/partitioner.py' 2025-11-03T15:55:52.9980050Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-11-03T15:55:52.9988020Z adding 'torch/_higher_order_ops/scan.py' 2025-11-03T15:55:52.9991740Z adding 'torch/_higher_order_ops/schema.py' 2025-11-03T15:55:52.9992900Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-11-03T15:55:52.9995050Z adding 'torch/_higher_order_ops/torchbind.py' 2025-11-03T15:55:53.0012000Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-11-03T15:55:53.0023240Z adding 'torch/_higher_order_ops/utils.py' 2025-11-03T15:55:53.0030930Z adding 'torch/_higher_order_ops/while_loop.py' 2025-11-03T15:55:53.0034130Z adding 'torch/_higher_order_ops/wrap.py' 2025-11-03T15:55:53.0036260Z adding 'torch/_inductor/__autotune_main__.py' 2025-11-03T15:55:53.0039370Z adding 'torch/_inductor/__init__.py' 2025-11-03T15:55:53.0040820Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-11-03T15:55:53.0043440Z adding 'torch/_inductor/aoti_eager.py' 2025-11-03T15:55:53.0048810Z adding 'torch/_inductor/async_compile.py' 2025-11-03T15:55:53.0050940Z adding 'torch/_inductor/augmented_graph_helper.py' 2025-11-03T15:55:53.0056830Z adding 'torch/_inductor/autotune_process.py' 2025-11-03T15:55:53.0058610Z adding 'torch/_inductor/await_utils.py' 2025-11-03T15:55:53.0061090Z adding 'torch/_inductor/bounds.py' 2025-11-03T15:55:53.0064140Z adding 'torch/_inductor/cache.py' 2025-11-03T15:55:53.0069050Z adding 'torch/_inductor/choices.py' 2025-11-03T15:55:53.0105670Z adding 'torch/_inductor/codecache.py' 2025-11-03T15:55:53.0109860Z adding 'torch/_inductor/comm_analysis.py' 2025-11-03T15:55:53.0112700Z adding 'torch/_inductor/comm_lowering.py' 2025-11-03T15:55:53.0127080Z adding 'torch/_inductor/comms.py' 2025-11-03T15:55:53.0128860Z adding 'torch/_inductor/comms_debug.py' 2025-11-03T15:55:53.0153670Z adding 'torch/_inductor/compile_fx.py' 2025-11-03T15:55:53.0157340Z adding 'torch/_inductor/compile_fx_async.py' 2025-11-03T15:55:53.0162220Z adding 'torch/_inductor/compile_fx_ext.py' 2025-11-03T15:55:53.0163500Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-11-03T15:55:53.0168250Z adding 'torch/_inductor/compiler_bisector.py' 2025-11-03T15:55:53.0190950Z adding 'torch/_inductor/config.py' 2025-11-03T15:55:53.0192090Z adding 'torch/_inductor/config_comms.py' 2025-11-03T15:55:53.0195790Z adding 'torch/_inductor/constant_folding.py' 2025-11-03T15:55:53.0212710Z adding 'torch/_inductor/cpp_builder.py' 2025-11-03T15:55:53.0216620Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-11-03T15:55:53.0240950Z adding 'torch/_inductor/cudagraph_trees.py' 2025-11-03T15:55:53.0244660Z adding 'torch/_inductor/cudagraph_utils.py' 2025-11-03T15:55:53.0245950Z adding 'torch/_inductor/custom_graph_pass.py' 2025-11-03T15:55:53.0255490Z adding 'torch/_inductor/debug.py' 2025-11-03T15:55:53.0264040Z adding 'torch/_inductor/decomposition.py' 2025-11-03T15:55:53.0270860Z adding 'torch/_inductor/dependencies.py' 2025-11-03T15:55:53.0273600Z adding 'torch/_inductor/dtype_propagation.py' 2025-11-03T15:55:53.0274910Z adding 'torch/_inductor/exc.py' 2025-11-03T15:55:53.0275900Z adding 'torch/_inductor/extern_node_serializer.py' 2025-11-03T15:55:53.0278790Z adding 'torch/_inductor/freezing.py' 2025-11-03T15:55:53.0279610Z adding 'torch/_inductor/freezing_utils.py' 2025-11-03T15:55:53.0287550Z adding 'torch/_inductor/fuzzer.py' 2025-11-03T15:55:53.0290810Z adding 'torch/_inductor/fx_utils.py' 2025-11-03T15:55:53.0313980Z adding 'torch/_inductor/graph.py' 2025-11-03T15:55:53.0315260Z adding 'torch/_inductor/hooks.py' 2025-11-03T15:55:53.0318650Z adding 'torch/_inductor/index_propagation.py' 2025-11-03T15:55:53.0320840Z adding 'torch/_inductor/inductor_prims.py' 2025-11-03T15:55:53.0392050Z adding 'torch/_inductor/ir.py' 2025-11-03T15:55:53.0396000Z adding 'torch/_inductor/jagged_lowerings.py' 2025-11-03T15:55:53.0398390Z adding 'torch/_inductor/kernel_inputs.py' 2025-11-03T15:55:53.0399570Z adding 'torch/_inductor/kernel_template_choice.py' 2025-11-03T15:55:53.0405550Z adding 'torch/_inductor/loop_body.py' 2025-11-03T15:55:53.0458090Z adding 'torch/_inductor/lowering.py' 2025-11-03T15:55:53.0467800Z adding 'torch/_inductor/memory.py' 2025-11-03T15:55:53.0471380Z adding 'torch/_inductor/metrics.py' 2025-11-03T15:55:53.0477810Z adding 'torch/_inductor/mkldnn_ir.py' 2025-11-03T15:55:53.0485230Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-11-03T15:55:53.0487420Z adding 'torch/_inductor/mock_cache.py' 2025-11-03T15:55:53.0493730Z adding 'torch/_inductor/ops_handler.py' 2025-11-03T15:55:53.0495260Z adding 'torch/_inductor/optimize_indexing.py' 2025-11-03T15:55:53.0502590Z adding 'torch/_inductor/output_code.py' 2025-11-03T15:55:53.0521080Z adding 'torch/_inductor/pattern_matcher.py' 2025-11-03T15:55:53.0523250Z adding 'torch/_inductor/quantized_lowerings.py' 2025-11-03T15:55:53.0526340Z adding 'torch/_inductor/remote_cache.py' 2025-11-03T15:55:53.0527150Z adding 'torch/_inductor/remote_gemm_autotune_cache.py' 2025-11-03T15:55:53.0578820Z adding 'torch/_inductor/scheduler.py' 2025-11-03T15:55:53.0581010Z adding 'torch/_inductor/script.ld' 2025-11-03T15:55:53.0613530Z adding 'torch/_inductor/select_algorithm.py' 2025-11-03T15:55:53.0615870Z adding 'torch/_inductor/shape_propagation.py' 2025-11-03T15:55:53.0626030Z adding 'torch/_inductor/sizevars.py' 2025-11-03T15:55:53.0629580Z adding 'torch/_inductor/standalone_compile.py' 2025-11-03T15:55:53.0631760Z adding 'torch/_inductor/subgraph_lowering.py' 2025-11-03T15:55:53.0632540Z adding 'torch/_inductor/test_case.py' 2025-11-03T15:55:53.0633530Z adding 'torch/_inductor/test_operators.py' 2025-11-03T15:55:53.0639550Z adding 'torch/_inductor/tiling_utils.py' 2025-11-03T15:55:53.0643010Z adding 'torch/_inductor/triton_bundler.py' 2025-11-03T15:55:53.0673580Z adding 'torch/_inductor/utils.py' 2025-11-03T15:55:53.0677490Z adding 'torch/_inductor/virtualized.py' 2025-11-03T15:55:53.0681440Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-11-03T15:55:53.0683030Z adding 'torch/_inductor/analysis/__init__.py' 2025-11-03T15:55:53.0685250Z adding 'torch/_inductor/analysis/device_info.py' 2025-11-03T15:55:53.0691170Z adding 'torch/_inductor/analysis/profile_analysis.py' 2025-11-03T15:55:53.0692080Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-11-03T15:55:53.0695220Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-11-03T15:55:53.0697700Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-11-03T15:55:53.0699260Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-11-03T15:55:53.0700410Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-11-03T15:55:53.0704930Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-11-03T15:55:53.0709370Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-11-03T15:55:53.0710950Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-11-03T15:55:53.0712830Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-11-03T15:55:53.0714200Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-11-03T15:55:53.0715000Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-11-03T15:55:53.0716440Z adding 'torch/_inductor/codegen/__init__.py' 2025-11-03T15:55:53.0717530Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-11-03T15:55:53.0719810Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-11-03T15:55:53.0740510Z adding 'torch/_inductor/codegen/common.py' 2025-11-03T15:55:53.0787160Z adding 'torch/_inductor/codegen/cpp.py' 2025-11-03T15:55:53.0790700Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-11-03T15:55:53.0798910Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-11-03T15:55:53.0814030Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-11-03T15:55:53.0818620Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-11-03T15:55:53.0831300Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-11-03T15:55:53.0833420Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-11-03T15:55:53.0838200Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-11-03T15:55:53.0844110Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-11-03T15:55:53.0869320Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-11-03T15:55:53.0877330Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-11-03T15:55:53.0884520Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-11-03T15:55:53.0887400Z adding 'torch/_inductor/codegen/cpp_wrapper_mps.py' 2025-11-03T15:55:53.0888150Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-11-03T15:55:53.0889770Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-11-03T15:55:53.0892450Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-11-03T15:55:53.0905050Z adding 'torch/_inductor/codegen/halide.py' 2025-11-03T15:55:53.0910760Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-11-03T15:55:53.0918320Z adding 'torch/_inductor/codegen/mps.py' 2025-11-03T15:55:53.0919390Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-11-03T15:55:53.0924590Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-11-03T15:55:53.0925430Z adding 'torch/_inductor/codegen/python_wrapper_mtia.py' 2025-11-03T15:55:53.0927600Z adding 'torch/_inductor/codegen/segmented_tree.py' 2025-11-03T15:55:53.0953240Z adding 'torch/_inductor/codegen/simd.py' 2025-11-03T15:55:53.0958600Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-11-03T15:55:53.0961830Z adding 'torch/_inductor/codegen/subgraph.py' 2025-11-03T15:55:53.1011940Z adding 'torch/_inductor/codegen/triton.py' 2025-11-03T15:55:53.1021350Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-11-03T15:55:53.1023670Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-11-03T15:55:53.1026080Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-11-03T15:55:53.1057640Z adding 'torch/_inductor/codegen/wrapper.py' 2025-11-03T15:55:53.1067470Z adding 'torch/_inductor/codegen/wrapper_fxir.py' 2025-11-03T15:55:53.1071070Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-11-03T15:55:53.1071950Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-11-03T15:55:53.1075120Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-11-03T15:55:53.1075910Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-11-03T15:55:53.1081230Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-11-03T15:55:53.1084320Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-11-03T15:55:53.1089810Z adding 'torch/_inductor/codegen/cuda/cutlass_cache.py' 2025-11-03T15:55:53.1090100Z adding 'torch/_inductor/codegen/cuda/cutlass_python_evt.py' 2025-11-03T15:55:53.1092310Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-11-03T15:55:53.1094970Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-11-03T15:55:53.1109210Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-11-03T15:55:53.1112760Z adding 'torch/_inductor/codegen/cuda/serialization.py' 2025-11-03T15:55:53.1114920Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2025-11-03T15:55:53.1117800Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py' 2025-11-03T15:55:53.1121700Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2025-11-03T15:55:53.1122840Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/__init__.py' 2025-11-03T15:55:53.1124150Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/__init__.py' 2025-11-03T15:55:53.1125080Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cuda.py' 2025-11-03T15:55:53.1125990Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cudart.py' 2025-11-03T15:55:53.1127240Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot/__init__.py' 2025-11-03T15:55:53.1128320Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/__init__.py' 2025-11-03T15:55:53.1129040Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/special.py' 2025-11-03T15:55:53.1130010Z adding 'torch/_inductor/codegen/cutedsl/__init__.py' 2025-11-03T15:55:53.1131030Z adding 'torch/_inductor/codegen/cutedsl/_cutedsl_utils.py' 2025-11-03T15:55:53.1135810Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_kernel.py' 2025-11-03T15:55:53.1138470Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py' 2025-11-03T15:55:53.1140240Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_scheduling.py' 2025-11-03T15:55:53.1142530Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_template.py' 2025-11-03T15:55:53.1143210Z adding 'torch/_inductor/codegen/mtia/__init__.py' 2025-11-03T15:55:53.1144210Z adding 'torch/_inductor/codegen/mtia/device_op_overrides.py' 2025-11-03T15:55:53.1145240Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-11-03T15:55:53.1149980Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-11-03T15:55:53.1151090Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-11-03T15:55:53.1152240Z adding 'torch/_inductor/codegen/rocm/ck_tile_template.py' 2025-11-03T15:55:53.1158670Z adding 'torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py' 2025-11-03T15:55:53.1166170Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-11-03T15:55:53.1167730Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-11-03T15:55:53.1169330Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-11-03T15:55:53.1170810Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-11-03T15:55:53.1173680Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-11-03T15:55:53.1175860Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-11-03T15:55:53.1176460Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-11-03T15:55:53.1177300Z adding 'torch/_inductor/codegen/rocm/rocm_utils.py' 2025-11-03T15:55:53.1178280Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-11-03T15:55:53.1179380Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-11-03T15:55:53.1180420Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-11-03T15:55:53.1181680Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-11-03T15:55:53.1185700Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-11-03T15:55:53.1186620Z adding 'torch/_inductor/compile_worker/timer.py' 2025-11-03T15:55:53.1188140Z adding 'torch/_inductor/compile_worker/tracked_process_pool.py' 2025-11-03T15:55:53.1189110Z adding 'torch/_inductor/compile_worker/utils.py' 2025-11-03T15:55:53.1190310Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-11-03T15:55:53.1195670Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-11-03T15:55:53.1199250Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-11-03T15:55:53.1205600Z adding 'torch/_inductor/fx_passes/bucketing.py' 2025-11-03T15:55:53.1207940Z adding 'torch/_inductor/fx_passes/control_dependencies.py' 2025-11-03T15:55:53.1212680Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-11-03T15:55:53.1215100Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-11-03T15:55:53.1216040Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-11-03T15:55:53.1218960Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-11-03T15:55:53.1221140Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-11-03T15:55:53.1222140Z adding 'torch/_inductor/fx_passes/fsdp.py' 2025-11-03T15:55:53.1227920Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-11-03T15:55:53.1237170Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-11-03T15:55:53.1244280Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-11-03T15:55:53.1248120Z adding 'torch/_inductor/fx_passes/memory_estimator.py' 2025-11-03T15:55:53.1256210Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-11-03T15:55:53.1257700Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-11-03T15:55:53.1267670Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-11-03T15:55:53.1269810Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-11-03T15:55:53.1276370Z adding 'torch/_inductor/fx_passes/overlap_preserving_bucketer.py' 2025-11-03T15:55:53.1284030Z adding 'torch/_inductor/fx_passes/overlap_scheduling.py' 2025-11-03T15:55:53.1289950Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-11-03T15:55:53.1305230Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-11-03T15:55:53.1311300Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-11-03T15:55:53.1333840Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-11-03T15:55:53.1341290Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-11-03T15:55:53.1342850Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-11-03T15:55:53.1365130Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-11-03T15:55:53.1366980Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-11-03T15:55:53.1368580Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-11-03T15:55:53.1370710Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-11-03T15:55:53.1372110Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-11-03T15:55:53.1374240Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-11-03T15:55:53.1375370Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-11-03T15:55:53.1377500Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-11-03T15:55:53.1378960Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-11-03T15:55:53.1382230Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-11-03T15:55:53.1384390Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-11-03T15:55:53.1386890Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-11-03T15:55:53.1388460Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-11-03T15:55:53.1389980Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-11-03T15:55:53.1392200Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py' 2025-11-03T15:55:53.1394660Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py' 2025-11-03T15:55:53.1397060Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py' 2025-11-03T15:55:53.1399560Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py' 2025-11-03T15:55:53.1400800Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py' 2025-11-03T15:55:53.1402420Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-11-03T15:55:53.1404110Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-11-03T15:55:53.1405730Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-11-03T15:55:53.1407350Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-11-03T15:55:53.1409280Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-11-03T15:55:53.1410810Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-11-03T15:55:53.1412720Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-11-03T15:55:53.1413710Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-11-03T15:55:53.1414680Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-11-03T15:55:53.1415670Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-11-03T15:55:53.1416710Z adding 'torch/_inductor/kernel/__init__.py' 2025-11-03T15:55:53.1419770Z adding 'torch/_inductor/kernel/bmm.py' 2025-11-03T15:55:53.1424140Z adding 'torch/_inductor/kernel/conv.py' 2025-11-03T15:55:53.1427800Z adding 'torch/_inductor/kernel/custom_op.py' 2025-11-03T15:55:53.1439240Z adding 'torch/_inductor/kernel/mm.py' 2025-11-03T15:55:53.1441840Z adding 'torch/_inductor/kernel/mm_common.py' 2025-11-03T15:55:53.1447070Z adding 'torch/_inductor/kernel/mm_grouped.py' 2025-11-03T15:55:53.1449180Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-11-03T15:55:53.1450220Z adding 'torch/_inductor/kernel/flex/__init__.py' 2025-11-03T15:55:53.1453340Z adding 'torch/_inductor/kernel/flex/common.py' 2025-11-03T15:55:53.1459010Z adding 'torch/_inductor/kernel/flex/flex_attention.py' 2025-11-03T15:55:53.1462100Z adding 'torch/_inductor/kernel/flex/flex_cpu.py' 2025-11-03T15:55:53.1465670Z adding 'torch/_inductor/kernel/flex/flex_decoding.py' 2025-11-03T15:55:53.1468300Z adding 'torch/_inductor/kernel/flex/flex_flash_attention.py' 2025-11-03T15:55:53.1470730Z adding 'torch/_inductor/kernel/flex/templates/common.py.jinja' 2025-11-03T15:55:53.1471730Z adding 'torch/_inductor/kernel/flex/templates/flash_attention.py.jinja' 2025-11-03T15:55:53.1474200Z adding 'torch/_inductor/kernel/flex/templates/flex_attention.py.jinja' 2025-11-03T15:55:53.1478880Z adding 'torch/_inductor/kernel/flex/templates/flex_backwards.py.jinja' 2025-11-03T15:55:53.1481610Z adding 'torch/_inductor/kernel/flex/templates/flex_decode.py.jinja' 2025-11-03T15:55:53.1482600Z adding 'torch/_inductor/kernel/flex/templates/utilities.py.jinja' 2025-11-03T15:55:53.1483750Z adding 'torch/_inductor/lookup_table/__init__.py' 2025-11-03T15:55:53.1487350Z adding 'torch/_inductor/lookup_table/choices.py' 2025-11-03T15:55:53.1488320Z adding 'torch/_inductor/package/__init__.py' 2025-11-03T15:55:53.1489230Z adding 'torch/_inductor/package/build_package.py' 2025-11-03T15:55:53.1490780Z adding 'torch/_inductor/package/package.py' 2025-11-03T15:55:53.1491840Z adding 'torch/_inductor/runtime/__init__.py' 2025-11-03T15:55:53.1497120Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-11-03T15:55:53.1500530Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-11-03T15:55:53.1501440Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-11-03T15:55:53.1502680Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-11-03T15:55:53.1505850Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-11-03T15:55:53.1507150Z adding 'torch/_inductor/runtime/debug_utils.py' 2025-11-03T15:55:53.1508560Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-11-03T15:55:53.1510780Z adding 'torch/_inductor/runtime/hints.py' 2025-11-03T15:55:53.1512190Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-11-03T15:55:53.1515180Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-11-03T15:55:53.1516400Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-11-03T15:55:53.1521920Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-11-03T15:55:53.1553350Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-11-03T15:55:53.1555770Z adding 'torch/_inductor/runtime/caching/__init__.py' 2025-11-03T15:55:53.1558020Z adding 'torch/_inductor/runtime/caching/config.py' 2025-11-03T15:55:53.1560780Z adding 'torch/_inductor/runtime/caching/context.py' 2025-11-03T15:55:53.1562700Z adding 'torch/_inductor/runtime/caching/exceptions.py' 2025-11-03T15:55:53.1566010Z adding 'torch/_inductor/runtime/caching/implementations.py' 2025-11-03T15:55:53.1570780Z adding 'torch/_inductor/runtime/caching/interfaces.py' 2025-11-03T15:55:53.1572930Z adding 'torch/_inductor/runtime/caching/locks.py' 2025-11-03T15:55:53.1574190Z adding 'torch/_inductor/runtime/caching/utils.py' 2025-11-03T15:55:53.1575550Z adding 'torch/_inductor/template_heuristics/__init__.py' 2025-11-03T15:55:53.1576820Z adding 'torch/_inductor/template_heuristics/aten.py' 2025-11-03T15:55:53.1578060Z adding 'torch/_inductor/template_heuristics/base.py' 2025-11-03T15:55:53.1579290Z adding 'torch/_inductor/template_heuristics/contiguous_mm.py' 2025-11-03T15:55:53.1580550Z adding 'torch/_inductor/template_heuristics/decompose_k.py' 2025-11-03T15:55:53.1581510Z adding 'torch/_inductor/template_heuristics/gemm.py' 2025-11-03T15:55:53.1582440Z adding 'torch/_inductor/template_heuristics/params.py' 2025-11-03T15:55:53.1584540Z adding 'torch/_inductor/template_heuristics/registry.py' 2025-11-03T15:55:53.1597820Z adding 'torch/_inductor/template_heuristics/triton.py' 2025-11-03T15:55:53.1599060Z adding 'torch/_inductor/template_heuristics/triton_addmm.py' 2025-11-03T15:55:53.1600510Z adding 'torch/_lazy/__init__.py' 2025-11-03T15:55:53.1602440Z adding 'torch/_lazy/closure.py' 2025-11-03T15:55:53.1603170Z adding 'torch/_lazy/computation.py' 2025-11-03T15:55:53.1604150Z adding 'torch/_lazy/config.py' 2025-11-03T15:55:53.1605030Z adding 'torch/_lazy/debug.py' 2025-11-03T15:55:53.1605960Z adding 'torch/_lazy/device_context.py' 2025-11-03T15:55:53.1608660Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-11-03T15:55:53.1609240Z adding 'torch/_lazy/ir_cache.py' 2025-11-03T15:55:53.1610100Z adding 'torch/_lazy/metrics.py' 2025-11-03T15:55:53.1611120Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-11-03T15:55:53.1611890Z adding 'torch/_lazy/ts_backend.py' 2025-11-03T15:55:53.1613040Z adding 'torch/_library/__init__.py' 2025-11-03T15:55:53.1615560Z adding 'torch/_library/autograd.py' 2025-11-03T15:55:53.1623150Z adding 'torch/_library/custom_ops.py' 2025-11-03T15:55:53.1626850Z adding 'torch/_library/fake_class_registry.py' 2025-11-03T15:55:53.1629290Z adding 'torch/_library/fake_impl.py' 2025-11-03T15:55:53.1632230Z adding 'torch/_library/fake_profile.py' 2025-11-03T15:55:53.1635400Z adding 'torch/_library/infer_schema.py' 2025-11-03T15:55:53.1637170Z adding 'torch/_library/opaque_object.py' 2025-11-03T15:55:53.1638290Z adding 'torch/_library/simple_registry.py' 2025-11-03T15:55:53.1642060Z adding 'torch/_library/triton.py' 2025-11-03T15:55:53.1646620Z adding 'torch/_library/utils.py' 2025-11-03T15:55:53.1647680Z adding 'torch/_logging/__init__.py' 2025-11-03T15:55:53.1659680Z adding 'torch/_logging/_internal.py' 2025-11-03T15:55:53.1661960Z adding 'torch/_logging/_registrations.py' 2025-11-03T15:55:53.1663230Z adding 'torch/_logging/scribe.py' 2025-11-03T15:55:53.1664740Z adding 'torch/_logging/structured.py' 2025-11-03T15:55:53.1666070Z adding 'torch/_numpy/__init__.py' 2025-11-03T15:55:53.1667320Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-11-03T15:55:53.1670730Z adding 'torch/_numpy/_casting_dicts.py' 2025-11-03T15:55:53.1673610Z adding 'torch/_numpy/_dtypes.py' 2025-11-03T15:55:53.1675530Z adding 'torch/_numpy/_dtypes_impl.py' 2025-11-03T15:55:53.1676420Z adding 'torch/_numpy/_funcs.py' 2025-11-03T15:55:53.1689710Z adding 'torch/_numpy/_funcs_impl.py' 2025-11-03T15:55:53.1690640Z adding 'torch/_numpy/_getlimits.py' 2025-11-03T15:55:53.1695680Z adding 'torch/_numpy/_ndarray.py' 2025-11-03T15:55:53.1697940Z adding 'torch/_numpy/_normalizations.py' 2025-11-03T15:55:53.1700450Z adding 'torch/_numpy/_reductions_impl.py' 2025-11-03T15:55:53.1702520Z adding 'torch/_numpy/_ufuncs.py' 2025-11-03T15:55:53.1703290Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-11-03T15:55:53.1705820Z adding 'torch/_numpy/_util.py' 2025-11-03T15:55:53.1706640Z adding 'torch/_numpy/fft.py' 2025-11-03T15:55:53.1708520Z adding 'torch/_numpy/linalg.py' 2025-11-03T15:55:53.1709650Z adding 'torch/_numpy/random.py' 2025-11-03T15:55:53.1710820Z adding 'torch/_numpy/testing/__init__.py' 2025-11-03T15:55:53.1727430Z adding 'torch/_numpy/testing/utils.py' 2025-11-03T15:55:53.1744270Z adding 'torch/_prims/__init__.py' 2025-11-03T15:55:53.1746620Z adding 'torch/_prims/context.py' 2025-11-03T15:55:53.1748750Z adding 'torch/_prims/debug_prims.py' 2025-11-03T15:55:53.1749840Z adding 'torch/_prims/executor.py' 2025-11-03T15:55:53.1752860Z adding 'torch/_prims/rng_prims.py' 2025-11-03T15:55:53.1770320Z adding 'torch/_prims_common/__init__.py' 2025-11-03T15:55:53.1775200Z adding 'torch/_prims_common/wrappers.py' 2025-11-03T15:55:53.1822430Z adding 'torch/_refs/__init__.py' 2025-11-03T15:55:53.1824960Z adding 'torch/_refs/_conversions.py' 2025-11-03T15:55:53.1828240Z adding 'torch/_refs/fft.py' 2025-11-03T15:55:53.1831510Z adding 'torch/_refs/linalg/__init__.py' 2025-11-03T15:55:53.1832330Z adding 'torch/_refs/nn/__init__.py' 2025-11-03T15:55:53.1840830Z adding 'torch/_refs/nn/functional/__init__.py' 2025-11-03T15:55:53.1842980Z adding 'torch/_refs/special/__init__.py' 2025-11-03T15:55:53.1843720Z adding 'torch/_strobelight/__init__.py' 2025-11-03T15:55:53.1846520Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-11-03T15:55:53.1848640Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-11-03T15:55:53.1849540Z adding 'torch/_subclasses/__init__.py' 2025-11-03T15:55:53.1852110Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-11-03T15:55:53.1862090Z adding 'torch/_subclasses/fake_impls.py' 2025-11-03T15:55:53.1894900Z adding 'torch/_subclasses/fake_tensor.py' 2025-11-03T15:55:53.1898250Z adding 'torch/_subclasses/fake_utils.py' 2025-11-03T15:55:53.1906040Z adding 'torch/_subclasses/functional_tensor.py' 2025-11-03T15:55:53.1924600Z adding 'torch/_subclasses/meta_utils.py' 2025-11-03T15:55:53.1927280Z adding 'torch/_subclasses/schema_check_mode.py' 2025-11-03T15:55:53.1928100Z adding 'torch/_vendor/__init__.py' 2025-11-03T15:55:53.1929310Z adding 'torch/_vendor/packaging/__init__.py' 2025-11-03T15:55:53.1930280Z adding 'torch/_vendor/packaging/_structures.py' 2025-11-03T15:55:53.1934100Z adding 'torch/_vendor/packaging/version.py' 2025-11-03T15:55:53.1936660Z adding 'torch/accelerator/__init__.py' 2025-11-03T15:55:53.1937400Z adding 'torch/accelerator/_utils.py' 2025-11-03T15:55:53.1939450Z adding 'torch/accelerator/memory.py' 2025-11-03T15:55:53.1940280Z adding 'torch/amp/__init__.py' 2025-11-03T15:55:53.1945040Z adding 'torch/amp/autocast_mode.py' 2025-11-03T15:55:53.1951650Z adding 'torch/amp/grad_scaler.py' 2025-11-03T15:55:53.1952930Z adding 'torch/ao/__init__.py' 2025-11-03T15:55:53.1954320Z adding 'torch/ao/nn/__init__.py' 2025-11-03T15:55:53.1955680Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-11-03T15:55:53.1956940Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-11-03T15:55:53.1958940Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-11-03T15:55:53.1959580Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-11-03T15:55:53.1960710Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-11-03T15:55:53.1965810Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-11-03T15:55:53.1967910Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-11-03T15:55:53.1968730Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-11-03T15:55:53.1969800Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-11-03T15:55:53.1970890Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-11-03T15:55:53.1972030Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-11-03T15:55:53.1973180Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-11-03T15:55:53.1974350Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-11-03T15:55:53.1975470Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-11-03T15:55:53.1976730Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-11-03T15:55:53.1978400Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-11-03T15:55:53.1979970Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-11-03T15:55:53.1980890Z adding 'torch/ao/nn/qat/__init__.py' 2025-11-03T15:55:53.1981910Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-11-03T15:55:53.1982940Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-11-03T15:55:53.1983960Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-11-03T15:55:53.1985110Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-11-03T15:55:53.1987330Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-11-03T15:55:53.1988710Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-11-03T15:55:53.1989990Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-11-03T15:55:53.1990990Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-11-03T15:55:53.1992110Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-11-03T15:55:53.1996770Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-11-03T15:55:53.2001150Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-11-03T15:55:53.2002210Z adding 'torch/ao/nn/quantized/__init__.py' 2025-11-03T15:55:53.2006920Z adding 'torch/ao/nn/quantized/functional.py' 2025-11-03T15:55:53.2007950Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-11-03T15:55:53.2009090Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-11-03T15:55:53.2011610Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-11-03T15:55:53.2013270Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-11-03T15:55:53.2021760Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-11-03T15:55:53.2023920Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-11-03T15:55:53.2026280Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-11-03T15:55:53.2027350Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-11-03T15:55:53.2037380Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-11-03T15:55:53.2037720Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-11-03T15:55:53.2037980Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-11-03T15:55:53.2038270Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-11-03T15:55:53.2041450Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-11-03T15:55:53.2042790Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-11-03T15:55:53.2043910Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-11-03T15:55:53.2045880Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-11-03T15:55:53.2046600Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-11-03T15:55:53.2047760Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-11-03T15:55:53.2050000Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-11-03T15:55:53.2051030Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-11-03T15:55:53.2055660Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-11-03T15:55:53.2056770Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-11-03T15:55:53.2059540Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-11-03T15:55:53.2060250Z adding 'torch/ao/nn/sparse/__init__.py' 2025-11-03T15:55:53.2061320Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-11-03T15:55:53.2063670Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-11-03T15:55:53.2064500Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-11-03T15:55:53.2065560Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-11-03T15:55:53.2067730Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-11-03T15:55:53.2068430Z adding 'torch/ao/ns/__init__.py' 2025-11-03T15:55:53.2072390Z adding 'torch/ao/ns/_numeric_suite.py' 2025-11-03T15:55:53.2080260Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-11-03T15:55:53.2081200Z adding 'torch/ao/ns/fx/__init__.py' 2025-11-03T15:55:53.2085780Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-11-03T15:55:53.2094580Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-11-03T15:55:53.2097870Z adding 'torch/ao/ns/fx/mappings.py' 2025-11-03T15:55:53.2108780Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-11-03T15:55:53.2110110Z adding 'torch/ao/ns/fx/ns_types.py' 2025-11-03T15:55:53.2112610Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-11-03T15:55:53.2115060Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-11-03T15:55:53.2119540Z adding 'torch/ao/ns/fx/utils.py' 2025-11-03T15:55:53.2122040Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-11-03T15:55:53.2122970Z adding 'torch/ao/pruning/__init__.py' 2025-11-03T15:55:53.2123830Z adding 'torch/ao/pruning/_mappings.py' 2025-11-03T15:55:53.2124940Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-11-03T15:55:53.2126070Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-11-03T15:55:53.2130650Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-11-03T15:55:53.2131490Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-11-03T15:55:53.2133770Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-11-03T15:55:53.2134590Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-11-03T15:55:53.2138100Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-11-03T15:55:53.2140460Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-11-03T15:55:53.2141880Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-11-03T15:55:53.2142880Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-11-03T15:55:53.2143910Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-11-03T15:55:53.2145040Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-11-03T15:55:53.2147130Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-11-03T15:55:53.2148570Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-11-03T15:55:53.2149390Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-11-03T15:55:53.2152160Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-11-03T15:55:53.2153140Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-11-03T15:55:53.2154230Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-11-03T15:55:53.2155450Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-11-03T15:55:53.2159380Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-11-03T15:55:53.2160280Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-11-03T15:55:53.2161190Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-11-03T15:55:53.2163300Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-11-03T15:55:53.2164480Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-11-03T15:55:53.2165690Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-11-03T15:55:53.2166610Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-11-03T15:55:53.2170100Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-11-03T15:55:53.2171140Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-11-03T15:55:53.2173160Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-11-03T15:55:53.2175440Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-11-03T15:55:53.2177770Z adding 'torch/ao/quantization/__init__.py' 2025-11-03T15:55:53.2179210Z adding 'torch/ao/quantization/_correct_bias.py' 2025-11-03T15:55:53.2182110Z adding 'torch/ao/quantization/_equalize.py' 2025-11-03T15:55:53.2183900Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-11-03T15:55:53.2188250Z adding 'torch/ao/quantization/fake_quantize.py' 2025-11-03T15:55:53.2190360Z adding 'torch/ao/quantization/fuse_modules.py' 2025-11-03T15:55:53.2192580Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-11-03T15:55:53.2208250Z adding 'torch/ao/quantization/observer.py' 2025-11-03T15:55:53.2213180Z adding 'torch/ao/quantization/qconfig.py' 2025-11-03T15:55:53.2216290Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-11-03T15:55:53.2217010Z adding 'torch/ao/quantization/quant_type.py' 2025-11-03T15:55:53.2219890Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-11-03T15:55:53.2226140Z adding 'torch/ao/quantization/quantize.py' 2025-11-03T15:55:53.2231950Z adding 'torch/ao/quantization/quantize_fx.py' 2025-11-03T15:55:53.2235100Z adding 'torch/ao/quantization/quantize_jit.py' 2025-11-03T15:55:53.2237430Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-11-03T15:55:53.2238430Z adding 'torch/ao/quantization/stubs.py' 2025-11-03T15:55:53.2245260Z adding 'torch/ao/quantization/utils.py' 2025-11-03T15:55:53.2246550Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-11-03T15:55:53.2251120Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-11-03T15:55:53.2252500Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-11-03T15:55:53.2258460Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-11-03T15:55:53.2261320Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-11-03T15:55:53.2262330Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-11-03T15:55:53.2263890Z adding 'torch/ao/quantization/backend_config/native.py' 2025-11-03T15:55:53.2267040Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-11-03T15:55:53.2268210Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-11-03T15:55:53.2269420Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-11-03T15:55:53.2272490Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-11-03T15:55:53.2273440Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-11-03T15:55:53.2274570Z adding 'torch/ao/quantization/fx/__init__.py' 2025-11-03T15:55:53.2280900Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-11-03T15:55:53.2289300Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-11-03T15:55:53.2299670Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-11-03T15:55:53.2312020Z adding 'torch/ao/quantization/fx/convert.py' 2025-11-03T15:55:53.2315590Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-11-03T15:55:53.2317740Z adding 'torch/ao/quantization/fx/fuse.py' 2025-11-03T15:55:53.2319060Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-11-03T15:55:53.2321070Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-11-03T15:55:53.2321620Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-11-03T15:55:53.2322530Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-11-03T15:55:53.2325170Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-11-03T15:55:53.2327610Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-11-03T15:55:53.2328780Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-11-03T15:55:53.2348710Z adding 'torch/ao/quantization/fx/prepare.py' 2025-11-03T15:55:53.2352610Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-11-03T15:55:53.2354670Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-11-03T15:55:53.2355480Z adding 'torch/ao/quantization/fx/tracer.py' 2025-11-03T15:55:53.2363940Z adding 'torch/ao/quantization/fx/utils.py' 2025-11-03T15:55:53.2364990Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-11-03T15:55:53.2379480Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-11-03T15:55:53.2386140Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-11-03T15:55:53.2389040Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-11-03T15:55:53.2395620Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-11-03T15:55:53.2396530Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-11-03T15:55:53.2402930Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-11-03T15:55:53.2406070Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-11-03T15:55:53.2407130Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-11-03T15:55:53.2409370Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-11-03T15:55:53.2411140Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-11-03T15:55:53.2412160Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-11-03T15:55:53.2414690Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-11-03T15:55:53.2420050Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-11-03T15:55:53.2427830Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-11-03T15:55:53.2433220Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-11-03T15:55:53.2434220Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-11-03T15:55:53.2438690Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-11-03T15:55:53.2439710Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-11-03T15:55:53.2441130Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-11-03T15:55:53.2442460Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-11-03T15:55:53.2444660Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-11-03T15:55:53.2445820Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-11-03T15:55:53.2456600Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-11-03T15:55:53.2460210Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-11-03T15:55:53.2466680Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-11-03T15:55:53.2468020Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-11-03T15:55:53.2474220Z adding 'torch/autograd/__init__.py' 2025-11-03T15:55:53.2475560Z adding 'torch/autograd/anomaly_mode.py' 2025-11-03T15:55:53.2477940Z adding 'torch/autograd/forward_ad.py' 2025-11-03T15:55:53.2484850Z adding 'torch/autograd/function.py' 2025-11-03T15:55:53.2494460Z adding 'torch/autograd/functional.py' 2025-11-03T15:55:53.2497670Z adding 'torch/autograd/grad_mode.py' 2025-11-03T15:55:53.2518190Z adding 'torch/autograd/gradcheck.py' 2025-11-03T15:55:53.2525550Z adding 'torch/autograd/graph.py' 2025-11-03T15:55:53.2535860Z adding 'torch/autograd/profiler.py' 2025-11-03T15:55:53.2538830Z adding 'torch/autograd/profiler_legacy.py' 2025-11-03T15:55:53.2547970Z adding 'torch/autograd/profiler_util.py' 2025-11-03T15:55:53.2548800Z adding 'torch/autograd/variable.py' 2025-11-03T15:55:53.2549860Z adding 'torch/autograd/_functions/__init__.py' 2025-11-03T15:55:53.2551040Z adding 'torch/autograd/_functions/tensor.py' 2025-11-03T15:55:53.2552010Z adding 'torch/autograd/_functions/utils.py' 2025-11-03T15:55:53.2554140Z adding 'torch/backends/__init__.py' 2025-11-03T15:55:53.2555330Z adding 'torch/backends/_coreml/__init__.py' 2025-11-03T15:55:53.2556830Z adding 'torch/backends/_coreml/preprocess.py' 2025-11-03T15:55:53.2557730Z adding 'torch/backends/_nnapi/__init__.py' 2025-11-03T15:55:53.2559840Z adding 'torch/backends/_nnapi/prepare.py' 2025-11-03T15:55:53.2574610Z adding 'torch/backends/_nnapi/serializer.py' 2025-11-03T15:55:53.2575920Z adding 'torch/backends/cpu/__init__.py' 2025-11-03T15:55:53.2580120Z adding 'torch/backends/cuda/__init__.py' 2025-11-03T15:55:53.2582630Z adding 'torch/backends/cudnn/__init__.py' 2025-11-03T15:55:53.2583630Z adding 'torch/backends/cudnn/rnn.py' 2025-11-03T15:55:53.2584900Z adding 'torch/backends/cusparselt/__init__.py' 2025-11-03T15:55:53.2585900Z adding 'torch/backends/kleidiai/__init__.py' 2025-11-03T15:55:53.2586970Z adding 'torch/backends/mha/__init__.py' 2025-11-03T15:55:53.2588160Z adding 'torch/backends/miopen/__init__.py' 2025-11-03T15:55:53.2589420Z adding 'torch/backends/mkl/__init__.py' 2025-11-03T15:55:53.2591420Z adding 'torch/backends/mkldnn/__init__.py' 2025-11-03T15:55:53.2592290Z adding 'torch/backends/mps/__init__.py' 2025-11-03T15:55:53.2593480Z adding 'torch/backends/nnpack/__init__.py' 2025-11-03T15:55:53.2594450Z adding 'torch/backends/openmp/__init__.py' 2025-11-03T15:55:53.2596420Z adding 'torch/backends/opt_einsum/__init__.py' 2025-11-03T15:55:53.2597330Z adding 'torch/backends/quantized/__init__.py' 2025-11-03T15:55:53.2598320Z adding 'torch/backends/xeon/__init__.py' 2025-11-03T15:55:53.2605440Z adding 'torch/backends/xeon/run_cpu.py' 2025-11-03T15:55:53.2606530Z adding 'torch/backends/xnnpack/__init__.py' 2025-11-03T15:55:53.3687960Z adding 'torch/bin/protoc' 2025-11-03T15:55:53.4776460Z adding 'torch/bin/protoc-3.13.0.0' 2025-11-03T15:55:53.4803480Z adding 'torch/bin/torch_shm_manager' 2025-11-03T15:55:53.4810300Z adding 'torch/compiler/__init__.py' 2025-11-03T15:55:53.4813430Z adding 'torch/compiler/_cache.py' 2025-11-03T15:55:53.4816170Z adding 'torch/compiler/config.py' 2025-11-03T15:55:53.4817080Z adding 'torch/contrib/__init__.py' 2025-11-03T15:55:53.4819310Z adding 'torch/contrib/_tensorboard_vis.py' 2025-11-03T15:55:53.4821100Z adding 'torch/cpu/__init__.py' 2025-11-03T15:55:53.4822290Z adding 'torch/cpu/amp/__init__.py' 2025-11-03T15:55:53.4823480Z adding 'torch/cpu/amp/autocast_mode.py' 2025-11-03T15:55:53.4824880Z adding 'torch/cpu/amp/grad_scaler.py' 2025-11-03T15:55:53.4826960Z adding 'torch/csrc/inductor/aoti_runtime/model.h' 2025-11-03T15:55:53.4840670Z adding 'torch/cuda/__init__.py' 2025-11-03T15:55:53.4842590Z adding 'torch/cuda/_device_limits.py' 2025-11-03T15:55:53.4843550Z adding 'torch/cuda/_gpu_trace.py' 2025-11-03T15:55:53.4850100Z adding 'torch/cuda/_memory_viz.py' 2025-11-03T15:55:53.4850940Z adding 'torch/cuda/_pin_memory_utils.py' 2025-11-03T15:55:53.4855770Z adding 'torch/cuda/_sanitizer.py' 2025-11-03T15:55:53.4860160Z adding 'torch/cuda/_utils.py' 2025-11-03T15:55:53.4860800Z adding 'torch/cuda/comm.py' 2025-11-03T15:55:53.4862740Z adding 'torch/cuda/gds.py' 2025-11-03T15:55:53.4868580Z adding 'torch/cuda/graphs.py' 2025-11-03T15:55:53.4869690Z adding 'torch/cuda/green_contexts.py' 2025-11-03T15:55:53.4871820Z adding 'torch/cuda/jiterator.py' 2025-11-03T15:55:53.4881460Z adding 'torch/cuda/memory.py' 2025-11-03T15:55:53.4882990Z adding 'torch/cuda/nccl.py' 2025-11-03T15:55:53.4884910Z adding 'torch/cuda/nvtx.py' 2025-11-03T15:55:53.4886040Z adding 'torch/cuda/profiler.py' 2025-11-03T15:55:53.4887540Z adding 'torch/cuda/random.py' 2025-11-03T15:55:53.4888450Z adding 'torch/cuda/sparse.py' 2025-11-03T15:55:53.4891250Z adding 'torch/cuda/streams.py' 2025-11-03T15:55:53.4897870Z adding 'torch/cuda/tunable.py' 2025-11-03T15:55:53.4898990Z adding 'torch/cuda/amp/__init__.py' 2025-11-03T15:55:53.4900270Z adding 'torch/cuda/amp/autocast_mode.py' 2025-11-03T15:55:53.4901190Z adding 'torch/cuda/amp/common.py' 2025-11-03T15:55:53.4902370Z adding 'torch/cuda/amp/grad_scaler.py' 2025-11-03T15:55:53.4905040Z adding 'torch/distributed/__init__.py' 2025-11-03T15:55:53.4907260Z adding 'torch/distributed/_checkpointable.py' 2025-11-03T15:55:53.4908240Z adding 'torch/distributed/_composable_state.py' 2025-11-03T15:55:53.4910350Z adding 'torch/distributed/_dist2.py' 2025-11-03T15:55:53.4919030Z adding 'torch/distributed/_functional_collectives.py' 2025-11-03T15:55:53.4920140Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-11-03T15:55:53.4923590Z adding 'torch/distributed/_mesh_layout.py' 2025-11-03T15:55:53.4925010Z adding 'torch/distributed/_serialization.py' 2025-11-03T15:55:53.4931370Z adding 'torch/distributed/_state_dict_utils.py' 2025-11-03T15:55:53.4932630Z adding 'torch/distributed/argparse_util.py' 2025-11-03T15:55:53.4934020Z adding 'torch/distributed/c10d_logger.py' 2025-11-03T15:55:53.4937210Z adding 'torch/distributed/collective_utils.py' 2025-11-03T15:55:53.4937990Z adding 'torch/distributed/constants.py' 2025-11-03T15:55:53.4950680Z adding 'torch/distributed/device_mesh.py' 2025-11-03T15:55:53.4997320Z adding 'torch/distributed/distributed_c10d.py' 2025-11-03T15:55:53.5000640Z adding 'torch/distributed/launch.py' 2025-11-03T15:55:53.5001290Z adding 'torch/distributed/logging_handlers.py' 2025-11-03T15:55:53.5003310Z adding 'torch/distributed/remote_device.py' 2025-11-03T15:55:53.5005690Z adding 'torch/distributed/rendezvous.py' 2025-11-03T15:55:53.5013640Z adding 'torch/distributed/run.py' 2025-11-03T15:55:53.5016920Z adding 'torch/distributed/utils.py' 2025-11-03T15:55:53.5018720Z adding 'torch/distributed/_composable/__init__.py' 2025-11-03T15:55:53.5020240Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-11-03T15:55:53.5022800Z adding 'torch/distributed/_composable/contract.py' 2025-11-03T15:55:53.5025260Z adding 'torch/distributed/_composable/replicate.py' 2025-11-03T15:55:53.5028990Z adding 'torch/distributed/_composable/replicate_with_fsdp.py' 2025-11-03T15:55:53.5030040Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-11-03T15:55:53.5030890Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-11-03T15:55:53.5040160Z adding 'torch/distributed/_local_tensor/__init__.py' 2025-11-03T15:55:53.5045420Z adding 'torch/distributed/_local_tensor/_c10d.py' 2025-11-03T15:55:53.5046850Z adding 'torch/distributed/_pycute/__init__.py' 2025-11-03T15:55:53.5049410Z adding 'torch/distributed/_pycute/int_tuple.py' 2025-11-03T15:55:53.5053210Z adding 'torch/distributed/_pycute/layout.py' 2025-11-03T15:55:53.5054090Z adding 'torch/distributed/_pycute/typing.py' 2025-11-03T15:55:53.5055230Z adding 'torch/distributed/_shard/__init__.py' 2025-11-03T15:55:53.5056200Z adding 'torch/distributed/_shard/_utils.py' 2025-11-03T15:55:53.5059380Z adding 'torch/distributed/_shard/api.py' 2025-11-03T15:55:53.5060330Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-11-03T15:55:53.5061450Z adding 'torch/distributed/_shard/metadata.py' 2025-11-03T15:55:53.5062420Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-11-03T15:55:53.5063380Z adding 'torch/distributed/_shard/sharder.py' 2025-11-03T15:55:53.5064720Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-11-03T15:55:53.5066080Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-11-03T15:55:53.5067570Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-11-03T15:55:53.5071240Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-11-03T15:55:53.5082220Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-11-03T15:55:53.5083380Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-11-03T15:55:53.5084300Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-11-03T15:55:53.5085520Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-11-03T15:55:53.5088110Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-11-03T15:55:53.5089050Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-11-03T15:55:53.5091960Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-11-03T15:55:53.5092940Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-11-03T15:55:53.5095690Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-11-03T15:55:53.5096630Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-11-03T15:55:53.5098580Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-11-03T15:55:53.5099190Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-11-03T15:55:53.5101340Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-11-03T15:55:53.5102240Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-11-03T15:55:53.5103760Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-11-03T15:55:53.5104960Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-11-03T15:55:53.5107610Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-11-03T15:55:53.5110120Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-11-03T15:55:53.5112660Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-11-03T15:55:53.5113570Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-11-03T15:55:53.5116920Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-11-03T15:55:53.5119650Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-11-03T15:55:53.5123630Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-11-03T15:55:53.5124460Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-11-03T15:55:53.5125570Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-11-03T15:55:53.5139790Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-11-03T15:55:53.5147960Z adding 'torch/distributed/_symmetric_memory/_nvshmem_triton.py' 2025-11-03T15:55:53.5149140Z adding 'torch/distributed/_tensor/__init__.py' 2025-11-03T15:55:53.5149960Z adding 'torch/distributed/_tensor/api.py' 2025-11-03T15:55:53.5155180Z adding 'torch/distributed/_tensor/placement_types.py' 2025-11-03T15:55:53.5155430Z adding 'torch/distributed/_tools/__init__.py' 2025-11-03T15:55:53.5155660Z adding 'torch/distributed/_tools/common_utils.py' 2025-11-03T15:55:53.5155900Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-11-03T15:55:53.5159800Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-11-03T15:55:53.5162460Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-11-03T15:55:53.5171200Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-11-03T15:55:53.5173980Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-11-03T15:55:53.5176390Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-11-03T15:55:53.5180700Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-11-03T15:55:53.5189370Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-11-03T15:55:53.5192360Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-11-03T15:55:53.5193250Z adding 'torch/distributed/algorithms/__init__.py' 2025-11-03T15:55:53.5196840Z adding 'torch/distributed/algorithms/join.py' 2025-11-03T15:55:53.5197860Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-11-03T15:55:53.5201140Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-11-03T15:55:53.5201910Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-11-03T15:55:53.5204050Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-11-03T15:55:53.5204820Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-11-03T15:55:53.5206220Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-11-03T15:55:53.5207150Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-11-03T15:55:53.5208770Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-11-03T15:55:53.5210910Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-11-03T15:55:53.5214600Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-11-03T15:55:53.5215510Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-11-03T15:55:53.5217640Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-11-03T15:55:53.5218780Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-11-03T15:55:53.5220570Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-11-03T15:55:53.5222200Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-11-03T15:55:53.5230560Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-11-03T15:55:53.5232780Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-11-03T15:55:53.5233460Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-11-03T15:55:53.5235240Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-11-03T15:55:53.5238000Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-11-03T15:55:53.5239110Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-11-03T15:55:53.5240400Z adding 'torch/distributed/autograd/__init__.py' 2025-11-03T15:55:53.5241920Z adding 'torch/distributed/checkpoint/__init__.py' 2025-11-03T15:55:53.5243000Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-11-03T15:55:53.5246110Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-11-03T15:55:53.5247070Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-11-03T15:55:53.5248380Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-11-03T15:55:53.5254510Z adding 'torch/distributed/checkpoint/_consolidate_hf_safetensors.py' 2025-11-03T15:55:53.5255600Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-11-03T15:55:53.5256770Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-11-03T15:55:53.5259050Z adding 'torch/distributed/checkpoint/_extension.py' 2025-11-03T15:55:53.5260520Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-11-03T15:55:53.5261720Z adding 'torch/distributed/checkpoint/_hf_utils.py' 2025-11-03T15:55:53.5262890Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-11-03T15:55:53.5266450Z adding 'torch/distributed/checkpoint/_pg_transport.py' 2025-11-03T15:55:53.5267690Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-11-03T15:55:53.5271840Z adding 'torch/distributed/checkpoint/_state_dict_stager.py' 2025-11-03T15:55:53.5272740Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-11-03T15:55:53.5274800Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-11-03T15:55:53.5275350Z adding 'torch/distributed/checkpoint/_version.py' 2025-11-03T15:55:53.5276370Z adding 'torch/distributed/checkpoint/api.py' 2025-11-03T15:55:53.5282130Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-11-03T15:55:53.5289580Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-11-03T15:55:53.5292300Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-11-03T15:55:53.5295690Z adding 'torch/distributed/checkpoint/hf_storage.py' 2025-11-03T15:55:53.5296880Z adding 'torch/distributed/checkpoint/logger.py' 2025-11-03T15:55:53.5297720Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-11-03T15:55:53.5299740Z adding 'torch/distributed/checkpoint/metadata.py' 2025-11-03T15:55:53.5302670Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-11-03T15:55:53.5306310Z adding 'torch/distributed/checkpoint/planner.py' 2025-11-03T15:55:53.5309900Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-11-03T15:55:53.5312930Z adding 'torch/distributed/checkpoint/quantized_hf_storage.py' 2025-11-03T15:55:53.5313800Z adding 'torch/distributed/checkpoint/resharding.py' 2025-11-03T15:55:53.5318470Z adding 'torch/distributed/checkpoint/staging.py' 2025-11-03T15:55:53.5330940Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-11-03T15:55:53.5334460Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-11-03T15:55:53.5338280Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-11-03T15:55:53.5339100Z adding 'torch/distributed/checkpoint/stateful.py' 2025-11-03T15:55:53.5341500Z adding 'torch/distributed/checkpoint/storage.py' 2025-11-03T15:55:53.5344920Z adding 'torch/distributed/checkpoint/utils.py' 2025-11-03T15:55:53.5346300Z adding 'torch/distributed/checkpoint/_experimental/__init__.py' 2025-11-03T15:55:53.5348810Z adding 'torch/distributed/checkpoint/_experimental/barriers.py' 2025-11-03T15:55:53.5350210Z adding 'torch/distributed/checkpoint/_experimental/builder.py' 2025-11-03T15:55:53.5353250Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_process.py' 2025-11-03T15:55:53.5355430Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_reader.py' 2025-11-03T15:55:53.5356790Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_writer.py' 2025-11-03T15:55:53.5359270Z adding 'torch/distributed/checkpoint/_experimental/checkpointer.py' 2025-11-03T15:55:53.5360030Z adding 'torch/distributed/checkpoint/_experimental/config.py' 2025-11-03T15:55:53.5362560Z adding 'torch/distributed/checkpoint/_experimental/staging.py' 2025-11-03T15:55:53.5363270Z adding 'torch/distributed/checkpoint/_experimental/types.py' 2025-11-03T15:55:53.5364280Z adding 'torch/distributed/checkpoint/_experimental/utils.py' 2025-11-03T15:55:53.5366350Z adding 'torch/distributed/elastic/__init__.py' 2025-11-03T15:55:53.5367020Z adding 'torch/distributed/elastic/control_plane.py' 2025-11-03T15:55:53.5368250Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-11-03T15:55:53.5369590Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-11-03T15:55:53.5378640Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-11-03T15:55:53.5379760Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-11-03T15:55:53.5383530Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-11-03T15:55:53.5385580Z adding 'torch/distributed/elastic/events/__init__.py' 2025-11-03T15:55:53.5386640Z adding 'torch/distributed/elastic/events/api.py' 2025-11-03T15:55:53.5387610Z adding 'torch/distributed/elastic/events/handlers.py' 2025-11-03T15:55:53.5389760Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-11-03T15:55:53.5391260Z adding 'torch/distributed/elastic/metrics/api.py' 2025-11-03T15:55:53.5394130Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-11-03T15:55:53.5402050Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-11-03T15:55:53.5403200Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-11-03T15:55:53.5405430Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-11-03T15:55:53.5409440Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-11-03T15:55:53.5411580Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-11-03T15:55:53.5412120Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-11-03T15:55:53.5413300Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-11-03T15:55:53.5414260Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-11-03T15:55:53.5415660Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-11-03T15:55:53.5418030Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-11-03T15:55:53.5418860Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-11-03T15:55:53.5422060Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-11-03T15:55:53.5424910Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-11-03T15:55:53.5434080Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-11-03T15:55:53.5442910Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-11-03T15:55:53.5445130Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-11-03T15:55:53.5447450Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-11-03T15:55:53.5449610Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-11-03T15:55:53.5450540Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-11-03T15:55:53.5451970Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-11-03T15:55:53.5454480Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-11-03T15:55:53.5455640Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-11-03T15:55:53.5458590Z adding 'torch/distributed/elastic/timer/api.py' 2025-11-03T15:55:53.5459290Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-11-03T15:55:53.5463210Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-11-03T15:55:53.5464470Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-11-03T15:55:53.5465680Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-11-03T15:55:53.5466810Z adding 'torch/distributed/elastic/utils/api.py' 2025-11-03T15:55:53.5468980Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-11-03T15:55:53.5469610Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-11-03T15:55:53.5470780Z adding 'torch/distributed/elastic/utils/logging.py' 2025-11-03T15:55:53.5473070Z adding 'torch/distributed/elastic/utils/store.py' 2025-11-03T15:55:53.5473980Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-11-03T15:55:53.5475110Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-11-03T15:55:53.5476540Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-11-03T15:55:53.5477860Z adding 'torch/distributed/fsdp/__init__.py' 2025-11-03T15:55:53.5483400Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-11-03T15:55:53.5485500Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-11-03T15:55:53.5486300Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-11-03T15:55:53.5489750Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-11-03T15:55:53.5516690Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-11-03T15:55:53.5518910Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-11-03T15:55:53.5529300Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-11-03T15:55:53.5530470Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-11-03T15:55:53.5551100Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-11-03T15:55:53.5567520Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-11-03T15:55:53.5569650Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-11-03T15:55:53.5576190Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-11-03T15:55:53.5578940Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-11-03T15:55:53.5580320Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-11-03T15:55:53.5583380Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-11-03T15:55:53.5586100Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-11-03T15:55:53.5590380Z adding 'torch/distributed/fsdp/api.py' 2025-11-03T15:55:53.5611150Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-11-03T15:55:53.5615220Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-11-03T15:55:53.5620440Z adding 'torch/distributed/fsdp/wrap.py' 2025-11-03T15:55:53.5621590Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-11-03T15:55:53.5623630Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-11-03T15:55:53.5629700Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-11-03T15:55:53.5631830Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-11-03T15:55:53.5634350Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-11-03T15:55:53.5643410Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-11-03T15:55:53.5651660Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-11-03T15:55:53.5655580Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-11-03T15:55:53.5662820Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-11-03T15:55:53.5663790Z adding 'torch/distributed/launcher/__init__.py' 2025-11-03T15:55:53.5667200Z adding 'torch/distributed/launcher/api.py' 2025-11-03T15:55:53.5668100Z adding 'torch/distributed/nn/__init__.py' 2025-11-03T15:55:53.5671470Z adding 'torch/distributed/nn/functional.py' 2025-11-03T15:55:53.5672350Z adding 'torch/distributed/nn/api/__init__.py' 2025-11-03T15:55:53.5678220Z adding 'torch/distributed/nn/api/remote_module.py' 2025-11-03T15:55:53.5679040Z adding 'torch/distributed/nn/jit/__init__.py' 2025-11-03T15:55:53.5681010Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-11-03T15:55:53.5681680Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-11-03T15:55:53.5683070Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-11-03T15:55:53.5684420Z adding 'torch/distributed/optim/__init__.py' 2025-11-03T15:55:53.5685350Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-11-03T15:55:53.5687400Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-11-03T15:55:53.5688480Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-11-03T15:55:53.5690000Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-11-03T15:55:53.5692030Z adding 'torch/distributed/optim/functional_adam.py' 2025-11-03T15:55:53.5693190Z adding 'torch/distributed/optim/functional_adamax.py' 2025-11-03T15:55:53.5695250Z adding 'torch/distributed/optim/functional_adamw.py' 2025-11-03T15:55:53.5696410Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-11-03T15:55:53.5697890Z adding 'torch/distributed/optim/functional_rprop.py' 2025-11-03T15:55:53.5699520Z adding 'torch/distributed/optim/functional_sgd.py' 2025-11-03T15:55:53.5702890Z adding 'torch/distributed/optim/named_optimizer.py' 2025-11-03T15:55:53.5705510Z adding 'torch/distributed/optim/optimizer.py' 2025-11-03T15:55:53.5706840Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-11-03T15:55:53.5707930Z adding 'torch/distributed/optim/utils.py' 2025-11-03T15:55:53.5723640Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-11-03T15:55:53.5725090Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-11-03T15:55:53.5737460Z adding 'torch/distributed/pipelining/_IR.py' 2025-11-03T15:55:53.5738480Z adding 'torch/distributed/pipelining/__init__.py' 2025-11-03T15:55:53.5742740Z adding 'torch/distributed/pipelining/_backward.py' 2025-11-03T15:55:53.5743540Z adding 'torch/distributed/pipelining/_debug.py' 2025-11-03T15:55:53.5747720Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-11-03T15:55:53.5748400Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-11-03T15:55:53.5750000Z adding 'torch/distributed/pipelining/_utils.py' 2025-11-03T15:55:53.5754560Z adding 'torch/distributed/pipelining/microbatch.py' 2025-11-03T15:55:53.5780430Z adding 'torch/distributed/pipelining/schedules.py' 2025-11-03T15:55:53.5795250Z adding 'torch/distributed/pipelining/stage.py' 2025-11-03T15:55:53.5798490Z adding 'torch/distributed/rpc/__init__.py' 2025-11-03T15:55:53.5799440Z adding 'torch/distributed/rpc/_utils.py' 2025-11-03T15:55:53.5806800Z adding 'torch/distributed/rpc/api.py' 2025-11-03T15:55:53.5810700Z adding 'torch/distributed/rpc/backend_registry.py' 2025-11-03T15:55:53.5811450Z adding 'torch/distributed/rpc/constants.py' 2025-11-03T15:55:53.5813520Z adding 'torch/distributed/rpc/functions.py' 2025-11-03T15:55:53.5816060Z adding 'torch/distributed/rpc/internal.py' 2025-11-03T15:55:53.5818170Z adding 'torch/distributed/rpc/options.py' 2025-11-03T15:55:53.5818970Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-11-03T15:55:53.5821400Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-11-03T15:55:53.5822290Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-11-03T15:55:53.5823440Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-11-03T15:55:53.5824990Z adding 'torch/distributed/tensor/__init__.py' 2025-11-03T15:55:53.5836400Z adding 'torch/distributed/tensor/_api.py' 2025-11-03T15:55:53.5839950Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-11-03T15:55:53.5844950Z adding 'torch/distributed/tensor/_dispatch.py' 2025-11-03T15:55:53.5849640Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-11-03T15:55:53.5854950Z adding 'torch/distributed/tensor/_op_schema.py' 2025-11-03T15:55:53.5859440Z adding 'torch/distributed/tensor/_random.py' 2025-11-03T15:55:53.5867410Z adding 'torch/distributed/tensor/_redistribute.py' 2025-11-03T15:55:53.5873510Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-11-03T15:55:53.5876440Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-11-03T15:55:53.5878570Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-11-03T15:55:53.5882840Z adding 'torch/distributed/tensor/_utils.py' 2025-11-03T15:55:53.5883500Z adding 'torch/distributed/tensor/device_mesh.py' 2025-11-03T15:55:53.5890540Z adding 'torch/distributed/tensor/placement_types.py' 2025-11-03T15:55:53.5891730Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-11-03T15:55:53.5895000Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-11-03T15:55:53.5896200Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-11-03T15:55:53.5898430Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-11-03T15:55:53.5899450Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-11-03T15:55:53.5900550Z adding 'torch/distributed/tensor/_ops/_mask_buffer.py' 2025-11-03T15:55:53.5909410Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-11-03T15:55:53.5915540Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-11-03T15:55:53.5920490Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-11-03T15:55:53.5921350Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-11-03T15:55:53.5931180Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-11-03T15:55:53.5938290Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-11-03T15:55:53.5942130Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-11-03T15:55:53.5943140Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-11-03T15:55:53.5948480Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-11-03T15:55:53.5949810Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-11-03T15:55:53.5952240Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-11-03T15:55:53.5953250Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-11-03T15:55:53.5954240Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-11-03T15:55:53.5957400Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-11-03T15:55:53.5958840Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-11-03T15:55:53.5963360Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-11-03T15:55:53.5964450Z adding 'torch/distributed/tensor/experimental/_context_parallel/__init__.py' 2025-11-03T15:55:53.5976890Z adding 'torch/distributed/tensor/experimental/_context_parallel/_attention.py' 2025-11-03T15:55:53.5978050Z adding 'torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py' 2025-11-03T15:55:53.5982470Z adding 'torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py' 2025-11-03T15:55:53.5983430Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-11-03T15:55:53.5984510Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-11-03T15:55:53.5986690Z adding 'torch/distributed/tensor/parallel/api.py' 2025-11-03T15:55:53.5987840Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-11-03T15:55:53.5991310Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-11-03T15:55:53.5992470Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-11-03T15:55:53.5996470Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-11-03T15:55:53.6002140Z adding 'torch/distributed/tensor/parallel/style.py' 2025-11-03T15:55:53.6004770Z adding 'torch/distributions/__init__.py' 2025-11-03T15:55:53.6006120Z adding 'torch/distributions/bernoulli.py' 2025-11-03T15:55:53.6007470Z adding 'torch/distributions/beta.py' 2025-11-03T15:55:53.6009660Z adding 'torch/distributions/binomial.py' 2025-11-03T15:55:53.6011100Z adding 'torch/distributions/categorical.py' 2025-11-03T15:55:53.6012340Z adding 'torch/distributions/cauchy.py' 2025-11-03T15:55:53.6013360Z adding 'torch/distributions/chi2.py' 2025-11-03T15:55:53.6015850Z adding 'torch/distributions/constraint_registry.py' 2025-11-03T15:55:53.6019720Z adding 'torch/distributions/constraints.py' 2025-11-03T15:55:53.6022130Z adding 'torch/distributions/continuous_bernoulli.py' 2025-11-03T15:55:53.6023330Z adding 'torch/distributions/dirichlet.py' 2025-11-03T15:55:53.6026320Z adding 'torch/distributions/distribution.py' 2025-11-03T15:55:53.6027280Z adding 'torch/distributions/exp_family.py' 2025-11-03T15:55:53.6028460Z adding 'torch/distributions/exponential.py' 2025-11-03T15:55:53.6029850Z adding 'torch/distributions/fishersnedecor.py' 2025-11-03T15:55:53.6031170Z adding 'torch/distributions/gamma.py' 2025-11-03T15:55:53.6033130Z adding 'torch/distributions/generalized_pareto.py' 2025-11-03T15:55:53.6034450Z adding 'torch/distributions/geometric.py' 2025-11-03T15:55:53.6035710Z adding 'torch/distributions/gumbel.py' 2025-11-03T15:55:53.6036870Z adding 'torch/distributions/half_cauchy.py' 2025-11-03T15:55:53.6037960Z adding 'torch/distributions/half_normal.py' 2025-11-03T15:55:53.6039430Z adding 'torch/distributions/independent.py' 2025-11-03T15:55:53.6040640Z adding 'torch/distributions/inverse_gamma.py' 2025-11-03T15:55:53.6046640Z adding 'torch/distributions/kl.py' 2025-11-03T15:55:53.6047840Z adding 'torch/distributions/kumaraswamy.py' 2025-11-03T15:55:53.6049160Z adding 'torch/distributions/laplace.py' 2025-11-03T15:55:53.6051380Z adding 'torch/distributions/lkj_cholesky.py' 2025-11-03T15:55:53.6052270Z adding 'torch/distributions/log_normal.py' 2025-11-03T15:55:53.6053400Z adding 'torch/distributions/logistic_normal.py' 2025-11-03T15:55:53.6056050Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-11-03T15:55:53.6058140Z adding 'torch/distributions/mixture_same_family.py' 2025-11-03T15:55:53.6062650Z adding 'torch/distributions/multinomial.py' 2025-11-03T15:55:53.6062900Z adding 'torch/distributions/multivariate_normal.py' 2025-11-03T15:55:53.6063690Z adding 'torch/distributions/negative_binomial.py' 2025-11-03T15:55:53.6065160Z adding 'torch/distributions/normal.py' 2025-11-03T15:55:53.6066980Z adding 'torch/distributions/one_hot_categorical.py' 2025-11-03T15:55:53.6067960Z adding 'torch/distributions/pareto.py' 2025-11-03T15:55:53.6069150Z adding 'torch/distributions/poisson.py' 2025-11-03T15:55:53.6071140Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-11-03T15:55:53.6072400Z adding 'torch/distributions/relaxed_categorical.py' 2025-11-03T15:55:53.6073900Z adding 'torch/distributions/studentT.py' 2025-11-03T15:55:53.6076330Z adding 'torch/distributions/transformed_distribution.py' 2025-11-03T15:55:53.6083930Z adding 'torch/distributions/transforms.py' 2025-11-03T15:55:53.6085180Z adding 'torch/distributions/uniform.py' 2025-11-03T15:55:53.6087690Z adding 'torch/distributions/utils.py' 2025-11-03T15:55:53.6089780Z adding 'torch/distributions/von_mises.py' 2025-11-03T15:55:53.6090840Z adding 'torch/distributions/weibull.py' 2025-11-03T15:55:53.6094030Z adding 'torch/distributions/wishart.py' 2025-11-03T15:55:53.6099440Z adding 'torch/export/__init__.py' 2025-11-03T15:55:53.6103740Z adding 'torch/export/_draft_export.py' 2025-11-03T15:55:53.6105010Z adding 'torch/export/_leakage_detection_utils.py' 2025-11-03T15:55:53.6106140Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-11-03T15:55:53.6108240Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-11-03T15:55:53.6109120Z adding 'torch/export/_safeguard.py' 2025-11-03T15:55:53.6113180Z adding 'torch/export/_swap.py' 2025-11-03T15:55:53.6134800Z adding 'torch/export/_trace.py' 2025-11-03T15:55:53.6136460Z adding 'torch/export/_tree_utils.py' 2025-11-03T15:55:53.6144260Z adding 'torch/export/_unlift.py' 2025-11-03T15:55:53.6145020Z adding 'torch/export/_wrapper_utils.py' 2025-11-03T15:55:53.6145860Z adding 'torch/export/custom_obj.py' 2025-11-03T15:55:53.6147050Z adding 'torch/export/custom_ops.py' 2025-11-03T15:55:53.6149080Z adding 'torch/export/decomp_utils.py' 2025-11-03T15:55:53.6161400Z adding 'torch/export/dynamic_shapes.py' 2025-11-03T15:55:53.6176850Z adding 'torch/export/exported_program.py' 2025-11-03T15:55:53.6182640Z adding 'torch/export/graph_signature.py' 2025-11-03T15:55:53.6199280Z adding 'torch/export/unflatten.py' 2025-11-03T15:55:53.6203960Z adding 'torch/export/experimental/__init__.py' 2025-11-03T15:55:53.6206070Z adding 'torch/export/experimental/_utils.py' 2025-11-03T15:55:53.6207350Z adding 'torch/export/passes/__init__.py' 2025-11-03T15:55:53.6208430Z adding 'torch/export/pt2_archive/__init__.py' 2025-11-03T15:55:53.6217190Z adding 'torch/export/pt2_archive/_package.py' 2025-11-03T15:55:53.6218770Z adding 'torch/export/pt2_archive/_package_weights.py' 2025-11-03T15:55:53.6219690Z adding 'torch/export/pt2_archive/constants.py' 2025-11-03T15:55:53.6227340Z adding 'torch/fft/__init__.py' 2025-11-03T15:55:53.6228510Z adding 'torch/func/__init__.py' 2025-11-03T15:55:53.6232340Z adding 'torch/futures/__init__.py' 2025-11-03T15:55:53.6234390Z adding 'torch/fx/__init__.py' 2025-11-03T15:55:53.6235120Z adding 'torch/fx/_compatibility.py' 2025-11-03T15:55:53.6240190Z adding 'torch/fx/_graph_pickler.py' 2025-11-03T15:55:53.6242340Z adding 'torch/fx/_lazy_graph_module.py' 2025-11-03T15:55:53.6243250Z adding 'torch/fx/_pytree.py' 2025-11-03T15:55:53.6255080Z adding 'torch/fx/_symbolic_trace.py' 2025-11-03T15:55:53.6256090Z adding 'torch/fx/_utils.py' 2025-11-03T15:55:53.6257070Z adding 'torch/fx/annotate.py' 2025-11-03T15:55:53.6257920Z adding 'torch/fx/config.py' 2025-11-03T15:55:53.6277310Z adding 'torch/fx/graph.py' 2025-11-03T15:55:53.6287450Z adding 'torch/fx/graph_module.py' 2025-11-03T15:55:53.6288650Z adding 'torch/fx/immutable_collections.py' 2025-11-03T15:55:53.6293340Z adding 'torch/fx/interpreter.py' 2025-11-03T15:55:53.6301630Z adding 'torch/fx/node.py' 2025-11-03T15:55:53.6306700Z adding 'torch/fx/operator_schemas.py' 2025-11-03T15:55:53.6313720Z adding 'torch/fx/proxy.py' 2025-11-03T15:55:53.6317810Z adding 'torch/fx/subgraph_rewriter.py' 2025-11-03T15:55:53.6318820Z adding 'torch/fx/tensor_type.py' 2025-11-03T15:55:53.6322630Z adding 'torch/fx/traceback.py' 2025-11-03T15:55:53.6323690Z adding 'torch/fx/experimental/__init__.py' 2025-11-03T15:55:53.6324690Z adding 'torch/fx/experimental/_backward_state.py' 2025-11-03T15:55:53.6326690Z adding 'torch/fx/experimental/_config.py' 2025-11-03T15:55:53.6327280Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-11-03T15:55:53.6328810Z adding 'torch/fx/experimental/_dynamism.py' 2025-11-03T15:55:53.6338840Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-11-03T15:55:53.6342300Z adding 'torch/fx/experimental/const_fold.py' 2025-11-03T15:55:53.6343130Z adding 'torch/fx/experimental/debug.py' 2025-11-03T15:55:53.6350180Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-11-03T15:55:53.6352320Z adding 'torch/fx/experimental/merge_matmul.py' 2025-11-03T15:55:53.6355040Z adding 'torch/fx/experimental/meta_tracer.py' 2025-11-03T15:55:53.6356480Z adding 'torch/fx/experimental/normalize.py' 2025-11-03T15:55:53.6360920Z adding 'torch/fx/experimental/optimization.py' 2025-11-03T15:55:53.6363860Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-11-03T15:55:53.6389320Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-11-03T15:55:53.6394680Z adding 'torch/fx/experimental/recording.py' 2025-11-03T15:55:53.6395390Z adding 'torch/fx/experimental/refinement_types.py' 2025-11-03T15:55:53.6397450Z adding 'torch/fx/experimental/rewriter.py' 2025-11-03T15:55:53.6398850Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-11-03T15:55:53.6412210Z adding 'torch/fx/experimental/sym_node.py' 2025-11-03T15:55:53.6495000Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-11-03T15:55:53.6497960Z adding 'torch/fx/experimental/unify_refinements.py' 2025-11-03T15:55:53.6505490Z adding 'torch/fx/experimental/validator.py' 2025-11-03T15:55:53.6506640Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-11-03T15:55:53.6510030Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-11-03T15:55:53.6518970Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-11-03T15:55:53.6527280Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-11-03T15:55:53.6528060Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-11-03T15:55:53.6531390Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-11-03T15:55:53.6532180Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-11-03T15:55:53.6533100Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-11-03T15:55:53.6534230Z adding 'torch/fx/experimental/unification/__init__.py' 2025-11-03T15:55:53.6535520Z adding 'torch/fx/experimental/unification/core.py' 2025-11-03T15:55:53.6536470Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-11-03T15:55:53.6537850Z adding 'torch/fx/experimental/unification/match.py' 2025-11-03T15:55:53.6539260Z adding 'torch/fx/experimental/unification/more.py' 2025-11-03T15:55:53.6542070Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-11-03T15:55:53.6543170Z adding 'torch/fx/experimental/unification/utils.py' 2025-11-03T15:55:53.6544280Z adding 'torch/fx/experimental/unification/variable.py' 2025-11-03T15:55:53.6545480Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-11-03T15:55:53.6546930Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-11-03T15:55:53.6548280Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-11-03T15:55:53.6551980Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-11-03T15:55:53.6553250Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-11-03T15:55:53.6554570Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-11-03T15:55:53.6555730Z adding 'torch/fx/passes/__init__.py' 2025-11-03T15:55:53.6559710Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-11-03T15:55:53.6560630Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-11-03T15:55:53.6562080Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-11-03T15:55:53.6566060Z adding 'torch/fx/passes/graph_drawer.py' 2025-11-03T15:55:53.6567410Z adding 'torch/fx/passes/graph_manipulation.py' 2025-11-03T15:55:53.6569590Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-11-03T15:55:53.6577090Z adding 'torch/fx/passes/net_min_base.py' 2025-11-03T15:55:53.6579310Z adding 'torch/fx/passes/operator_support.py' 2025-11-03T15:55:53.6580460Z adding 'torch/fx/passes/param_fetch.py' 2025-11-03T15:55:53.6582790Z adding 'torch/fx/passes/pass_manager.py' 2025-11-03T15:55:53.6584570Z adding 'torch/fx/passes/regional_inductor.py' 2025-11-03T15:55:53.6592650Z adding 'torch/fx/passes/reinplace.py' 2025-11-03T15:55:53.6598670Z adding 'torch/fx/passes/runtime_assert.py' 2025-11-03T15:55:53.6601150Z adding 'torch/fx/passes/shape_prop.py' 2025-11-03T15:55:53.6607230Z adding 'torch/fx/passes/split_module.py' 2025-11-03T15:55:53.6610170Z adding 'torch/fx/passes/split_utils.py' 2025-11-03T15:55:53.6618870Z adding 'torch/fx/passes/splitter_base.py' 2025-11-03T15:55:53.6621850Z adding 'torch/fx/passes/tools_common.py' 2025-11-03T15:55:53.6622800Z adding 'torch/fx/passes/backends/__init__.py' 2025-11-03T15:55:53.6624010Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-11-03T15:55:53.6624920Z adding 'torch/fx/passes/dialect/__init__.py' 2025-11-03T15:55:53.6625900Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-11-03T15:55:53.6627920Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-11-03T15:55:53.6628530Z adding 'torch/fx/passes/infra/__init__.py' 2025-11-03T15:55:53.6632610Z adding 'torch/fx/passes/infra/partitioner.py' 2025-11-03T15:55:53.6633590Z adding 'torch/fx/passes/infra/pass_base.py' 2025-11-03T15:55:53.6636490Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-11-03T15:55:53.6637180Z adding 'torch/fx/passes/tests/__init__.py' 2025-11-03T15:55:53.6638220Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-11-03T15:55:53.6639290Z adding 'torch/fx/passes/utils/__init__.py' 2025-11-03T15:55:53.6640610Z adding 'torch/fx/passes/utils/common.py' 2025-11-03T15:55:53.6643460Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-11-03T15:55:53.6647430Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-11-03T15:55:53.6648760Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-11-03T15:55:53.6650850Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-11-03T15:55:53.6652150Z adding 'torch/include/clog.h' 2025-11-03T15:55:53.6659830Z adding 'torch/include/cpuinfo.h' 2025-11-03T15:55:53.6660650Z adding 'torch/include/experiments-config.h' 2025-11-03T15:55:53.6661430Z adding 'torch/include/fp16.h' 2025-11-03T15:55:53.6664110Z adding 'torch/include/fxdiv.h' 2025-11-03T15:55:53.6664820Z adding 'torch/include/libshm.h' 2025-11-03T15:55:53.6669060Z adding 'torch/include/nnpack.h' 2025-11-03T15:55:53.6673530Z adding 'torch/include/omp.h' 2025-11-03T15:55:53.6679190Z adding 'torch/include/psimd.h' 2025-11-03T15:55:53.6687610Z adding 'torch/include/pthreadpool.h' 2025-11-03T15:55:53.6689030Z adding 'torch/include/qnnpack_func.h' 2025-11-03T15:55:53.6704760Z adding 'torch/include/sleef.h' 2025-11-03T15:55:53.6728160Z adding 'torch/include/xnnpack.h' 2025-11-03T15:55:53.6731700Z adding 'torch/include/ATen/ATen.h' 2025-11-03T15:55:53.6733110Z adding 'torch/include/ATen/AccumulateType.h' 2025-11-03T15:55:53.6733960Z adding 'torch/include/ATen/ArrayRef.h' 2025-11-03T15:55:53.6734700Z adding 'torch/include/ATen/Backend.h' 2025-11-03T15:55:53.6735420Z adding 'torch/include/ATen/Backtrace.h' 2025-11-03T15:55:53.6736370Z adding 'torch/include/ATen/BlasBackend.h' 2025-11-03T15:55:53.6739130Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-11-03T15:55:53.6739820Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-11-03T15:55:53.6740910Z adding 'torch/include/ATen/CPUFunctions.h' 2025-11-03T15:55:53.6744160Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-11-03T15:55:53.6744970Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-11-03T15:55:53.6746060Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-11-03T15:55:53.6749660Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-11-03T15:55:53.6750480Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-11-03T15:55:53.6751710Z adding 'torch/include/ATen/CollapseDims.h' 2025-11-03T15:55:53.6752840Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-11-03T15:55:53.6756700Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-11-03T15:55:53.6757740Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-11-03T15:55:53.6760380Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-11-03T15:55:53.6761230Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-11-03T15:55:53.6764650Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-11-03T15:55:53.6765660Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-11-03T15:55:53.6766600Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-11-03T15:55:53.6767360Z adding 'torch/include/ATen/Config.h' 2025-11-03T15:55:53.6772200Z adding 'torch/include/ATen/Context.h' 2025-11-03T15:55:53.6773230Z adding 'torch/include/ATen/DLConvertor.h' 2025-11-03T15:55:53.6774090Z adding 'torch/include/ATen/DTensorState.h' 2025-11-03T15:55:53.6774830Z adding 'torch/include/ATen/Device.h' 2025-11-03T15:55:53.6776170Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-11-03T15:55:53.6777120Z adding 'torch/include/ATen/DeviceGuard.h' 2025-11-03T15:55:53.6777860Z adding 'torch/include/ATen/DimVector.h' 2025-11-03T15:55:53.6778600Z adding 'torch/include/ATen/Dimname.h' 2025-11-03T15:55:53.6783870Z adding 'torch/include/ATen/Dispatch.h' 2025-11-03T15:55:53.6788560Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-11-03T15:55:53.6789520Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-11-03T15:55:53.6790690Z adding 'torch/include/ATen/EmptyTensor.h' 2025-11-03T15:55:53.6791650Z adding 'torch/include/ATen/ExpandBase.h' 2025-11-03T15:55:53.6794730Z adding 'torch/include/ATen/ExpandUtils.h' 2025-11-03T15:55:53.6795250Z adding 'torch/include/ATen/Formatting.h' 2025-11-03T15:55:53.6796330Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-11-03T15:55:53.6799150Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-11-03T15:55:53.6803100Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-11-03T15:55:53.6803900Z adding 'torch/include/ATen/FunctionalizeFallbackKernel.h' 2025-11-03T15:55:53.6810480Z adding 'torch/include/ATen/Functions.h' 2025-11-03T15:55:53.6811280Z adding 'torch/include/ATen/Generator.h' 2025-11-03T15:55:53.6812790Z adding 'torch/include/ATen/InferSize.h' 2025-11-03T15:55:53.6813630Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-11-03T15:55:53.6814330Z adding 'torch/include/ATen/Layout.h' 2025-11-03T15:55:53.6815280Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-11-03T15:55:53.6817410Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-11-03T15:55:53.6818020Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-11-03T15:55:53.6820470Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-11-03T15:55:53.6821110Z adding 'torch/include/ATen/LinalgBackend.h' 2025-11-03T15:55:53.6822170Z adding 'torch/include/ATen/MPSFunctions.h' 2025-11-03T15:55:53.6824750Z adding 'torch/include/ATen/MPSFunctions_inl.h' 2025-11-03T15:55:53.6825830Z adding 'torch/include/ATen/MapAllocator.h' 2025-11-03T15:55:53.6827050Z adding 'torch/include/ATen/MatrixRef.h' 2025-11-03T15:55:53.6828020Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-11-03T15:55:53.6829040Z adding 'torch/include/ATen/MetaFunctions.h' 2025-11-03T15:55:53.6831310Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-11-03T15:55:53.6833460Z adding 'torch/include/ATen/MethodOperators.h' 2025-11-03T15:55:53.6833960Z adding 'torch/include/ATen/NamedTensor.h' 2025-11-03T15:55:53.6835990Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-11-03T15:55:53.6842080Z adding 'torch/include/ATen/NativeFunctions.h' 2025-11-03T15:55:53.6848100Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-11-03T15:55:53.6850890Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-11-03T15:55:53.6851880Z adding 'torch/include/ATen/NumericUtils.h' 2025-11-03T15:55:53.6852990Z adding 'torch/include/ATen/OpMathType.h' 2025-11-03T15:55:53.6854970Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-11-03T15:55:53.6861170Z adding 'torch/include/ATen/Operators.h' 2025-11-03T15:55:53.6861990Z adding 'torch/include/ATen/PTThreadPool.h' 2025-11-03T15:55:53.6862750Z adding 'torch/include/ATen/PadNd.h' 2025-11-03T15:55:53.6863820Z adding 'torch/include/ATen/Parallel-inl.h' 2025-11-03T15:55:53.6865630Z adding 'torch/include/ATen/Parallel.h' 2025-11-03T15:55:53.6866190Z adding 'torch/include/ATen/ParallelFuture.h' 2025-11-03T15:55:53.6867020Z adding 'torch/include/ATen/ParallelNative.h' 2025-11-03T15:55:53.6867980Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-11-03T15:55:53.6868970Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-11-03T15:55:53.6869800Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-11-03T15:55:53.7045240Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-11-03T15:55:53.7143990Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-11-03T15:55:53.7149380Z adding 'torch/include/ATen/SDPBackend.h' 2025-11-03T15:55:53.7150480Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-11-03T15:55:53.7151270Z adding 'torch/include/ATen/Scalar.h' 2025-11-03T15:55:53.7152390Z adding 'torch/include/ATen/ScalarOps.h' 2025-11-03T15:55:53.7153220Z adding 'torch/include/ATen/ScalarType.h' 2025-11-03T15:55:53.7154060Z adding 'torch/include/ATen/SequenceNumber.h' 2025-11-03T15:55:53.7154820Z adding 'torch/include/ATen/SmallVector.h' 2025-11-03T15:55:53.7155950Z adding 'torch/include/ATen/SparseCsrMPSFunctions.h' 2025-11-03T15:55:53.7156920Z adding 'torch/include/ATen/SparseCsrMPSFunctions_inl.h' 2025-11-03T15:55:53.7159140Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-11-03T15:55:53.7162140Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-11-03T15:55:53.7163030Z adding 'torch/include/ATen/SparseMPSFunctions.h' 2025-11-03T15:55:53.7164220Z adding 'torch/include/ATen/SparseMPSFunctions_inl.h' 2025-11-03T15:55:53.7167620Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-11-03T15:55:53.7168150Z adding 'torch/include/ATen/Storage.h' 2025-11-03T15:55:53.7169150Z adding 'torch/include/ATen/StorageUtils.h' 2025-11-03T15:55:53.7169890Z adding 'torch/include/ATen/Tensor.h' 2025-11-03T15:55:53.7170610Z adding 'torch/include/ATen/TensorAccessor.h' 2025-11-03T15:55:53.7172040Z adding 'torch/include/ATen/TensorGeometry.h' 2025-11-03T15:55:53.7177760Z adding 'torch/include/ATen/TensorIndexing.h' 2025-11-03T15:55:53.7186510Z adding 'torch/include/ATen/TensorIterator.h' 2025-11-03T15:55:53.7187520Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-11-03T15:55:53.7189050Z adding 'torch/include/ATen/TensorMeta.h' 2025-11-03T15:55:53.7190380Z adding 'torch/include/ATen/TensorNames.h' 2025-11-03T15:55:53.7191430Z adding 'torch/include/ATen/TensorOperators.h' 2025-11-03T15:55:53.7192190Z adding 'torch/include/ATen/TensorOptions.h' 2025-11-03T15:55:53.7193550Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-11-03T15:55:53.7195040Z adding 'torch/include/ATen/TensorUtils.h' 2025-11-03T15:55:53.7195970Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-11-03T15:55:53.7197430Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-11-03T15:55:53.7199540Z adding 'torch/include/ATen/TracerMode.h' 2025-11-03T15:55:53.7199970Z adding 'torch/include/ATen/TypeDefault.h' 2025-11-03T15:55:53.7201310Z adding 'torch/include/ATen/Utils.h' 2025-11-03T15:55:53.7202170Z adding 'torch/include/ATen/Version.h' 2025-11-03T15:55:53.7321900Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-11-03T15:55:53.7331310Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-11-03T15:55:53.7332250Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-11-03T15:55:53.7339060Z adding 'torch/include/ATen/autocast_mode.h' 2025-11-03T15:55:53.7339990Z adding 'torch/include/ATen/ceil_div.h' 2025-11-03T15:55:53.7342280Z adding 'torch/include/ATen/code_template.h' 2025-11-03T15:55:53.7343930Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-11-03T15:55:53.7348810Z adding 'torch/include/ATen/div_rtn.h' 2025-11-03T15:55:53.7349080Z adding 'torch/include/ATen/dlpack.h' 2025-11-03T15:55:53.7349270Z adding 'torch/include/ATen/jit_macros.h' 2025-11-03T15:55:53.7349480Z adding 'torch/include/ATen/jiterator_macros.h' 2025-11-03T15:55:53.7354540Z adding 'torch/include/ATen/record_function.h' 2025-11-03T15:55:53.7357040Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-11-03T15:55:53.7357630Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-11-03T15:55:53.7358540Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-11-03T15:55:53.7360000Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-11-03T15:55:53.7360960Z adding 'torch/include/ATen/core/Array.h' 2025-11-03T15:55:53.7361720Z adding 'torch/include/ATen/core/Backtrace.h' 2025-11-03T15:55:53.7368740Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-11-03T15:55:53.7369600Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-11-03T15:55:53.7371140Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-11-03T15:55:53.7372140Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-11-03T15:55:53.7375580Z adding 'torch/include/ATen/core/Dict.h' 2025-11-03T15:55:53.7377490Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-11-03T15:55:53.7377990Z adding 'torch/include/ATen/core/DimVector.h' 2025-11-03T15:55:53.7379000Z adding 'torch/include/ATen/core/Dimname.h' 2025-11-03T15:55:53.7381510Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-11-03T15:55:53.7382170Z adding 'torch/include/ATen/core/Formatting.h' 2025-11-03T15:55:53.7384360Z adding 'torch/include/ATen/core/Generator.h' 2025-11-03T15:55:53.7385120Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-11-03T15:55:53.7389850Z adding 'torch/include/ATen/core/IListRef.h' 2025-11-03T15:55:53.7391180Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-11-03T15:55:53.7393160Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-11-03T15:55:53.7396280Z adding 'torch/include/ATen/core/List.h' 2025-11-03T15:55:53.7398540Z adding 'torch/include/ATen/core/List_inl.h' 2025-11-03T15:55:53.7400630Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-11-03T15:55:53.7401920Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-11-03T15:55:53.7403910Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-11-03T15:55:53.7406000Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-11-03T15:55:53.7406730Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-11-03T15:55:53.7407650Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-11-03T15:55:53.7408800Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-11-03T15:55:53.7409670Z adding 'torch/include/ATen/core/Range.h' 2025-11-03T15:55:53.7410450Z adding 'torch/include/ATen/core/Reduction.h' 2025-11-03T15:55:53.7411200Z adding 'torch/include/ATen/core/Scalar.h' 2025-11-03T15:55:53.7411930Z adding 'torch/include/ATen/core/ScalarType.h' 2025-11-03T15:55:53.7413070Z adding 'torch/include/ATen/core/Tensor.h' 2025-11-03T15:55:53.7415310Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-11-03T15:55:53.7424210Z adding 'torch/include/ATen/core/TensorBase.h' 2025-11-03T15:55:53.7458920Z adding 'torch/include/ATen/core/TensorBody.h' 2025-11-03T15:55:53.7461350Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-11-03T15:55:53.7462780Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-11-03T15:55:53.7463570Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-11-03T15:55:53.7464460Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-11-03T15:55:53.7465820Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-11-03T15:55:53.7466930Z adding 'torch/include/ATen/core/Variadic.h' 2025-11-03T15:55:53.7468180Z adding 'torch/include/ATen/core/Vitals.h' 2025-11-03T15:55:53.7470110Z adding 'torch/include/ATen/core/alias_info.h' 2025-11-03T15:55:53.7479400Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-11-03T15:55:53.7481460Z adding 'torch/include/ATen/core/blob.h' 2025-11-03T15:55:53.7482350Z adding 'torch/include/ATen/core/builtin_function.h' 2025-11-03T15:55:53.7485720Z adding 'torch/include/ATen/core/class_type.h' 2025-11-03T15:55:53.7486460Z adding 'torch/include/ATen/core/custom_class.h' 2025-11-03T15:55:53.7489280Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-11-03T15:55:53.7489920Z adding 'torch/include/ATen/core/enum_tag.h' 2025-11-03T15:55:53.7491170Z adding 'torch/include/ATen/core/enum_type.h' 2025-11-03T15:55:53.7492560Z adding 'torch/include/ATen/core/function.h' 2025-11-03T15:55:53.7498330Z adding 'torch/include/ATen/core/function_schema.h' 2025-11-03T15:55:53.7499300Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-11-03T15:55:53.7500300Z adding 'torch/include/ATen/core/functional.h' 2025-11-03T15:55:53.7501100Z adding 'torch/include/ATen/core/grad_mode.h' 2025-11-03T15:55:53.7504150Z adding 'torch/include/ATen/core/interned_strings.h' 2025-11-03T15:55:53.7504860Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-11-03T15:55:53.7517090Z adding 'torch/include/ATen/core/ivalue.h' 2025-11-03T15:55:53.7535310Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-11-03T15:55:53.7536380Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-11-03T15:55:53.7550500Z adding 'torch/include/ATen/core/jit_type.h' 2025-11-03T15:55:53.7554850Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-11-03T15:55:53.7556020Z adding 'torch/include/ATen/core/operator_name.h' 2025-11-03T15:55:53.7557990Z adding 'torch/include/ATen/core/qualified_name.h' 2025-11-03T15:55:53.7558650Z adding 'torch/include/ATen/core/rref_interface.h' 2025-11-03T15:55:53.7560890Z adding 'torch/include/ATen/core/stack.h' 2025-11-03T15:55:53.7562690Z adding 'torch/include/ATen/core/symbol.h' 2025-11-03T15:55:53.7563720Z adding 'torch/include/ATen/core/type_factory.h' 2025-11-03T15:55:53.7564650Z adding 'torch/include/ATen/core/type_ptr.h' 2025-11-03T15:55:53.7565440Z adding 'torch/include/ATen/core/typeid.h' 2025-11-03T15:55:53.7568390Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-11-03T15:55:53.7569360Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-11-03T15:55:53.7571940Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-11-03T15:55:53.7574780Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-11-03T15:55:53.7575440Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-11-03T15:55:53.7576890Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-11-03T15:55:53.7577920Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-11-03T15:55:53.7580930Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-11-03T15:55:53.7586270Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-11-03T15:55:53.7587440Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-11-03T15:55:53.7588960Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-11-03T15:55:53.7591890Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-11-03T15:55:53.7599540Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-11-03T15:55:53.7600340Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-11-03T15:55:53.7603860Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-11-03T15:55:53.7604670Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-11-03T15:55:53.7605540Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-11-03T15:55:53.7607000Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-11-03T15:55:53.7608830Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-11-03T15:55:53.7611570Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-11-03T15:55:53.7616010Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-11-03T15:55:53.7616970Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-11-03T15:55:53.7617820Z adding 'torch/include/ATen/cpu/Utils.h' 2025-11-03T15:55:53.7619840Z adding 'torch/include/ATen/cpu/vml.h' 2025-11-03T15:55:53.7620830Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-11-03T15:55:53.7623320Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-11-03T15:55:53.7626450Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-11-03T15:55:53.7627050Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-11-03T15:55:53.7628010Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-11-03T15:55:53.7635720Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-11-03T15:55:53.7636800Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-11-03T15:55:53.7638040Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-11-03T15:55:53.7640470Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-11-03T15:55:53.7642810Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-11-03T15:55:53.7644390Z adding 'torch/include/ATen/cpu/vec/vec_quant.h' 2025-11-03T15:55:53.7646040Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-11-03T15:55:53.7649500Z adding 'torch/include/ATen/cpu/vec/sve/vec_bfloat16.h' 2025-11-03T15:55:53.7651040Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-11-03T15:55:53.7654150Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-11-03T15:55:53.7658010Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-11-03T15:55:53.7661160Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-11-03T15:55:53.7664340Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-11-03T15:55:53.7665340Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-11-03T15:55:53.7669410Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-11-03T15:55:53.7671460Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-11-03T15:55:53.7674140Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_double_neon.h' 2025-11-03T15:55:53.7677670Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-11-03T15:55:53.7680920Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-11-03T15:55:53.7684700Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_int_aarch64.h' 2025-11-03T15:55:53.7686810Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-11-03T15:55:53.7689390Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_uint_aarch64.h' 2025-11-03T15:55:53.7690330Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-11-03T15:55:53.7691070Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-11-03T15:55:53.7693670Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-11-03T15:55:53.7698070Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-11-03T15:55:53.7700130Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-11-03T15:55:53.7703780Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-11-03T15:55:53.7707810Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-11-03T15:55:53.7710030Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-11-03T15:55:53.7712500Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-11-03T15:55:53.7717040Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-11-03T15:55:53.7719180Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-11-03T15:55:53.7727560Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-11-03T15:55:53.7729990Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-11-03T15:55:53.7736430Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-11-03T15:55:53.7738020Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-11-03T15:55:53.7740310Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-11-03T15:55:53.7744450Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-11-03T15:55:53.7749030Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-11-03T15:55:53.7751880Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-11-03T15:55:53.7754760Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-11-03T15:55:53.7757190Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-11-03T15:55:53.7759250Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-11-03T15:55:53.7761300Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-11-03T15:55:53.7763500Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-11-03T15:55:53.7766520Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-11-03T15:55:53.7769700Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-11-03T15:55:53.7773620Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-11-03T15:55:53.7788630Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-11-03T15:55:53.7791520Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-11-03T15:55:53.7802270Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-11-03T15:55:53.7807000Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-11-03T15:55:53.7812610Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-11-03T15:55:53.7814710Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-11-03T15:55:53.7817310Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-11-03T15:55:53.7822230Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-11-03T15:55:53.7826150Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float8.h' 2025-11-03T15:55:53.7833590Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-11-03T15:55:53.7836050Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-11-03T15:55:53.7842370Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-11-03T15:55:53.7843730Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-11-03T15:55:53.7844780Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-11-03T15:55:53.7845950Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-11-03T15:55:53.7849670Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-11-03T15:55:53.7853870Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-11-03T15:55:53.7856230Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-11-03T15:55:53.7856850Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-11-03T15:55:53.7858100Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-11-03T15:55:53.7859200Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-11-03T15:55:53.7860090Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-11-03T15:55:53.7863150Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-11-03T15:55:53.7865230Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-11-03T15:55:53.7866250Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-11-03T15:55:53.7867390Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-11-03T15:55:53.7868280Z adding 'torch/include/ATen/cuda/CUDAGreenContext.h' 2025-11-03T15:55:53.7869670Z adding 'torch/include/ATen/cuda/CUDAScaledBlas.h' 2025-11-03T15:55:53.7870600Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-11-03T15:55:53.7872780Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-11-03T15:55:53.7874170Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-11-03T15:55:53.7875040Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-11-03T15:55:53.7875840Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-11-03T15:55:53.7876980Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-11-03T15:55:53.7878100Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-11-03T15:55:53.7878980Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-11-03T15:55:53.7881290Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-11-03T15:55:53.7882320Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-11-03T15:55:53.7883200Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-11-03T15:55:53.7883940Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-11-03T15:55:53.7884700Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-11-03T15:55:53.7885520Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-11-03T15:55:53.7886600Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-11-03T15:55:53.7887400Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-11-03T15:55:53.7888250Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-11-03T15:55:53.7889390Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-11-03T15:55:53.7893290Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-11-03T15:55:53.7894380Z adding 'torch/include/ATen/cuda/cub.h' 2025-11-03T15:55:53.7895290Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-11-03T15:55:53.7896160Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-11-03T15:55:53.7898170Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-11-03T15:55:53.7898630Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-11-03T15:55:53.7899850Z adding 'torch/include/ATen/cuda/detail/BLASConstants.h' 2025-11-03T15:55:53.7900980Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-11-03T15:55:53.7903480Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-11-03T15:55:53.7904120Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-11-03T15:55:53.7905630Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-11-03T15:55:53.7906650Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-11-03T15:55:53.7907420Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-11-03T15:55:53.7908950Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-11-03T15:55:53.7909980Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-11-03T15:55:53.7911160Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-11-03T15:55:53.7912240Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-11-03T15:55:53.7915900Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-11-03T15:55:53.7919450Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-11-03T15:55:53.7921180Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-11-03T15:55:53.7922120Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-11-03T15:55:53.7924380Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-11-03T15:55:53.7925880Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-11-03T15:55:53.7929280Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-11-03T15:55:53.7932830Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-11-03T15:55:53.7933560Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-11-03T15:55:53.7934360Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-11-03T15:55:53.7935200Z adding 'torch/include/ATen/cudnn/Types.h' 2025-11-03T15:55:53.7936040Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-11-03T15:55:53.7936950Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-11-03T15:55:53.7938520Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-11-03T15:55:53.7940340Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-11-03T15:55:53.7941340Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-11-03T15:55:53.7942420Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-11-03T15:55:53.7943400Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-11-03T15:55:53.7944330Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-11-03T15:55:53.7945300Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-11-03T15:55:53.7946490Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-11-03T15:55:53.7947860Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-11-03T15:55:53.7949030Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-11-03T15:55:53.7950050Z adding 'torch/include/ATen/detail/XLAHooksInterface.h' 2025-11-03T15:55:53.7951110Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-11-03T15:55:53.7952460Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-11-03T15:55:53.7955980Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-11-03T15:55:53.7957030Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-11-03T15:55:53.7959170Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-11-03T15:55:53.7960410Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-11-03T15:55:53.7961970Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-11-03T15:55:53.7962930Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-11-03T15:55:53.7966090Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-11-03T15:55:53.7968460Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-11-03T15:55:53.7969010Z adding 'torch/include/ATen/functorch/Macros.h' 2025-11-03T15:55:53.7970300Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-11-03T15:55:53.7971790Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-11-03T15:55:53.7972720Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-11-03T15:55:53.7975210Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-11-03T15:55:53.7976490Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-11-03T15:55:53.7979690Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-11-03T15:55:53.7980930Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-11-03T15:55:53.7981970Z adding 'torch/include/ATen/metal/Context.h' 2025-11-03T15:55:53.7984360Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-11-03T15:55:53.7985090Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-11-03T15:55:53.7985890Z adding 'torch/include/ATen/miopen/Handle.h' 2025-11-03T15:55:53.7986740Z adding 'torch/include/ATen/miopen/Types.h' 2025-11-03T15:55:53.7987550Z adding 'torch/include/ATen/miopen/Utils.h' 2025-11-03T15:55:53.7988420Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-11-03T15:55:53.7989560Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-11-03T15:55:53.7991090Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-11-03T15:55:53.7995950Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-11-03T15:55:53.7996970Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-11-03T15:55:53.7998000Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-11-03T15:55:53.7999390Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-11-03T15:55:53.8000430Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-11-03T15:55:53.8001990Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-11-03T15:55:53.8003040Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-11-03T15:55:53.8007060Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-11-03T15:55:53.8008260Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-11-03T15:55:53.8010750Z adding 'torch/include/ATen/native/Activation.h' 2025-11-03T15:55:53.8011620Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-11-03T15:55:53.8012560Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-11-03T15:55:53.8014730Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-11-03T15:55:53.8016070Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-11-03T15:55:53.8018170Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-11-03T15:55:53.8019500Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-11-03T15:55:53.8020670Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-11-03T15:55:53.8021560Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-11-03T15:55:53.8022930Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-11-03T15:55:53.8023840Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-11-03T15:55:53.8030350Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-11-03T15:55:53.8030690Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-11-03T15:55:53.8030930Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-11-03T15:55:53.8031160Z adding 'torch/include/ATen/native/Copy.h' 2025-11-03T15:55:53.8031500Z adding 'torch/include/ATen/native/Cross.h' 2025-11-03T15:55:53.8033520Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-11-03T15:55:53.8036240Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-11-03T15:55:53.8036890Z adding 'torch/include/ATen/native/Distance.h' 2025-11-03T15:55:53.8040400Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-11-03T15:55:53.8045130Z adding 'torch/include/ATen/native/Distributions.h' 2025-11-03T15:55:53.8046420Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-11-03T15:55:53.8047270Z adding 'torch/include/ATen/native/Fill.h' 2025-11-03T15:55:53.8050660Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-11-03T15:55:53.8051580Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-11-03T15:55:53.8052400Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-11-03T15:55:53.8053210Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-11-03T15:55:53.8054070Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-11-03T15:55:53.8054890Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-11-03T15:55:53.8055770Z adding 'torch/include/ATen/native/Gelu.h' 2025-11-03T15:55:53.8058120Z adding 'torch/include/ATen/native/GridSampler.h' 2025-11-03T15:55:53.8059110Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-11-03T15:55:53.8061150Z adding 'torch/include/ATen/native/GroupedMMUtils.h' 2025-11-03T15:55:53.8061690Z adding 'torch/include/ATen/native/Histogram.h' 2025-11-03T15:55:53.8062660Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-11-03T15:55:53.8064680Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-11-03T15:55:53.8065460Z adding 'torch/include/ATen/native/Lerp.h' 2025-11-03T15:55:53.8066370Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-11-03T15:55:53.8072720Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-11-03T15:55:53.8073710Z adding 'torch/include/ATen/native/LossMulti.h' 2025-11-03T15:55:53.8103390Z adding 'torch/include/ATen/native/Math.h' 2025-11-03T15:55:53.8105500Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-11-03T15:55:53.8107630Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-11-03T15:55:53.8108730Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-11-03T15:55:53.8109710Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-11-03T15:55:53.8110960Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-11-03T15:55:53.8111920Z adding 'torch/include/ATen/native/Normalization.h' 2025-11-03T15:55:53.8113000Z adding 'torch/include/ATen/native/Padding.h' 2025-11-03T15:55:53.8114040Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-11-03T15:55:53.8114940Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-11-03T15:55:53.8117890Z adding 'torch/include/ATen/native/Pool.h' 2025-11-03T15:55:53.8118690Z adding 'torch/include/ATen/native/Pow.h' 2025-11-03T15:55:53.8119790Z adding 'torch/include/ATen/native/RNN.h' 2025-11-03T15:55:53.8120720Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-11-03T15:55:53.8121950Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-11-03T15:55:53.8122840Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-11-03T15:55:53.8123890Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-11-03T15:55:53.8127350Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-11-03T15:55:53.8128150Z adding 'torch/include/ATen/native/ReductionType.h' 2025-11-03T15:55:53.8129190Z adding 'torch/include/ATen/native/Repeat.h' 2025-11-03T15:55:53.8131690Z adding 'torch/include/ATen/native/Resize.h' 2025-11-03T15:55:53.8132660Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-11-03T15:55:53.8133990Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-11-03T15:55:53.8134840Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-11-03T15:55:53.8137660Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-11-03T15:55:53.8138550Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-11-03T15:55:53.8139360Z adding 'torch/include/ATen/native/Sorting.h' 2025-11-03T15:55:53.8140410Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-11-03T15:55:53.8142550Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-11-03T15:55:53.8143550Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-11-03T15:55:53.8145510Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-11-03T15:55:53.8146420Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-11-03T15:55:53.8147780Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-11-03T15:55:53.8148670Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-11-03T15:55:53.8149630Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-11-03T15:55:53.8150720Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-11-03T15:55:53.8152720Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-11-03T15:55:53.8153190Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-11-03T15:55:53.8154330Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-11-03T15:55:53.8155120Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-11-03T15:55:53.8156860Z adding 'torch/include/ATen/native/TensorShape.h' 2025-11-03T15:55:53.8157710Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-11-03T15:55:53.8158920Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-11-03T15:55:53.8159780Z adding 'torch/include/ATen/native/TransposeType.h' 2025-11-03T15:55:53.8160890Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-11-03T15:55:53.8161730Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-11-03T15:55:53.8163000Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-11-03T15:55:53.8163880Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-11-03T15:55:53.8164870Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-11-03T15:55:53.8166180Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-11-03T15:55:53.8170230Z adding 'torch/include/ATen/native/UpSample.h' 2025-11-03T15:55:53.8171090Z adding 'torch/include/ATen/native/batch_norm.h' 2025-11-03T15:55:53.8172030Z adding 'torch/include/ATen/native/group_norm.h' 2025-11-03T15:55:53.8173470Z adding 'torch/include/ATen/native/im2col.h' 2025-11-03T15:55:53.8175390Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-11-03T15:55:53.8176680Z adding 'torch/include/ATen/native/layer_norm.h' 2025-11-03T15:55:53.8177580Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-11-03T15:55:53.8178830Z adding 'torch/include/ATen/native/vol2col.h' 2025-11-03T15:55:53.8181560Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-11-03T15:55:53.8182490Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-11-03T15:55:53.8183820Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-11-03T15:55:53.8185750Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-11-03T15:55:53.8186320Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-11-03T15:55:53.8187220Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-11-03T15:55:53.8188160Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-11-03T15:55:53.8189020Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-11-03T15:55:53.8192000Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-11-03T15:55:53.8192970Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-11-03T15:55:53.8194180Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-11-03T15:55:53.8195240Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-11-03T15:55:53.8196810Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-11-03T15:55:53.8197460Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-11-03T15:55:53.8198630Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-11-03T15:55:53.8199870Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-11-03T15:55:53.8202820Z adding 'torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h' 2025-11-03T15:55:53.8205660Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-11-03T15:55:53.8206300Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-11-03T15:55:53.8207130Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-11-03T15:55:53.8210160Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-11-03T15:55:53.8211960Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-11-03T15:55:53.8213040Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-11-03T15:55:53.8213710Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-11-03T15:55:53.8215640Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-11-03T15:55:53.8216280Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-11-03T15:55:53.8217150Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-11-03T15:55:53.8217950Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-11-03T15:55:53.8227570Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-11-03T15:55:53.8228360Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-11-03T15:55:53.8231870Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-11-03T15:55:53.8232560Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-11-03T15:55:53.8233600Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-11-03T15:55:53.8235680Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-11-03T15:55:53.8237570Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-11-03T15:55:53.8238700Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-11-03T15:55:53.8241430Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-11-03T15:55:53.8242100Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-11-03T15:55:53.8244940Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-11-03T15:55:53.8250840Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-11-03T15:55:53.8251740Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-11-03T15:55:53.8252510Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-11-03T15:55:53.8257150Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-11-03T15:55:53.8257980Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-11-03T15:55:53.8258890Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-11-03T15:55:53.8264200Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-11-03T15:55:53.8264870Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-11-03T15:55:53.8265810Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-11-03T15:55:53.8268590Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-11-03T15:55:53.8269300Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-11-03T15:55:53.8271630Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-11-03T15:55:53.8272270Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-11-03T15:55:53.8273120Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-11-03T15:55:53.8275100Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-11-03T15:55:53.8275730Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-11-03T15:55:53.8276720Z adding 'torch/include/ATen/native/cuda/IndexKernelUtils.h' 2025-11-03T15:55:53.8278850Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-11-03T15:55:53.8281660Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-11-03T15:55:53.8282270Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-11-03T15:55:53.8284800Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-11-03T15:55:53.8306390Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-11-03T15:55:53.8311270Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-11-03T15:55:53.8312160Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-11-03T15:55:53.8315040Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-11-03T15:55:53.8326340Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-11-03T15:55:53.8329700Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-11-03T15:55:53.8330640Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-11-03T15:55:53.8331820Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-11-03T15:55:53.8342650Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-11-03T15:55:53.8343420Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-11-03T15:55:53.8344570Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-11-03T15:55:53.8345410Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-11-03T15:55:53.8346250Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-11-03T15:55:53.8347080Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-11-03T15:55:53.8350990Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-11-03T15:55:53.8351660Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-11-03T15:55:53.8352480Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-11-03T15:55:53.8355350Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-11-03T15:55:53.8355830Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-11-03T15:55:53.8357720Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-11-03T15:55:53.8360490Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-11-03T15:55:53.8364240Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-11-03T15:55:53.8364840Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-11-03T15:55:53.8365610Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-11-03T15:55:53.8366430Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-11-03T15:55:53.8369060Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-11-03T15:55:53.8370130Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-11-03T15:55:53.8372210Z adding 'torch/include/ATen/native/cuda/cuBlasCommonArgs.h' 2025-11-03T15:55:53.8372870Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-11-03T15:55:53.8373720Z adding 'torch/include/ATen/native/cuda/fused_adagrad_impl.cuh' 2025-11-03T15:55:53.8375160Z adding 'torch/include/ATen/native/cuda/fused_adagrad_utils.cuh' 2025-11-03T15:55:53.8376030Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-11-03T15:55:53.8376820Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-11-03T15:55:53.8378930Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-11-03T15:55:53.8379570Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-11-03T15:55:53.8380350Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-11-03T15:55:53.8382590Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-11-03T15:55:53.8384340Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-11-03T15:55:53.8388690Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-11-03T15:55:53.8389390Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-11-03T15:55:53.8391750Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-11-03T15:55:53.8392690Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-11-03T15:55:53.8393620Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-11-03T15:55:53.8396200Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-11-03T15:55:53.8397010Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-11-03T15:55:53.8398680Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-11-03T15:55:53.8400550Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-11-03T15:55:53.8401310Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-11-03T15:55:53.8402430Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-11-03T15:55:53.8403740Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-11-03T15:55:53.8404950Z adding 'torch/include/ATen/native/metal/MetalCommandBuffer.h' 2025-11-03T15:55:53.8405830Z adding 'torch/include/ATen/native/metal/MetalContext.h' 2025-11-03T15:55:53.8406840Z adding 'torch/include/ATen/native/metal/MetalConvParams.h' 2025-11-03T15:55:53.8407800Z adding 'torch/include/ATen/native/metal/MetalDevice.h' 2025-11-03T15:55:53.8408870Z adding 'torch/include/ATen/native/metal/MetalNeuronType.h' 2025-11-03T15:55:53.8410180Z adding 'torch/include/ATen/native/metal/MetalPrepackOpContext.h' 2025-11-03T15:55:53.8415950Z adding 'torch/include/ATen/native/metal/MetalShaders.h' 2025-11-03T15:55:53.8416890Z adding 'torch/include/ATen/native/metal/MetalTensorImpl.h' 2025-11-03T15:55:53.8417800Z adding 'torch/include/ATen/native/metal/MetalTensorImplStorage.h' 2025-11-03T15:55:53.8418930Z adding 'torch/include/ATen/native/metal/MetalTensorUtils.h' 2025-11-03T15:55:53.8420100Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h' 2025-11-03T15:55:53.8421030Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h' 2025-11-03T15:55:53.8421930Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h' 2025-11-03T15:55:53.8422740Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h' 2025-11-03T15:55:53.8423580Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h' 2025-11-03T15:55:53.8424840Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h' 2025-11-03T15:55:53.8425670Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImage+Tensor.h' 2025-11-03T15:55:53.8426830Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h' 2025-11-03T15:55:53.8427790Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h' 2025-11-03T15:55:53.8429020Z adding 'torch/include/ATen/native/metal/mpscnn/tests/MPSCNNTests.h' 2025-11-03T15:55:53.8429910Z adding 'torch/include/ATen/native/metal/mpscnn/tests/MetalOpTestRunner.h' 2025-11-03T15:55:53.8430940Z adding 'torch/include/ATen/native/metal/ops/MetalConvolution.h' 2025-11-03T15:55:53.8431730Z adding 'torch/include/ATen/native/metal/ops/MetalCopy.h' 2025-11-03T15:55:53.8433340Z adding 'torch/include/ATen/native/mkldnn/xpu/Conv.h' 2025-11-03T15:55:53.8434240Z adding 'torch/include/ATen/native/mkldnn/xpu/FusionUtils.h' 2025-11-03T15:55:53.8435280Z adding 'torch/include/ATen/native/mkldnn/xpu/qconv.h' 2025-11-03T15:55:53.8436320Z adding 'torch/include/ATen/native/mkldnn/xpu/qlinear.h' 2025-11-03T15:55:53.8440360Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-11-03T15:55:53.8443860Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h' 2025-11-03T15:55:53.8444840Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h' 2025-11-03T15:55:53.8446240Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-11-03T15:55:53.8447630Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-11-03T15:55:53.8448830Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-11-03T15:55:53.8449850Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-11-03T15:55:53.8450910Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-11-03T15:55:53.8452810Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-11-03T15:55:53.8457370Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-11-03T15:55:53.8458430Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-11-03T15:55:53.8459750Z adding 'torch/include/ATen/native/mps/kernels/EmbeddingBag.h' 2025-11-03T15:55:53.8460660Z adding 'torch/include/ATen/native/mps/kernels/GridSampler.h' 2025-11-03T15:55:53.8461490Z adding 'torch/include/ATen/native/mps/kernels/LinearAlgebra.h' 2025-11-03T15:55:53.8462470Z adding 'torch/include/ATen/native/mps/kernels/Pooling.h' 2025-11-03T15:55:53.8463350Z adding 'torch/include/ATen/native/mps/kernels/Shape.h' 2025-11-03T15:55:53.8464190Z adding 'torch/include/ATen/native/mps/kernels/UpSample.h' 2025-11-03T15:55:53.8465300Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-11-03T15:55:53.8466200Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-11-03T15:55:53.8467040Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-11-03T15:55:53.8467900Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-11-03T15:55:53.8468680Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-11-03T15:55:53.8471630Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-11-03T15:55:53.8472510Z adding 'torch/include/ATen/native/mtia/EmptyTensor.h' 2025-11-03T15:55:53.8473590Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-11-03T15:55:53.8474850Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-11-03T15:55:53.8476020Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-11-03T15:55:53.8476940Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-11-03T15:55:53.8480570Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-11-03T15:55:53.8481730Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-11-03T15:55:53.8482770Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-11-03T15:55:53.8483760Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-11-03T15:55:53.8484590Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-11-03T15:55:53.8485580Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-11-03T15:55:53.8486400Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-11-03T15:55:53.8487620Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-11-03T15:55:53.8488410Z adding 'torch/include/ATen/native/quantized/library.h' 2025-11-03T15:55:53.8490960Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-11-03T15:55:53.8491530Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-11-03T15:55:53.8492510Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-11-03T15:55:53.8495360Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-11-03T15:55:53.8498750Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-11-03T15:55:53.8501120Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-11-03T15:55:53.8502890Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-11-03T15:55:53.8503570Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-11-03T15:55:53.8506300Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-11-03T15:55:53.8508930Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-11-03T15:55:53.8511180Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-11-03T15:55:53.8511770Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-11-03T15:55:53.8512840Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-11-03T15:55:53.8513790Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-11-03T15:55:53.8514630Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-11-03T15:55:53.8515610Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-11-03T15:55:53.8518210Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-11-03T15:55:53.8519330Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-11-03T15:55:53.8520620Z adding 'torch/include/ATen/native/transformers/sdp_utils.h' 2025-11-03T15:55:53.8524170Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-11-03T15:55:53.8525120Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-11-03T15:55:53.8527070Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-11-03T15:55:53.8527970Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-11-03T15:55:53.8530500Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-11-03T15:55:53.8532300Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-11-03T15:55:53.8550670Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-11-03T15:55:53.8562150Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-11-03T15:55:53.8563140Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-11-03T15:55:53.8567740Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-11-03T15:55:53.8569830Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-11-03T15:55:53.8571300Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-11-03T15:55:53.8572710Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-11-03T15:55:53.8574890Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-11-03T15:55:53.8579540Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-11-03T15:55:53.8582730Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-11-03T15:55:53.8584050Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-11-03T15:55:53.8586660Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-11-03T15:55:53.8599240Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-11-03T15:55:53.8601510Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-11-03T15:55:53.8605280Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-11-03T15:55:53.8606240Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-11-03T15:55:53.8612890Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-11-03T15:55:53.8618700Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-11-03T15:55:53.8619610Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-11-03T15:55:53.8622240Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-11-03T15:55:53.8629940Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-11-03T15:55:53.8632740Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-11-03T15:55:53.8634050Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-11-03T15:55:53.8635990Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-11-03T15:55:53.8636630Z adding 'torch/include/ATen/native/transformers/hip/aotriton_versions.h' 2025-11-03T15:55:53.8637640Z adding 'torch/include/ATen/native/transformers/hip/gemm_kernel_utils.h' 2025-11-03T15:55:53.8640810Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-11-03T15:55:53.8641790Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-11-03T15:55:53.8642850Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-11-03T15:55:53.8643810Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-11-03T15:55:53.8645030Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-11-03T15:55:53.8707440Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-11-03T15:55:53.8708250Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-11-03T15:55:53.8709410Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8710290Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-11-03T15:55:53.8711180Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-11-03T15:55:53.8712030Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h' 2025-11-03T15:55:53.8712920Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-11-03T15:55:53.8713960Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-11-03T15:55:53.8714980Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8715880Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-11-03T15:55:53.8716660Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-11-03T15:55:53.8717500Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h' 2025-11-03T15:55:53.8718400Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-11-03T15:55:53.8719380Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-11-03T15:55:53.8720460Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-11-03T15:55:53.8721440Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-11-03T15:55:53.8722490Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8723310Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-11-03T15:55:53.8724120Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-11-03T15:55:53.8724980Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-11-03T15:55:53.8725960Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-11-03T15:55:53.8726930Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8727720Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-11-03T15:55:53.8728540Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-11-03T15:55:53.8729470Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-11-03T15:55:53.8730410Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-11-03T15:55:53.8731270Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-11-03T15:55:53.8732230Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8733020Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-11-03T15:55:53.8733980Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-11-03T15:55:53.8734990Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-11-03T15:55:53.8736010Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8736850Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-11-03T15:55:53.8737720Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-11-03T15:55:53.8738600Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-11-03T15:55:53.8739750Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-11-03T15:55:53.8742050Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-11-03T15:55:53.8742680Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.8743610Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-11-03T15:55:53.8744440Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-11-03T15:55:53.8745300Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-11-03T15:55:53.8746210Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-11-03T15:55:53.8747060Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-11-03T15:55:53.8748090Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-11-03T15:55:53.8749070Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-11-03T15:55:53.8750070Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8750920Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-11-03T15:55:53.8751770Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-11-03T15:55:53.8752670Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-11-03T15:55:53.8753780Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-11-03T15:55:53.8754920Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-11-03T15:55:53.8756200Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8757140Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-11-03T15:55:53.8757970Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-11-03T15:55:53.8758830Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_mps_dispatch.h' 2025-11-03T15:55:53.8759700Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-11-03T15:55:53.8760790Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-11-03T15:55:53.8761770Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-11-03T15:55:53.8762840Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8763700Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-11-03T15:55:53.8764550Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-11-03T15:55:53.8765420Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-11-03T15:55:53.8766260Z adding 'torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h' 2025-11-03T15:55:53.8767170Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-11-03T15:55:53.8768280Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-11-03T15:55:53.8769170Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-11-03T15:55:53.8770070Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-11-03T15:55:53.8770900Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-11-03T15:55:53.8771760Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-11-03T15:55:53.8772700Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-11-03T15:55:53.8773560Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-11-03T15:55:53.8774570Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8775310Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-11-03T15:55:53.8776220Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-11-03T15:55:53.8777270Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-11-03T15:55:53.8778320Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8779170Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-11-03T15:55:53.8780040Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-11-03T15:55:53.8780990Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-11-03T15:55:53.8781820Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-11-03T15:55:53.8782840Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8783660Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-11-03T15:55:53.8784520Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-11-03T15:55:53.8785360Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-11-03T15:55:53.8786380Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8787140Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-11-03T15:55:53.8788070Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-11-03T15:55:53.8788880Z adding 'torch/include/ATen/ops/_backward.h' 2025-11-03T15:55:53.8789850Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8790620Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-11-03T15:55:53.8791580Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-11-03T15:55:53.8792980Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-11-03T15:55:53.8793550Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-11-03T15:55:53.8794550Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8795420Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-11-03T15:55:53.8796340Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-11-03T15:55:53.8797320Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8798090Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-11-03T15:55:53.8799060Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-11-03T15:55:53.8800060Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-11-03T15:55:53.8801140Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8801970Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-11-03T15:55:53.8803020Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-11-03T15:55:53.8804140Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-11-03T15:55:53.8805130Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8806010Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-11-03T15:55:53.8806870Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-11-03T15:55:53.8807740Z adding 'torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h' 2025-11-03T15:55:53.8808690Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-11-03T15:55:53.8809890Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-11-03T15:55:53.8810720Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-11-03T15:55:53.8811670Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8812430Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-11-03T15:55:53.8813330Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-11-03T15:55:53.8814220Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-11-03T15:55:53.8815160Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8815910Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-11-03T15:55:53.8816810Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-11-03T15:55:53.8817660Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-11-03T15:55:53.8818620Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8819400Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-11-03T15:55:53.8820310Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-11-03T15:55:53.8821170Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-11-03T15:55:53.8822120Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8822920Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-11-03T15:55:53.8823770Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-11-03T15:55:53.8824610Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-11-03T15:55:53.8825570Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8826290Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-11-03T15:55:53.8827180Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-11-03T15:55:53.8828010Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-11-03T15:55:53.8828950Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8829680Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-11-03T15:55:53.8830560Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-11-03T15:55:53.8831410Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-11-03T15:55:53.8832350Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8833090Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-11-03T15:55:53.8834010Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-11-03T15:55:53.8834880Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-11-03T15:55:53.8835800Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8836620Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-11-03T15:55:53.8837410Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-11-03T15:55:53.8838360Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-11-03T15:55:53.8839380Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8840190Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-11-03T15:55:53.8841030Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-11-03T15:55:53.8841860Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-11-03T15:55:53.8842830Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-11-03T15:55:53.8843770Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-11-03T15:55:53.8844730Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8845520Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-11-03T15:55:53.8846350Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-11-03T15:55:53.8847160Z adding 'torch/include/ATen/ops/_cdist_forward_mps_dispatch.h' 2025-11-03T15:55:53.8848000Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-11-03T15:55:53.8848960Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-11-03T15:55:53.8849870Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-11-03T15:55:53.8850900Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8851690Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-11-03T15:55:53.8852500Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-11-03T15:55:53.8853330Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-11-03T15:55:53.8854280Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-11-03T15:55:53.8859890Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-11-03T15:55:53.8860280Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8860430Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-11-03T15:55:53.8860620Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-11-03T15:55:53.8860700Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-11-03T15:55:53.8860870Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8861180Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-11-03T15:55:53.8862610Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-11-03T15:55:53.8865100Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-11-03T15:55:53.8865970Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-11-03T15:55:53.8867030Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8867890Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-11-03T15:55:53.8869180Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-11-03T15:55:53.8870280Z adding 'torch/include/ATen/ops/_coalesce_sparsemps_dispatch.h' 2025-11-03T15:55:53.8871190Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-11-03T15:55:53.8872200Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8873290Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-11-03T15:55:53.8874200Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-11-03T15:55:53.8875240Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-11-03T15:55:53.8876190Z adding 'torch/include/ATen/ops/_coalesced_sparsemps_dispatch.h' 2025-11-03T15:55:53.8877340Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-11-03T15:55:53.8878300Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-11-03T15:55:53.8879180Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-11-03T15:55:53.8880050Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-11-03T15:55:53.8881310Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-11-03T15:55:53.8882090Z adding 'torch/include/ATen/ops/_conj.h' 2025-11-03T15:55:53.8883070Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8883900Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-11-03T15:55:53.8885120Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8886070Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.8886820Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-11-03T15:55:53.8887780Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-11-03T15:55:53.8888840Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-11-03T15:55:53.8889760Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-11-03T15:55:53.8890680Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-11-03T15:55:53.8891670Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8892650Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-11-03T15:55:53.8893610Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-11-03T15:55:53.8894530Z adding 'torch/include/ATen/ops/_conj_physical_sparsecsrmps_dispatch.h' 2025-11-03T15:55:53.8895720Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-11-03T15:55:53.8896980Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-11-03T15:55:53.8897860Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-11-03T15:55:53.8898900Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-11-03T15:55:53.8899880Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-11-03T15:55:53.8901170Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.8901990Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-11-03T15:55:53.8902830Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-11-03T15:55:53.8903710Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-11-03T15:55:53.8904790Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-11-03T15:55:53.8905700Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-11-03T15:55:53.8906680Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-11-03T15:55:53.8907640Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-11-03T15:55:53.8909000Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.8909790Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-11-03T15:55:53.8910740Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-11-03T15:55:53.8911720Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-11-03T15:55:53.8912960Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-11-03T15:55:53.8914020Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-11-03T15:55:53.8915150Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-11-03T15:55:53.8916110Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-11-03T15:55:53.8917290Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-11-03T15:55:53.8918180Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-11-03T15:55:53.8919070Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-11-03T15:55:53.8919890Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-11-03T15:55:53.8921030Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-11-03T15:55:53.8921960Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h' 2025-11-03T15:55:53.8922750Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-11-03T15:55:53.8923660Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-11-03T15:55:53.8925580Z adding 'torch/include/ATen/ops/_convolution.h' 2025-11-03T15:55:53.8926490Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8927440Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8928460Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-11-03T15:55:53.8929740Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8930580Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-11-03T15:55:53.8931620Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-11-03T15:55:53.8932570Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-11-03T15:55:53.8933840Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.8934650Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-11-03T15:55:53.8935630Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-11-03T15:55:53.8936540Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-11-03T15:55:53.8937940Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-11-03T15:55:53.8938880Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-11-03T15:55:53.8939790Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-11-03T15:55:53.8940790Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8941830Z adding 'torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h' 2025-11-03T15:55:53.8942690Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-11-03T15:55:53.8943640Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-11-03T15:55:53.8944620Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8945650Z adding 'torch/include/ATen/ops/_copy_from_mps_dispatch.h' 2025-11-03T15:55:53.8946530Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-11-03T15:55:53.8947490Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-11-03T15:55:53.8948380Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-11-03T15:55:53.8949480Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-11-03T15:55:53.8950320Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-11-03T15:55:53.8951280Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-11-03T15:55:53.8952140Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-11-03T15:55:53.8953310Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-11-03T15:55:53.8954190Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-11-03T15:55:53.8955160Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-11-03T15:55:53.8956100Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-11-03T15:55:53.8957270Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-11-03T15:55:53.8958130Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-11-03T15:55:53.8959090Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-11-03T15:55:53.8960120Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-11-03T15:55:53.8961430Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-11-03T15:55:53.8962940Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8963790Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-11-03T15:55:53.8964700Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-11-03T15:55:53.8965790Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-11-03T15:55:53.8966930Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-11-03T15:55:53.8968010Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8968800Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-11-03T15:55:53.8969870Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-11-03T15:55:53.8970790Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-11-03T15:55:53.8971690Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-11-03T15:55:53.8972850Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-11-03T15:55:53.8974230Z adding 'torch/include/ATen/ops/_cudnn_attention_backward.h' 2025-11-03T15:55:53.8975250Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h' 2025-11-03T15:55:53.8976120Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_native.h' 2025-11-03T15:55:53.8977130Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_ops.h' 2025-11-03T15:55:53.8978490Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-11-03T15:55:53.8979580Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-11-03T15:55:53.8980460Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-11-03T15:55:53.8981480Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-11-03T15:55:53.8982720Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-11-03T15:55:53.8983770Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8984610Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-11-03T15:55:53.8985490Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-11-03T15:55:53.8986840Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-11-03T15:55:53.8987890Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-11-03T15:55:53.8989060Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8989880Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-11-03T15:55:53.8990970Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-11-03T15:55:53.8991990Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-11-03T15:55:53.8993890Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-11-03T15:55:53.8995220Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-11-03T15:55:53.8996680Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.8997590Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-11-03T15:55:53.8998550Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-11-03T15:55:53.8999840Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-11-03T15:55:53.9001110Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9002030Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-11-03T15:55:53.9003270Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-11-03T15:55:53.9004340Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9005450Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-11-03T15:55:53.9006360Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-11-03T15:55:53.9007380Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-11-03T15:55:53.9008320Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-11-03T15:55:53.9009750Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-11-03T15:55:53.9010630Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-11-03T15:55:53.9011610Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9012410Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-11-03T15:55:53.9013510Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-11-03T15:55:53.9014460Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-11-03T15:55:53.9015420Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9016210Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-11-03T15:55:53.9017350Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-11-03T15:55:53.9018240Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-11-03T15:55:53.9019250Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9020030Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-11-03T15:55:53.9021170Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-11-03T15:55:53.9022080Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-11-03T15:55:53.9023080Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9023890Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-11-03T15:55:53.9025030Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-11-03T15:55:53.9025880Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-11-03T15:55:53.9026820Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-11-03T15:55:53.9027640Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-11-03T15:55:53.9028700Z adding 'torch/include/ATen/ops/_cummax_helper_mps_dispatch.h' 2025-11-03T15:55:53.9029640Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-11-03T15:55:53.9030520Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-11-03T15:55:53.9031400Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-11-03T15:55:53.9032530Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-11-03T15:55:53.9033370Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-11-03T15:55:53.9034190Z adding 'torch/include/ATen/ops/_cummin_helper_mps_dispatch.h' 2025-11-03T15:55:53.9035020Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-11-03T15:55:53.9036150Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-11-03T15:55:53.9037060Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-11-03T15:55:53.9038050Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9038820Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-11-03T15:55:53.9039940Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-11-03T15:55:53.9040750Z adding 'torch/include/ATen/ops/_dimI.h' 2025-11-03T15:55:53.9041640Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-11-03T15:55:53.9042480Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-11-03T15:55:53.9043500Z adding 'torch/include/ATen/ops/_dimV.h' 2025-11-03T15:55:53.9044370Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-11-03T15:55:53.9045250Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-11-03T15:55:53.9046100Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-11-03T15:55:53.9047260Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9048050Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-11-03T15:55:53.9048950Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-11-03T15:55:53.9049880Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-11-03T15:55:53.9051180Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9052010Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-11-03T15:55:53.9052880Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-11-03T15:55:53.9053700Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-11-03T15:55:53.9054890Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-11-03T15:55:53.9055820Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-11-03T15:55:53.9056800Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-11-03T15:55:53.9057600Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-11-03T15:55:53.9058780Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-11-03T15:55:53.9059730Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-11-03T15:55:53.9060730Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-11-03T15:55:53.9061620Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-11-03T15:55:53.9062780Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-11-03T15:55:53.9064010Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-11-03T15:55:53.9065060Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-11-03T15:55:53.9065980Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-11-03T15:55:53.9067390Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-11-03T15:55:53.9068590Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-11-03T15:55:53.9069700Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-11-03T15:55:53.9070610Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-11-03T15:55:53.9071900Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-11-03T15:55:53.9073120Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-11-03T15:55:53.9074160Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9075030Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-11-03T15:55:53.9076140Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-11-03T15:55:53.9077020Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-11-03T15:55:53.9077860Z adding 'torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h' 2025-11-03T15:55:53.9078780Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-11-03T15:55:53.9080010Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-11-03T15:55:53.9081070Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-11-03T15:55:53.9082140Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-11-03T15:55:53.9083130Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-11-03T15:55:53.9084220Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-11-03T15:55:53.9085110Z adding 'torch/include/ATen/ops/_embedding_bag_backward_mps_dispatch.h' 2025-11-03T15:55:53.9086020Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-11-03T15:55:53.9086990Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-11-03T15:55:53.9088220Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9089100Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-11-03T15:55:53.9089960Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-11-03T15:55:53.9091240Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-11-03T15:55:53.9092570Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9093460Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-11-03T15:55:53.9094400Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-11-03T15:55:53.9095240Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_mps_dispatch.h' 2025-11-03T15:55:53.9096380Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-11-03T15:55:53.9097500Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-11-03T15:55:53.9098680Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-11-03T15:55:53.9099900Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9100910Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-11-03T15:55:53.9101830Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-11-03T15:55:53.9102680Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_mps_dispatch.h' 2025-11-03T15:55:53.9103610Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-11-03T15:55:53.9104940Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-11-03T15:55:53.9105790Z adding 'torch/include/ATen/ops/_embedding_bag_mps_dispatch.h' 2025-11-03T15:55:53.9106710Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-11-03T15:55:53.9107810Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-11-03T15:55:53.9109130Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-11-03T15:55:53.9110190Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9111050Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-11-03T15:55:53.9111910Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-11-03T15:55:53.9112990Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_mps_dispatch.h' 2025-11-03T15:55:53.9113900Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-11-03T15:55:53.9114920Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-11-03T15:55:53.9115930Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-11-03T15:55:53.9117170Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9118020Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-11-03T15:55:53.9119020Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-11-03T15:55:53.9120400Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-11-03T15:55:53.9121830Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9122750Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-11-03T15:55:53.9123680Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-11-03T15:55:53.9124750Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-11-03T15:55:53.9126810Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-11-03T15:55:53.9127650Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9128530Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-11-03T15:55:53.9129530Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-11-03T15:55:53.9130920Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-11-03T15:55:53.9131810Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-11-03T15:55:53.9132820Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9133600Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-11-03T15:55:53.9134830Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-11-03T15:55:53.9135960Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-11-03T15:55:53.9136960Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-11-03T15:55:53.9137930Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-11-03T15:55:53.9139020Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-11-03T15:55:53.9139920Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-11-03T15:55:53.9141040Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-11-03T15:55:53.9141990Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9143040Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-11-03T15:55:53.9143910Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-11-03T15:55:53.9144830Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-11-03T15:55:53.9145960Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-11-03T15:55:53.9147180Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-11-03T15:55:53.9148160Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-11-03T15:55:53.9149080Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-11-03T15:55:53.9149940Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-11-03T15:55:53.9151020Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-11-03T15:55:53.9152000Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-11-03T15:55:53.9152990Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9153800Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-11-03T15:55:53.9154860Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-11-03T15:55:53.9155730Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-11-03T15:55:53.9156750Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-11-03T15:55:53.9157780Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-11-03T15:55:53.9160070Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9160740Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-11-03T15:55:53.9161600Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-11-03T15:55:53.9162490Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-11-03T15:55:53.9163850Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-11-03T15:55:53.9164850Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-11-03T15:55:53.9165910Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-11-03T15:55:53.9166800Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-11-03T15:55:53.9167900Z adding 'torch/include/ATen/ops/_fft_c2c_mps_dispatch.h' 2025-11-03T15:55:53.9168800Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-11-03T15:55:53.9169860Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-11-03T15:55:53.9171000Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-11-03T15:55:53.9172210Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-11-03T15:55:53.9173170Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-11-03T15:55:53.9174070Z adding 'torch/include/ATen/ops/_fft_c2r_mps_dispatch.h' 2025-11-03T15:55:53.9174990Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-11-03T15:55:53.9176220Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-11-03T15:55:53.9177210Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-11-03T15:55:53.9178140Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-11-03T15:55:53.9178990Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-11-03T15:55:53.9180060Z adding 'torch/include/ATen/ops/_fft_r2c_mps_dispatch.h' 2025-11-03T15:55:53.9181020Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-11-03T15:55:53.9181970Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-11-03T15:55:53.9183180Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-11-03T15:55:53.9184500Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-11-03T15:55:53.9185640Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-11-03T15:55:53.9186530Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-11-03T15:55:53.9187460Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-11-03T15:55:53.9188620Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-11-03T15:55:53.9189870Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-11-03T15:55:53.9190790Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-11-03T15:55:53.9191850Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-11-03T15:55:53.9193090Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-11-03T15:55:53.9194370Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-11-03T15:55:53.9195350Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-11-03T15:55:53.9196430Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-11-03T15:55:53.9197310Z adding 'torch/include/ATen/ops/_foobar.h' 2025-11-03T15:55:53.9198540Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9199370Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-11-03T15:55:53.9200630Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-11-03T15:55:53.9201610Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-11-03T15:55:53.9202740Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-11-03T15:55:53.9203770Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9204590Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-11-03T15:55:53.9205450Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-11-03T15:55:53.9206630Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-11-03T15:55:53.9207570Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-11-03T15:55:53.9208570Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9209380Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-11-03T15:55:53.9210430Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-11-03T15:55:53.9211470Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-11-03T15:55:53.9212820Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-11-03T15:55:53.9213860Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9214970Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-11-03T15:55:53.9216010Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-11-03T15:55:53.9217460Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-11-03T15:55:53.9218650Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-11-03T15:55:53.9220030Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9220960Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-11-03T15:55:53.9222000Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-11-03T15:55:53.9223520Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-11-03T15:55:53.9224970Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-11-03T15:55:53.9226130Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9226990Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-11-03T15:55:53.9228000Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-11-03T15:55:53.9229940Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-11-03T15:55:53.9230550Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-11-03T15:55:53.9231500Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9232370Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-11-03T15:55:53.9233370Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-11-03T15:55:53.9234400Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-11-03T15:55:53.9235270Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-11-03T15:55:53.9236280Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9237270Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-11-03T15:55:53.9238180Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-11-03T15:55:53.9239120Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-11-03T15:55:53.9239990Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-11-03T15:55:53.9241220Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9242010Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-11-03T15:55:53.9242870Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-11-03T15:55:53.9243820Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-11-03T15:55:53.9245120Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-11-03T15:55:53.9246180Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9247020Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-11-03T15:55:53.9247970Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-11-03T15:55:53.9249580Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-11-03T15:55:53.9250540Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-11-03T15:55:53.9251600Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9252450Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-11-03T15:55:53.9253610Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-11-03T15:55:53.9254860Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-11-03T15:55:53.9255820Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-11-03T15:55:53.9256830Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9257910Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-11-03T15:55:53.9258840Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-11-03T15:55:53.9259890Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-11-03T15:55:53.9260920Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-11-03T15:55:53.9262070Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9262930Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-11-03T15:55:53.9263820Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-11-03T15:55:53.9264790Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-11-03T15:55:53.9265890Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-11-03T15:55:53.9266900Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9267680Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-11-03T15:55:53.9268530Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-11-03T15:55:53.9269890Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-11-03T15:55:53.9271270Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-11-03T15:55:53.9272350Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9273260Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-11-03T15:55:53.9274440Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-11-03T15:55:53.9275810Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-11-03T15:55:53.9276750Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-11-03T15:55:53.9277830Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9278800Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-11-03T15:55:53.9279680Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-11-03T15:55:53.9280670Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-11-03T15:55:53.9281570Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-11-03T15:55:53.9282740Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9283520Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-11-03T15:55:53.9284360Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-11-03T15:55:53.9285310Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-11-03T15:55:53.9286400Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-11-03T15:55:53.9287380Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9288200Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-11-03T15:55:53.9289030Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-11-03T15:55:53.9290200Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-11-03T15:55:53.9291140Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-11-03T15:55:53.9292140Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9292940Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-11-03T15:55:53.9293960Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-11-03T15:55:53.9294940Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-11-03T15:55:53.9295820Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-11-03T15:55:53.9296800Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9297810Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-11-03T15:55:53.9298730Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-11-03T15:55:53.9299690Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-11-03T15:55:53.9300570Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-11-03T15:55:53.9301750Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9302570Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-11-03T15:55:53.9303380Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-11-03T15:55:53.9304300Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-11-03T15:55:53.9305590Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-11-03T15:55:53.9306710Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9307500Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-11-03T15:55:53.9308460Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-11-03T15:55:53.9310060Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-11-03T15:55:53.9310850Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-11-03T15:55:53.9311830Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9312620Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-11-03T15:55:53.9313630Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-11-03T15:55:53.9314600Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-11-03T15:55:53.9315480Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-11-03T15:55:53.9316350Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-11-03T15:55:53.9317490Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9318320Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-11-03T15:55:53.9319140Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-11-03T15:55:53.9320080Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-11-03T15:55:53.9321150Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-11-03T15:55:53.9322200Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9323000Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-11-03T15:55:53.9323860Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-11-03T15:55:53.9325020Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-11-03T15:55:53.9325910Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-11-03T15:55:53.9326910Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9327740Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-11-03T15:55:53.9328830Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-11-03T15:55:53.9329800Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-11-03T15:55:53.9330750Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9331550Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-11-03T15:55:53.9332570Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-11-03T15:55:53.9333520Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-11-03T15:55:53.9334390Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-11-03T15:55:53.9335340Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9336310Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-11-03T15:55:53.9337170Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-11-03T15:55:53.9338090Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-11-03T15:55:53.9339170Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-11-03T15:55:53.9340430Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9341280Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-11-03T15:55:53.9342210Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-11-03T15:55:53.9343460Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-11-03T15:55:53.9344750Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-11-03T15:55:53.9345790Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9346660Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-11-03T15:55:53.9347610Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-11-03T15:55:53.9349240Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-11-03T15:55:53.9350380Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-11-03T15:55:53.9351480Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9352400Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-11-03T15:55:53.9353630Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-11-03T15:55:53.9355000Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-11-03T15:55:53.9355920Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-11-03T15:55:53.9356950Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9357940Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-11-03T15:55:53.9358820Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-11-03T15:55:53.9359760Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-11-03T15:55:53.9360710Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-11-03T15:55:53.9361900Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9362750Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-11-03T15:55:53.9363610Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-11-03T15:55:53.9364600Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-11-03T15:55:53.9365940Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-11-03T15:55:53.9367020Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9367910Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-11-03T15:55:53.9368830Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-11-03T15:55:53.9370480Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-11-03T15:55:53.9371250Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-11-03T15:55:53.9372240Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9373060Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-11-03T15:55:53.9374140Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-11-03T15:55:53.9375070Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-11-03T15:55:53.9375950Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-11-03T15:55:53.9376930Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9377910Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-11-03T15:55:53.9378750Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-11-03T15:55:53.9379710Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-11-03T15:55:53.9380600Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-11-03T15:55:53.9381760Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9382580Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-11-03T15:55:53.9383410Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-11-03T15:55:53.9384370Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-11-03T15:55:53.9385450Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-11-03T15:55:53.9386460Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9387290Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-11-03T15:55:53.9388140Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-11-03T15:55:53.9389350Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-11-03T15:55:53.9390260Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-11-03T15:55:53.9391200Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9392040Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-11-03T15:55:53.9393030Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-11-03T15:55:53.9393990Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-11-03T15:55:53.9394930Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-11-03T15:55:53.9395900Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9396950Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-11-03T15:55:53.9397750Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-11-03T15:55:53.9398700Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-11-03T15:55:53.9399580Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-11-03T15:55:53.9400710Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9401510Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-11-03T15:55:53.9402330Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-11-03T15:55:53.9403270Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-11-03T15:55:53.9404330Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-11-03T15:55:53.9405310Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9406090Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-11-03T15:55:53.9406930Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-11-03T15:55:53.9408070Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-11-03T15:55:53.9409160Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-11-03T15:55:53.9410200Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9411040Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-11-03T15:55:53.9412210Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-11-03T15:55:53.9413410Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-11-03T15:55:53.9414300Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-11-03T15:55:53.9415280Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9416230Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-11-03T15:55:53.9417070Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-11-03T15:55:53.9418000Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-11-03T15:55:53.9418870Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-11-03T15:55:53.9420010Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9420790Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-11-03T15:55:53.9421620Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-11-03T15:55:53.9422560Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-11-03T15:55:53.9423620Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-11-03T15:55:53.9428890Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9429120Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-11-03T15:55:53.9429210Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-11-03T15:55:53.9429920Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-11-03T15:55:53.9430120Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-11-03T15:55:53.9430290Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9430410Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-11-03T15:55:53.9458780Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-11-03T15:55:53.9459820Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-11-03T15:55:53.9460770Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-11-03T15:55:53.9461750Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-11-03T15:55:53.9462810Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-11-03T15:55:53.9463770Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-11-03T15:55:53.9464650Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-11-03T15:55:53.9465640Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9466610Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-11-03T15:55:53.9467560Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-11-03T15:55:53.9468550Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-11-03T15:55:53.9469490Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9470510Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-11-03T15:55:53.9471510Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9472290Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-11-03T15:55:53.9473250Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-11-03T15:55:53.9474330Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-11-03T15:55:53.9475300Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-11-03T15:55:53.9476490Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-11-03T15:55:53.9477620Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9478700Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-11-03T15:55:53.9479600Z adding 'torch/include/ATen/ops/_fused_adagrad_cuda_dispatch.h' 2025-11-03T15:55:53.9480600Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-11-03T15:55:53.9482130Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-11-03T15:55:53.9483590Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-11-03T15:55:53.9484760Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9485630Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-11-03T15:55:53.9486530Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-11-03T15:55:53.9487590Z adding 'torch/include/ATen/ops/_fused_adam_mps_dispatch.h' 2025-11-03T15:55:53.9488670Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-11-03T15:55:53.9490290Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-11-03T15:55:53.9491520Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-11-03T15:55:53.9492840Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9493710Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-11-03T15:55:53.9494570Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-11-03T15:55:53.9495520Z adding 'torch/include/ATen/ops/_fused_adamw_mps_dispatch.h' 2025-11-03T15:55:53.9496780Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-11-03T15:55:53.9498410Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-11-03T15:55:53.9499290Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-11-03T15:55:53.9500380Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9501420Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-11-03T15:55:53.9502370Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-11-03T15:55:53.9503360Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-11-03T15:55:53.9504570Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-11-03T15:55:53.9505860Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9506750Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-11-03T15:55:53.9507610Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-11-03T15:55:53.9508570Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-11-03T15:55:53.9510070Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-11-03T15:55:53.9511000Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-11-03T15:55:53.9511980Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward.h' 2025-11-03T15:55:53.9512900Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_cuda_dispatch.h' 2025-11-03T15:55:53.9513980Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_native.h' 2025-11-03T15:55:53.9515060Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_ops.h' 2025-11-03T15:55:53.9515920Z adding 'torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9516760Z adding 'torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h' 2025-11-03T15:55:53.9517790Z adding 'torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h' 2025-11-03T15:55:53.9518710Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-11-03T15:55:53.9519680Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-11-03T15:55:53.9520560Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-11-03T15:55:53.9521720Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-11-03T15:55:53.9522570Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-11-03T15:55:53.9523430Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-11-03T15:55:53.9524300Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-11-03T15:55:53.9525470Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-11-03T15:55:53.9526750Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-11-03T15:55:53.9527860Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9528710Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-11-03T15:55:53.9529790Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-11-03T15:55:53.9530650Z adding 'torch/include/ATen/ops/_fused_sgd_mps_dispatch.h' 2025-11-03T15:55:53.9531630Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-11-03T15:55:53.9533230Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-11-03T15:55:53.9534150Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-11-03T15:55:53.9535110Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9535990Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-11-03T15:55:53.9536960Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9538070Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9538920Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-11-03T15:55:53.9539890Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-11-03T15:55:53.9540720Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-11-03T15:55:53.9541830Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-11-03T15:55:53.9542790Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-11-03T15:55:53.9543780Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9544540Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-11-03T15:55:53.9545710Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-11-03T15:55:53.9546670Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-11-03T15:55:53.9547620Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-11-03T15:55:53.9548630Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9549630Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-11-03T15:55:53.9550580Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-11-03T15:55:53.9551570Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9552390Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-11-03T15:55:53.9553570Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-11-03T15:55:53.9554420Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-11-03T15:55:53.9555410Z adding 'torch/include/ATen/ops/_grouped_mm_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9556220Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-11-03T15:55:53.9557310Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-11-03T15:55:53.9558220Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-11-03T15:55:53.9559150Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-11-03T15:55:53.9560130Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9561150Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-11-03T15:55:53.9562110Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-11-03T15:55:53.9562870Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-11-03T15:55:53.9563850Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9564810Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-11-03T15:55:53.9565710Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-11-03T15:55:53.9566660Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-11-03T15:55:53.9567690Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9568800Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-11-03T15:55:53.9569680Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h' 2025-11-03T15:55:53.9570590Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-11-03T15:55:53.9571560Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-11-03T15:55:53.9572700Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-11-03T15:55:53.9573740Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9574630Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-11-03T15:55:53.9575420Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h' 2025-11-03T15:55:53.9576470Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-11-03T15:55:53.9577500Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-11-03T15:55:53.9578430Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-11-03T15:55:53.9579460Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9580450Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-11-03T15:55:53.9581320Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h' 2025-11-03T15:55:53.9582180Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-11-03T15:55:53.9583160Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-11-03T15:55:53.9584330Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-11-03T15:55:53.9585360Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9586170Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-11-03T15:55:53.9587010Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-11-03T15:55:53.9588080Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-11-03T15:55:53.9588910Z adding 'torch/include/ATen/ops/_index_put_impl_mps_dispatch.h' 2025-11-03T15:55:53.9589780Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-11-03T15:55:53.9590870Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-11-03T15:55:53.9591890Z adding 'torch/include/ATen/ops/_indices.h' 2025-11-03T15:55:53.9592810Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-11-03T15:55:53.9593790Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9594710Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9595620Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-11-03T15:55:53.9596570Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-11-03T15:55:53.9597470Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-11-03T15:55:53.9598340Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-11-03T15:55:53.9599430Z adding 'torch/include/ATen/ops/_indices_sparsemps_dispatch.h' 2025-11-03T15:55:53.9600290Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-11-03T15:55:53.9601210Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-11-03T15:55:53.9602050Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-11-03T15:55:53.9603080Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-11-03T15:55:53.9604020Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-11-03T15:55:53.9604890Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-11-03T15:55:53.9606070Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9606800Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-11-03T15:55:53.9607690Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-11-03T15:55:53.9608540Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-11-03T15:55:53.9609470Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9610460Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-11-03T15:55:53.9611330Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-11-03T15:55:53.9612260Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-11-03T15:55:53.9613150Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9614100Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-11-03T15:55:53.9614980Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-11-03T15:55:53.9616020Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-11-03T15:55:53.9616930Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-11-03T15:55:53.9617970Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-11-03T15:55:53.9618830Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-11-03T15:55:53.9619740Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-11-03T15:55:53.9620530Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-11-03T15:55:53.9621680Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9622450Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-11-03T15:55:53.9623310Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-11-03T15:55:53.9624180Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-11-03T15:55:53.9625330Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9626110Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-11-03T15:55:53.9627000Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-11-03T15:55:53.9627910Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-11-03T15:55:53.9629110Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9629920Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-11-03T15:55:53.9630790Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-11-03T15:55:53.9631610Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-11-03T15:55:53.9632680Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-11-03T15:55:53.9633540Z adding 'torch/include/ATen/ops/_linalg_det_mps_dispatch.h' 2025-11-03T15:55:53.9634370Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-11-03T15:55:53.9635330Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-11-03T15:55:53.9636480Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-11-03T15:55:53.9637540Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9638360Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-11-03T15:55:53.9639220Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-11-03T15:55:53.9640310Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-11-03T15:55:53.9641170Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-11-03T15:55:53.9642020Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-11-03T15:55:53.9642990Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-11-03T15:55:53.9644050Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-11-03T15:55:53.9644960Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-11-03T15:55:53.9645800Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-11-03T15:55:53.9646600Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-11-03T15:55:53.9647700Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-11-03T15:55:53.9648640Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-11-03T15:55:53.9649660Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9650450Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-11-03T15:55:53.9651510Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-11-03T15:55:53.9652340Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-11-03T15:55:53.9653220Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-11-03T15:55:53.9654120Z adding 'torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h' 2025-11-03T15:55:53.9655150Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-11-03T15:55:53.9656160Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-11-03T15:55:53.9657130Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-11-03T15:55:53.9658150Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9659160Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-11-03T15:55:53.9660050Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-11-03T15:55:53.9660890Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-11-03T15:55:53.9661790Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-11-03T15:55:53.9662840Z adding 'torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h' 2025-11-03T15:55:53.9663720Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-11-03T15:55:53.9664760Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-11-03T15:55:53.9665710Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-11-03T15:55:53.9666940Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9667760Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-11-03T15:55:53.9668640Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-11-03T15:55:53.9669460Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-11-03T15:55:53.9670540Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-11-03T15:55:53.9671390Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-11-03T15:55:53.9672400Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-11-03T15:55:53.9673290Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-11-03T15:55:53.9674390Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-11-03T15:55:53.9675260Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-11-03T15:55:53.9676080Z adding 'torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h' 2025-11-03T15:55:53.9676900Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-11-03T15:55:53.9678000Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-11-03T15:55:53.9678910Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-11-03T15:55:53.9679880Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-11-03T15:55:53.9680920Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9681920Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-11-03T15:55:53.9682850Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-11-03T15:55:53.9684040Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-11-03T15:55:53.9684940Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-11-03T15:55:53.9685960Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h' 2025-11-03T15:55:53.9686880Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-11-03T15:55:53.9687880Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-11-03T15:55:53.9688850Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9689840Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-11-03T15:55:53.9690690Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-11-03T15:55:53.9691520Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-11-03T15:55:53.9692400Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-11-03T15:55:53.9693440Z adding 'torch/include/ATen/ops/_log_softmax_mps_dispatch.h' 2025-11-03T15:55:53.9694310Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-11-03T15:55:53.9695280Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-11-03T15:55:53.9696240Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-11-03T15:55:53.9697310Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-11-03T15:55:53.9698150Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-11-03T15:55:53.9698970Z adding 'torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h' 2025-11-03T15:55:53.9699810Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-11-03T15:55:53.9700970Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-11-03T15:55:53.9702040Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-11-03T15:55:53.9703110Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9704010Z adding 'torch/include/ATen/ops/_lstm_mps_mps_dispatch.h' 2025-11-03T15:55:53.9705080Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-11-03T15:55:53.9706200Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-11-03T15:55:53.9707090Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-11-03T15:55:53.9708090Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9709110Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-11-03T15:55:53.9710100Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-11-03T15:55:53.9711060Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-11-03T15:55:53.9712020Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-11-03T15:55:53.9713070Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-11-03T15:55:53.9714050Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-11-03T15:55:53.9714880Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-11-03T15:55:53.9715850Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9716860Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-11-03T15:55:53.9717860Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9718790Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9719530Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-11-03T15:55:53.9720710Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-11-03T15:55:53.9721550Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-11-03T15:55:53.9722460Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-11-03T15:55:53.9723540Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-11-03T15:55:53.9724740Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9725610Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-11-03T15:55:53.9726430Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-11-03T15:55:53.9727290Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-11-03T15:55:53.9728490Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-11-03T15:55:53.9729440Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-11-03T15:55:53.9730450Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9731260Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-11-03T15:55:53.9732270Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-11-03T15:55:53.9733140Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-11-03T15:55:53.9734120Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-11-03T15:55:53.9734970Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-11-03T15:55:53.9736140Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9736940Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-11-03T15:55:53.9737770Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-11-03T15:55:53.9738780Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-11-03T15:55:53.9739870Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-11-03T15:55:53.9740860Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-11-03T15:55:53.9741880Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9742910Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-11-03T15:55:53.9743740Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-11-03T15:55:53.9744600Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-11-03T15:55:53.9745610Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-11-03T15:55:53.9746560Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9747690Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-11-03T15:55:53.9748600Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-11-03T15:55:53.9749450Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-11-03T15:55:53.9750420Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-11-03T15:55:53.9751510Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-11-03T15:55:53.9752430Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-11-03T15:55:53.9753270Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-11-03T15:55:53.9754190Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-11-03T15:55:53.9755250Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-11-03T15:55:53.9756240Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9756990Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-11-03T15:55:53.9757930Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-11-03T15:55:53.9759030Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-11-03T15:55:53.9760030Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9760810Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-11-03T15:55:53.9761670Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-11-03T15:55:53.9762850Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-11-03T15:55:53.9764040Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-11-03T15:55:53.9765070Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9765940Z adding 'torch/include/ATen/ops/_mps_convolution_mps_dispatch.h' 2025-11-03T15:55:53.9767070Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-11-03T15:55:53.9768060Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-11-03T15:55:53.9769310Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-11-03T15:55:53.9770380Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9771430Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h' 2025-11-03T15:55:53.9772290Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-11-03T15:55:53.9773300Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-11-03T15:55:53.9774440Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-11-03T15:55:53.9775720Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9776890Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-11-03T15:55:53.9777510Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-11-03T15:55:53.9778420Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h' 2025-11-03T15:55:53.9779690Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-11-03T15:55:53.9780750Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-11-03T15:55:53.9781840Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9782590Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-11-03T15:55:53.9783850Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-11-03T15:55:53.9785120Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-11-03T15:55:53.9786180Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-11-03T15:55:53.9787240Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9788290Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-11-03T15:55:53.9789160Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-11-03T15:55:53.9790080Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-11-03T15:55:53.9791180Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-11-03T15:55:53.9792190Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-11-03T15:55:53.9793160Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9793960Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-11-03T15:55:53.9794920Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9796000Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9796740Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-11-03T15:55:53.9797660Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-11-03T15:55:53.9798490Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-11-03T15:55:53.9799570Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-11-03T15:55:53.9800520Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-11-03T15:55:53.9801430Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-11-03T15:55:53.9802280Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-11-03T15:55:53.9803290Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-11-03T15:55:53.9804220Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-11-03T15:55:53.9805080Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-11-03T15:55:53.9806050Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-11-03T15:55:53.9807250Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9808020Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-11-03T15:55:53.9808950Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-11-03T15:55:53.9809890Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9810900Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-11-03T15:55:53.9811740Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-11-03T15:55:53.9812580Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-11-03T15:55:53.9813540Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-11-03T15:55:53.9814750Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-11-03T15:55:53.9815620Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-11-03T15:55:53.9816560Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-11-03T15:55:53.9817410Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-11-03T15:55:53.9818430Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-11-03T15:55:53.9819320Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-11-03T15:55:53.9820130Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-11-03T15:55:53.9820960Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-11-03T15:55:53.9822000Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-11-03T15:55:53.9822850Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-11-03T15:55:53.9823660Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-11-03T15:55:53.9824540Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-11-03T15:55:53.9825550Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-11-03T15:55:53.9826350Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-11-03T15:55:53.9827210Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-11-03T15:55:53.9828020Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-11-03T15:55:53.9829150Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-11-03T15:55:53.9830320Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-11-03T15:55:53.9830780Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-11-03T15:55:53.9831530Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-11-03T15:55:53.9832590Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-11-03T15:55:53.9833450Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-11-03T15:55:53.9834300Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-11-03T15:55:53.9835280Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9836380Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9837140Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-11-03T15:55:53.9838050Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-11-03T15:55:53.9838800Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-11-03T15:55:53.9839860Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-11-03T15:55:53.9840790Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-11-03T15:55:53.9841650Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-11-03T15:55:53.9842560Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-11-03T15:55:53.9843600Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-11-03T15:55:53.9844460Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-11-03T15:55:53.9845370Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-11-03T15:55:53.9846260Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-11-03T15:55:53.9847490Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9848280Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-11-03T15:55:53.9849140Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-11-03T15:55:53.9850000Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-11-03T15:55:53.9851100Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-11-03T15:55:53.9851930Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-11-03T15:55:53.9852740Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-11-03T15:55:53.9853640Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-11-03T15:55:53.9854650Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-11-03T15:55:53.9855610Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-11-03T15:55:53.9856590Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-11-03T15:55:53.9857610Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9858610Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-11-03T15:55:53.9859670Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-11-03T15:55:53.9860460Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-11-03T15:55:53.9861430Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9862400Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-11-03T15:55:53.9863350Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-11-03T15:55:53.9864230Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-11-03T15:55:53.9865090Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-11-03T15:55:53.9866180Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-11-03T15:55:53.9867050Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-11-03T15:55:53.9868050Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9868800Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-11-03T15:55:53.9869920Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-11-03T15:55:53.9870780Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-11-03T15:55:53.9871720Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9872480Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-11-03T15:55:53.9873590Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-11-03T15:55:53.9874470Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-11-03T15:55:53.9875420Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-11-03T15:55:53.9876400Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9877540Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9878270Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-11-03T15:55:53.9879250Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-11-03T15:55:53.9880120Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-11-03T15:55:53.9881160Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-11-03T15:55:53.9881970Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-11-03T15:55:53.9882890Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-11-03T15:55:53.9883780Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-11-03T15:55:53.9885010Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-11-03T15:55:53.9886030Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9886980Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9887740Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-11-03T15:55:53.9888990Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-11-03T15:55:53.9889810Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-11-03T15:55:53.9890740Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-11-03T15:55:53.9891690Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-11-03T15:55:53.9892890Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9893680Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-11-03T15:55:53.9894640Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-11-03T15:55:53.9895450Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-11-03T15:55:53.9896610Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9897420Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-11-03T15:55:53.9898270Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-11-03T15:55:53.9899450Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-11-03T15:55:53.9900710Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9901510Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-11-03T15:55:53.9902520Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-11-03T15:55:53.9903280Z adding 'torch/include/ATen/ops/_nnz.h' 2025-11-03T15:55:53.9904920Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-11-03T15:55:53.9905720Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-11-03T15:55:53.9906630Z adding 'torch/include/ATen/ops/_nnz_sparsecsrmps_dispatch.h' 2025-11-03T15:55:53.9907440Z adding 'torch/include/ATen/ops/_nnz_sparsemps_dispatch.h' 2025-11-03T15:55:53.9908550Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-11-03T15:55:53.9909570Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-11-03T15:55:53.9910550Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9911340Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-11-03T15:55:53.9912450Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-11-03T15:55:53.9913420Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9914210Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-11-03T15:55:53.9915170Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-11-03T15:55:53.9916260Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-11-03T15:55:53.9917230Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9917990Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-11-03T15:55:53.9918880Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-11-03T15:55:53.9920020Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-11-03T15:55:53.9921030Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9921790Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-11-03T15:55:53.9922710Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-11-03T15:55:53.9923780Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-11-03T15:55:53.9924770Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9925540Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-11-03T15:55:53.9926500Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-11-03T15:55:53.9927640Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-11-03T15:55:53.9928590Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-11-03T15:55:53.9929420Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-11-03T15:55:53.9930270Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-11-03T15:55:53.9931400Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-11-03T15:55:53.9932240Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-11-03T15:55:53.9933230Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9934030Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-11-03T15:55:53.9935030Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-11-03T15:55:53.9935870Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-11-03T15:55:53.9936850Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-11-03T15:55:53.9937730Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-11-03T15:55:53.9938890Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9939750Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-11-03T15:55:53.9940500Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-11-03T15:55:53.9941330Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-11-03T15:55:53.9942450Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-11-03T15:55:53.9943360Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-11-03T15:55:53.9944350Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9945120Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-11-03T15:55:53.9946260Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-11-03T15:55:53.9947140Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-11-03T15:55:53.9948010Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-11-03T15:55:53.9948920Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-11-03T15:55:53.9949930Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-11-03T15:55:53.9950770Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h' 2025-11-03T15:55:53.9951600Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-11-03T15:55:53.9952510Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-11-03T15:55:53.9953550Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-11-03T15:55:53.9954380Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-11-03T15:55:53.9955190Z adding 'torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h' 2025-11-03T15:55:53.9956020Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-11-03T15:55:53.9957130Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-11-03T15:55:53.9957970Z adding 'torch/include/ATen/ops/_print.h' 2025-11-03T15:55:53.9958910Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9959680Z adding 'torch/include/ATen/ops/_print_native.h' 2025-11-03T15:55:53.9960750Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-11-03T15:55:53.9961640Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-11-03T15:55:53.9962600Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9963350Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-11-03T15:55:53.9964430Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-11-03T15:55:53.9965370Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-11-03T15:55:53.9966350Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9967120Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-11-03T15:55:53.9968260Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-11-03T15:55:53.9969190Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-11-03T15:55:53.9970260Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-11-03T15:55:53.9971290Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9972420Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:53.9973160Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-11-03T15:55:53.9974120Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-11-03T15:55:53.9975000Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-11-03T15:55:53.9976010Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-11-03T15:55:53.9976860Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-11-03T15:55:53.9977640Z adding 'torch/include/ATen/ops/_reshape_alias_mps_dispatch.h' 2025-11-03T15:55:53.9978460Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-11-03T15:55:53.9979550Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-11-03T15:55:53.9980470Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-11-03T15:55:53.9981470Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9982180Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-11-03T15:55:53.9983260Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-11-03T15:55:53.9984160Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-11-03T15:55:53.9985130Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9985870Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-11-03T15:55:53.9986970Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-11-03T15:55:53.9988120Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-11-03T15:55:53.9994250Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9994500Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-11-03T15:55:53.9994650Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-11-03T15:55:53.9995590Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-11-03T15:55:53.9995690Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-11-03T15:55:53.9995860Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:53.9995960Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-11-03T15:55:53.9996050Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-11-03T15:55:53.9996440Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-11-03T15:55:53.9997420Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:53.9998450Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-11-03T15:55:53.9999350Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-11-03T15:55:54.0000240Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-11-03T15:55:54.0001220Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0002260Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-11-03T15:55:54.0003100Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-11-03T15:55:54.0003930Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-11-03T15:55:54.0004900Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-11-03T15:55:54.0005990Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-11-03T15:55:54.0006970Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0007730Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-11-03T15:55:54.0008650Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-11-03T15:55:54.0009850Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-11-03T15:55:54.0010830Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0011690Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-11-03T15:55:54.0012620Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h' 2025-11-03T15:55:54.0013680Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-11-03T15:55:54.0014680Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-11-03T15:55:54.0015550Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-11-03T15:55:54.0016530Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-11-03T15:55:54.0017690Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-11-03T15:55:54.0018860Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-11-03T15:55:54.0019870Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0020770Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-11-03T15:55:54.0022040Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-11-03T15:55:54.0022930Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-11-03T15:55:54.0023840Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-11-03T15:55:54.0024920Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-11-03T15:55:54.0026060Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-11-03T15:55:54.0027040Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-11-03T15:55:54.0027990Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0028870Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-11-03T15:55:54.0030060Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-11-03T15:55:54.0030970Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-11-03T15:55:54.0031850Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-11-03T15:55:54.0032790Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-11-03T15:55:54.0033900Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-11-03T15:55:54.0035030Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-11-03T15:55:54.0036010Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0036910Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-11-03T15:55:54.0038110Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-11-03T15:55:54.0039030Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-11-03T15:55:54.0039910Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-11-03T15:55:54.0040850Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-11-03T15:55:54.0041990Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-11-03T15:55:54.0042860Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-11-03T15:55:54.0043850Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-11-03T15:55:54.0044730Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-11-03T15:55:54.0045790Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-11-03T15:55:54.0046730Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-11-03T15:55:54.0047610Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-11-03T15:55:54.0048590Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-11-03T15:55:54.0049740Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-11-03T15:55:54.0050910Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-11-03T15:55:54.0052020Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0052840Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-11-03T15:55:54.0054080Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-11-03T15:55:54.0055090Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0055870Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-11-03T15:55:54.0056890Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-11-03T15:55:54.0057910Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-11-03T15:55:54.0058860Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-11-03T15:55:54.0059720Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-11-03T15:55:54.0060720Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-11-03T15:55:54.0061880Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_v2.h' 2025-11-03T15:55:54.0062850Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_v2_cuda_dispatch.h' 2025-11-03T15:55:54.0063700Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_v2_native.h' 2025-11-03T15:55:54.0064700Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_v2_ops.h' 2025-11-03T15:55:54.0065850Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-11-03T15:55:54.0066840Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-11-03T15:55:54.0067710Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-11-03T15:55:54.0068610Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-11-03T15:55:54.0069840Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-11-03T15:55:54.0070900Z adding 'torch/include/ATen/ops/_scaled_mm_v2.h' 2025-11-03T15:55:54.0071870Z adding 'torch/include/ATen/ops/_scaled_mm_v2_cuda_dispatch.h' 2025-11-03T15:55:54.0072760Z adding 'torch/include/ATen/ops/_scaled_mm_v2_native.h' 2025-11-03T15:55:54.0074030Z adding 'torch/include/ATen/ops/_scaled_mm_v2_ops.h' 2025-11-03T15:55:54.0075040Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-11-03T15:55:54.0076080Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0076910Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-11-03T15:55:54.0077960Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0078840Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-11-03T15:55:54.0079870Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-11-03T15:55:54.0080710Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-11-03T15:55:54.0081860Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0082650Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-11-03T15:55:54.0083550Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-11-03T15:55:54.0085470Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-11-03T15:55:54.0086530Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0087440Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.0088420Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0089310Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-11-03T15:55:54.0090680Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-11-03T15:55:54.0091870Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-11-03T15:55:54.0092870Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-11-03T15:55:54.0093800Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-11-03T15:55:54.0094860Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-11-03T15:55:54.0095880Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-11-03T15:55:54.0096760Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-11-03T15:55:54.0097750Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0098720Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-11-03T15:55:54.0099690Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-11-03T15:55:54.0100570Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-11-03T15:55:54.0101540Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0102540Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-11-03T15:55:54.0103450Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-11-03T15:55:54.0104340Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-11-03T15:55:54.0105310Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0106300Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-11-03T15:55:54.0107210Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-11-03T15:55:54.0108050Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-11-03T15:55:54.0109020Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0109970Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-11-03T15:55:54.0110890Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-11-03T15:55:54.0111740Z adding 'torch/include/ATen/ops/_softmax.h' 2025-11-03T15:55:54.0112680Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-11-03T15:55:54.0113950Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0114770Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-11-03T15:55:54.0115610Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-11-03T15:55:54.0116460Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-11-03T15:55:54.0117540Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-11-03T15:55:54.0118390Z adding 'torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h' 2025-11-03T15:55:54.0119250Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-11-03T15:55:54.0120230Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-11-03T15:55:54.0121410Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0122230Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-11-03T15:55:54.0123080Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-11-03T15:55:54.0123910Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-11-03T15:55:54.0124980Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-11-03T15:55:54.0125820Z adding 'torch/include/ATen/ops/_softmax_mps_dispatch.h' 2025-11-03T15:55:54.0127110Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-11-03T15:55:54.0128060Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-11-03T15:55:54.0129190Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-11-03T15:55:54.0130250Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0131010Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-11-03T15:55:54.0132030Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-11-03T15:55:54.0133110Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-11-03T15:55:54.0134060Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-11-03T15:55:54.0135050Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0135970Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0136910Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-11-03T15:55:54.0137900Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-11-03T15:55:54.0138750Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-11-03T15:55:54.0139650Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-11-03T15:55:54.0140770Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_sparsemps_dispatch.h' 2025-11-03T15:55:54.0141730Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-11-03T15:55:54.0142750Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0143570Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-11-03T15:55:54.0144700Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-11-03T15:55:54.0145670Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-11-03T15:55:54.0146690Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0147460Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-11-03T15:55:54.0148610Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-11-03T15:55:54.0149790Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-11-03T15:55:54.0150880Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0151650Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-11-03T15:55:54.0152810Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-11-03T15:55:54.0153830Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-11-03T15:55:54.0154840Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0155630Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-11-03T15:55:54.0156820Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-11-03T15:55:54.0157940Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-11-03T15:55:54.0159010Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0159800Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-11-03T15:55:54.0160940Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-11-03T15:55:54.0161970Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-11-03T15:55:54.0163430Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-11-03T15:55:54.0164480Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0165590Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-11-03T15:55:54.0166490Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-11-03T15:55:54.0167560Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-11-03T15:55:54.0168540Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_sparsemps_dispatch.h' 2025-11-03T15:55:54.0169690Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0170510Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-11-03T15:55:54.0171370Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-11-03T15:55:54.0172380Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-11-03T15:55:54.0173510Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_sparsemps_dispatch.h' 2025-11-03T15:55:54.0174430Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-11-03T15:55:54.0175430Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0176210Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-11-03T15:55:54.0177340Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-11-03T15:55:54.0178270Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-11-03T15:55:54.0179280Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0180070Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-11-03T15:55:54.0181240Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-11-03T15:55:54.0182190Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-11-03T15:55:54.0183250Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0183960Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-11-03T15:55:54.0185140Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-11-03T15:55:54.0186120Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-11-03T15:55:54.0187130Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0187930Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-11-03T15:55:54.0189070Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-11-03T15:55:54.0190010Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-11-03T15:55:54.0190990Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-11-03T15:55:54.0191980Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0192950Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-11-03T15:55:54.0193970Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-11-03T15:55:54.0194900Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0195790Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0196780Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-11-03T15:55:54.0197850Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-11-03T15:55:54.0198810Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-11-03T15:55:54.0199800Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0200780Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-11-03T15:55:54.0201800Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-11-03T15:55:54.0202740Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-11-03T15:55:54.0203750Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0204760Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-11-03T15:55:54.0205750Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-11-03T15:55:54.0206660Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-11-03T15:55:54.0207590Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-11-03T15:55:54.0208640Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-11-03T15:55:54.0209640Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-11-03T15:55:54.0210470Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-11-03T15:55:54.0211410Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-11-03T15:55:54.0212490Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-11-03T15:55:54.0213430Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-11-03T15:55:54.0214300Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-11-03T15:55:54.0215240Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-11-03T15:55:54.0216300Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-11-03T15:55:54.0217260Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-11-03T15:55:54.0218100Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-11-03T15:55:54.0219000Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-11-03T15:55:54.0220030Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-11-03T15:55:54.0220940Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-11-03T15:55:54.0221780Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-11-03T15:55:54.0222690Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-11-03T15:55:54.0223810Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-11-03T15:55:54.0224730Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-11-03T15:55:54.0225570Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-11-03T15:55:54.0226520Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-11-03T15:55:54.0227560Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-11-03T15:55:54.0228490Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-11-03T15:55:54.0229330Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-11-03T15:55:54.0230260Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-11-03T15:55:54.0231390Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-11-03T15:55:54.0232320Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-11-03T15:55:54.0233160Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-11-03T15:55:54.0234080Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-11-03T15:55:54.0235170Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-11-03T15:55:54.0236180Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-11-03T15:55:54.0237210Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0238010Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-11-03T15:55:54.0239130Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-11-03T15:55:54.0240110Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0241000Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0241790Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-11-03T15:55:54.0243030Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-11-03T15:55:54.0243970Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-11-03T15:55:54.0244950Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0245720Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-11-03T15:55:54.0246850Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-11-03T15:55:54.0247780Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-11-03T15:55:54.0248720Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-11-03T15:55:54.0249690Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0250710Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-11-03T15:55:54.0251640Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-11-03T15:55:54.0252610Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0253460Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0254430Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-11-03T15:55:54.0255500Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-11-03T15:55:54.0256430Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-11-03T15:55:54.0257410Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0258410Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-11-03T15:55:54.0259270Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-11-03T15:55:54.0260240Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-11-03T15:55:54.0261100Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-11-03T15:55:54.0262130Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-11-03T15:55:54.0263040Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-11-03T15:55:54.0263920Z adding 'torch/include/ATen/ops/_stack.h' 2025-11-03T15:55:54.0264890Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0265950Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-11-03T15:55:54.0266780Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-11-03T15:55:54.0267730Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-11-03T15:55:54.0268680Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-11-03T15:55:54.0269940Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0270840Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-11-03T15:55:54.0271710Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-11-03T15:55:54.0272620Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-11-03T15:55:54.0273810Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0274670Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-11-03T15:55:54.0275550Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-11-03T15:55:54.0276500Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-11-03T15:55:54.0277700Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-11-03T15:55:54.0278620Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-11-03T15:55:54.0279620Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-11-03T15:55:54.0280610Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-11-03T15:55:54.0281860Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0282730Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-11-03T15:55:54.0283720Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-11-03T15:55:54.0284700Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-11-03T15:55:54.0286040Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0286990Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0287770Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-11-03T15:55:54.0288840Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-11-03T15:55:54.0290000Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-11-03T15:55:54.0291030Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0291850Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-11-03T15:55:54.0292860Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0293930Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0294680Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-11-03T15:55:54.0295630Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-11-03T15:55:54.0296480Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-11-03T15:55:54.0297560Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-11-03T15:55:54.0298380Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-11-03T15:55:54.0299350Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0300140Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-11-03T15:55:54.0301250Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-11-03T15:55:54.0302220Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-11-03T15:55:54.0303200Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0304010Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-11-03T15:55:54.0305110Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-11-03T15:55:54.0305980Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-11-03T15:55:54.0306930Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-11-03T15:55:54.0307940Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0309000Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-11-03T15:55:54.0309900Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-11-03T15:55:54.0310850Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-11-03T15:55:54.0311750Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-11-03T15:55:54.0312930Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0313760Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-11-03T15:55:54.0314620Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-11-03T15:55:54.0315710Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-11-03T15:55:54.0316880Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-11-03T15:55:54.0317910Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0318830Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-11-03T15:55:54.0319720Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-11-03T15:55:54.0320880Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-11-03T15:55:54.0321840Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-11-03T15:55:54.0322930Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0323720Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-11-03T15:55:54.0324860Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-11-03T15:55:54.0325770Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-11-03T15:55:54.0326730Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0327490Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-11-03T15:55:54.0328600Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-11-03T15:55:54.0329490Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-11-03T15:55:54.0330520Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0331390Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-11-03T15:55:54.0332470Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-11-03T15:55:54.0333400Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-11-03T15:55:54.0334420Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0335160Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-11-03T15:55:54.0336280Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-11-03T15:55:54.0337240Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-11-03T15:55:54.0338260Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0339040Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-11-03T15:55:54.0340200Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-11-03T15:55:54.0341140Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-11-03T15:55:54.0342150Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0342960Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-11-03T15:55:54.0344220Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-11-03T15:55:54.0345130Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-11-03T15:55:54.0346180Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-11-03T15:55:54.0347210Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0348230Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0349130Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-11-03T15:55:54.0350180Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-11-03T15:55:54.0351180Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0352610Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-11-03T15:55:54.0353500Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-11-03T15:55:54.0354550Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-11-03T15:55:54.0355520Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-11-03T15:55:54.0356660Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-11-03T15:55:54.0357690Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0358640Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-11-03T15:55:54.0359660Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0360690Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-11-03T15:55:54.0361610Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-11-03T15:55:54.0362720Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-11-03T15:55:54.0363580Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-11-03T15:55:54.0364720Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-11-03T15:55:54.0365760Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0366630Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-11-03T15:55:54.0367570Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-11-03T15:55:54.0368810Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-11-03T15:55:54.0369870Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-11-03T15:55:54.0370940Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0371780Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-11-03T15:55:54.0372980Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-11-03T15:55:54.0373880Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-11-03T15:55:54.0374860Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0375630Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-11-03T15:55:54.0376780Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-11-03T15:55:54.0377770Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-11-03T15:55:54.0378770Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0379590Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-11-03T15:55:54.0380740Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-11-03T15:55:54.0381700Z adding 'torch/include/ATen/ops/_to_dense_sparsecsrmps_dispatch.h' 2025-11-03T15:55:54.0382550Z adding 'torch/include/ATen/ops/_to_dense_sparsemps_dispatch.h' 2025-11-03T15:55:54.0383510Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-11-03T15:55:54.0384710Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-11-03T15:55:54.0385810Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0386690Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-11-03T15:55:54.0387650Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-11-03T15:55:54.0388700Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-11-03T15:55:54.0389720Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-11-03T15:55:54.0390690Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-11-03T15:55:54.0391790Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0392920Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-11-03T15:55:54.0393830Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-11-03T15:55:54.0394740Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-11-03T15:55:54.0395750Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-11-03T15:55:54.0397020Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0397940Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-11-03T15:55:54.0398920Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-11-03T15:55:54.0399890Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0400930Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-11-03T15:55:54.0401830Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-11-03T15:55:54.0402740Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-11-03T15:55:54.0403840Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-11-03T15:55:54.0404990Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-11-03T15:55:54.0406020Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0406860Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-11-03T15:55:54.0408960Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-11-03T15:55:54.0410040Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-11-03T15:55:54.0411180Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-11-03T15:55:54.0413440Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-11-03T15:55:54.0414170Z adding 'torch/include/ATen/ops/_to_sparse_mps_dispatch.h' 2025-11-03T15:55:54.0415290Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-11-03T15:55:54.0416520Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-11-03T15:55:54.0417680Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-11-03T15:55:54.0418680Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-11-03T15:55:54.0419620Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-11-03T15:55:54.0420620Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-11-03T15:55:54.0421690Z adding 'torch/include/ATen/ops/_to_sparse_sparsecsrmps_dispatch.h' 2025-11-03T15:55:54.0422700Z adding 'torch/include/ATen/ops/_to_sparse_sparsemps_dispatch.h' 2025-11-03T15:55:54.0423770Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-11-03T15:55:54.0424880Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0425940Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-11-03T15:55:54.0426860Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-11-03T15:55:54.0427790Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-11-03T15:55:54.0428900Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-11-03T15:55:54.0430330Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-11-03T15:55:54.0431510Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0432440Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-11-03T15:55:54.0433400Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-11-03T15:55:54.0434680Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-11-03T15:55:54.0435860Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-11-03T15:55:54.0436870Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-11-03T15:55:54.0437950Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0439140Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0439940Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-11-03T15:55:54.0440990Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-11-03T15:55:54.0442070Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-11-03T15:55:54.0443310Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0444170Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-11-03T15:55:54.0445060Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-11-03T15:55:54.0446120Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-11-03T15:55:54.0447270Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-11-03T15:55:54.0448340Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0449220Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-11-03T15:55:54.0450120Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-11-03T15:55:54.0451320Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-11-03T15:55:54.0452250Z adding 'torch/include/ATen/ops/_unique.h' 2025-11-03T15:55:54.0453240Z adding 'torch/include/ATen/ops/_unique2.h' 2025-11-03T15:55:54.0454250Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0455270Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-11-03T15:55:54.0456140Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-11-03T15:55:54.0456980Z adding 'torch/include/ATen/ops/_unique2_mps_dispatch.h' 2025-11-03T15:55:54.0457870Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-11-03T15:55:54.0459120Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-11-03T15:55:54.0460120Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0460940Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-11-03T15:55:54.0461770Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-11-03T15:55:54.0462850Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-11-03T15:55:54.0463840Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-11-03T15:55:54.0464790Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-11-03T15:55:54.0465740Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0466720Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-11-03T15:55:54.0467660Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-11-03T15:55:54.0468560Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-11-03T15:55:54.0469520Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0470470Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-11-03T15:55:54.0471410Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-11-03T15:55:54.0472330Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-11-03T15:55:54.0473330Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0474280Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-11-03T15:55:54.0475250Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-11-03T15:55:54.0476140Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-11-03T15:55:54.0477140Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0478110Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-11-03T15:55:54.0479120Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-11-03T15:55:54.0480060Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-11-03T15:55:54.0481060Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0482030Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-11-03T15:55:54.0483010Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-11-03T15:55:54.0484040Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-11-03T15:55:54.0485160Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0486170Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-11-03T15:55:54.0487160Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-11-03T15:55:54.0488460Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-11-03T15:55:54.0489780Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-11-03T15:55:54.0491090Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0492030Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-11-03T15:55:54.0493040Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0493940Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-11-03T15:55:54.0495080Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-11-03T15:55:54.0495990Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-11-03T15:55:54.0497060Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-11-03T15:55:54.0498120Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0499220Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0500150Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-11-03T15:55:54.0501160Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-11-03T15:55:54.0502010Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-11-03T15:55:54.0503140Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-11-03T15:55:54.0504040Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h' 2025-11-03T15:55:54.0504940Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-11-03T15:55:54.0506060Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-11-03T15:55:54.0507740Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-11-03T15:55:54.0508830Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-11-03T15:55:54.0509910Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0510810Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-11-03T15:55:54.0511950Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0512840Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-11-03T15:55:54.0513780Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-11-03T15:55:54.0514690Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-11-03T15:55:54.0515950Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-11-03T15:55:54.0517000Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0517860Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0518750Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-11-03T15:55:54.0519880Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-11-03T15:55:54.0520730Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-11-03T15:55:54.0521650Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-11-03T15:55:54.0522530Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h' 2025-11-03T15:55:54.0523630Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-11-03T15:55:54.0524690Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-11-03T15:55:54.0525940Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-11-03T15:55:54.0527210Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-11-03T15:55:54.0528500Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0529350Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.0530310Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0531230Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-11-03T15:55:54.0532380Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-11-03T15:55:54.0533320Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h' 2025-11-03T15:55:54.0534280Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-11-03T15:55:54.0535310Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-11-03T15:55:54.0536510Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0537380Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0538250Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-11-03T15:55:54.0539150Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-11-03T15:55:54.0540170Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-11-03T15:55:54.0541090Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-11-03T15:55:54.0541950Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h' 2025-11-03T15:55:54.0542850Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-11-03T15:55:54.0548700Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-11-03T15:55:54.0548940Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-11-03T15:55:54.0549130Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-11-03T15:55:54.0549410Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0549570Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.0549820Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0551230Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-11-03T15:55:54.0552250Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-11-03T15:55:54.0553220Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h' 2025-11-03T15:55:54.0554160Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-11-03T15:55:54.0555410Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-11-03T15:55:54.0556490Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0557410Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0558270Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-11-03T15:55:54.0559430Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-11-03T15:55:54.0560300Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-11-03T15:55:54.0561210Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-11-03T15:55:54.0562070Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h' 2025-11-03T15:55:54.0563220Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-11-03T15:55:54.0564330Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-11-03T15:55:54.0565700Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-11-03T15:55:54.0566990Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-11-03T15:55:54.0568330Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0569220Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.0570180Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0571030Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-11-03T15:55:54.0572220Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-11-03T15:55:54.0573180Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_mps_dispatch.h' 2025-11-03T15:55:54.0574140Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-11-03T15:55:54.0575240Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-11-03T15:55:54.0576580Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0577480Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0578410Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-11-03T15:55:54.0579320Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-11-03T15:55:54.0580380Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-11-03T15:55:54.0581340Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-11-03T15:55:54.0582240Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h' 2025-11-03T15:55:54.0583180Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-11-03T15:55:54.0584480Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-11-03T15:55:54.0585430Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-11-03T15:55:54.0586430Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-11-03T15:55:54.0587270Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-11-03T15:55:54.0588570Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-11-03T15:55:54.0589490Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-11-03T15:55:54.0591050Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0591870Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-11-03T15:55:54.0593080Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-11-03T15:55:54.0594030Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-11-03T15:55:54.0595220Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-11-03T15:55:54.0596050Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-11-03T15:55:54.0597160Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-11-03T15:55:54.0598160Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-11-03T15:55:54.0599080Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-11-03T15:55:54.0600170Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0601300Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-11-03T15:55:54.0602380Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-11-03T15:55:54.0603460Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-11-03T15:55:54.0604500Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0605540Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-11-03T15:55:54.0606560Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-11-03T15:55:54.0607570Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-11-03T15:55:54.0608710Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0609690Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-11-03T15:55:54.0610740Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-11-03T15:55:54.0611740Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-11-03T15:55:54.0612740Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0613740Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-11-03T15:55:54.0614710Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-11-03T15:55:54.0615640Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-11-03T15:55:54.0616610Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0617610Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-11-03T15:55:54.0618570Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-11-03T15:55:54.0619530Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-11-03T15:55:54.0620540Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0621480Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-11-03T15:55:54.0622420Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-11-03T15:55:54.0623220Z adding 'torch/include/ATen/ops/_values.h' 2025-11-03T15:55:54.0624130Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-11-03T15:55:54.0625430Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0626440Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0627150Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-11-03T15:55:54.0628080Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-11-03T15:55:54.0629110Z adding 'torch/include/ATen/ops/_values_native.h' 2025-11-03T15:55:54.0630040Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-11-03T15:55:54.0630970Z adding 'torch/include/ATen/ops/_values_sparsemps_dispatch.h' 2025-11-03T15:55:54.0631750Z adding 'torch/include/ATen/ops/_version.h' 2025-11-03T15:55:54.0632920Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0633690Z adding 'torch/include/ATen/ops/_version_native.h' 2025-11-03T15:55:54.0634620Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-11-03T15:55:54.0635520Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-11-03T15:55:54.0636650Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-11-03T15:55:54.0637540Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-11-03T15:55:54.0638450Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-11-03T15:55:54.0639280Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-11-03T15:55:54.0640400Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-11-03T15:55:54.0641330Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h' 2025-11-03T15:55:54.0642140Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-11-03T15:55:54.0643070Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-11-03T15:55:54.0644210Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-11-03T15:55:54.0645080Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-11-03T15:55:54.0646050Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-11-03T15:55:54.0646870Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-11-03T15:55:54.0647990Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-11-03T15:55:54.0648860Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cuda_dispatch.h' 2025-11-03T15:55:54.0649730Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h' 2025-11-03T15:55:54.0650580Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-11-03T15:55:54.0651710Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-11-03T15:55:54.0652610Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-11-03T15:55:54.0653640Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0654580Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-11-03T15:55:54.0655810Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0656600Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-11-03T15:55:54.0657580Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-11-03T15:55:54.0658470Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-11-03T15:55:54.0659660Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-11-03T15:55:54.0660720Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0661560Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-11-03T15:55:54.0662410Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0663450Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h' 2025-11-03T15:55:54.0664370Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-11-03T15:55:54.0665400Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-11-03T15:55:54.0666390Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0667480Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-11-03T15:55:54.0668310Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-11-03T15:55:54.0669170Z adding 'torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h' 2025-11-03T15:55:54.0670020Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-11-03T15:55:54.0671210Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-11-03T15:55:54.0672080Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-11-03T15:55:54.0673040Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-11-03T15:55:54.0673950Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-11-03T15:55:54.0675150Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0675950Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-11-03T15:55:54.0676910Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-11-03T15:55:54.0677890Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-11-03T15:55:54.0679130Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0679980Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-11-03T15:55:54.0680920Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-11-03T15:55:54.0681750Z adding 'torch/include/ATen/ops/abs.h' 2025-11-03T15:55:54.0682930Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0683780Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-11-03T15:55:54.0684640Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-11-03T15:55:54.0685450Z adding 'torch/include/ATen/ops/abs_mps_dispatch.h' 2025-11-03T15:55:54.0686540Z adding 'torch/include/ATen/ops/abs_native.h' 2025-11-03T15:55:54.0687560Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-11-03T15:55:54.0688500Z adding 'torch/include/ATen/ops/abs_sparsecsrmps_dispatch.h' 2025-11-03T15:55:54.0689330Z adding 'torch/include/ATen/ops/abs_sparsemps_dispatch.h' 2025-11-03T15:55:54.0690420Z adding 'torch/include/ATen/ops/absolute.h' 2025-11-03T15:55:54.0691410Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0692190Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-11-03T15:55:54.0693200Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-11-03T15:55:54.0694290Z adding 'torch/include/ATen/ops/acos.h' 2025-11-03T15:55:54.0695330Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0696130Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-11-03T15:55:54.0696960Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-11-03T15:55:54.0697990Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-11-03T15:55:54.0698860Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-11-03T15:55:54.0699670Z adding 'torch/include/ATen/ops/acos_mps_dispatch.h' 2025-11-03T15:55:54.0700530Z adding 'torch/include/ATen/ops/acos_native.h' 2025-11-03T15:55:54.0701730Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-11-03T15:55:54.0702650Z adding 'torch/include/ATen/ops/acosh.h' 2025-11-03T15:55:54.0703690Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0704440Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-11-03T15:55:54.0705500Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-11-03T15:55:54.0706370Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-11-03T15:55:54.0707230Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-11-03T15:55:54.0708070Z adding 'torch/include/ATen/ops/acosh_mps_dispatch.h' 2025-11-03T15:55:54.0709130Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-11-03T15:55:54.0710140Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-11-03T15:55:54.0711080Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-11-03T15:55:54.0712110Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0713160Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0713970Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-11-03T15:55:54.0714950Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-11-03T15:55:54.0716050Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-11-03T15:55:54.0717260Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0718180Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-11-03T15:55:54.0719100Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-11-03T15:55:54.0720040Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h' 2025-11-03T15:55:54.0721110Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-11-03T15:55:54.0722150Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-11-03T15:55:54.0723240Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-11-03T15:55:54.0724200Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-11-03T15:55:54.0725350Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.0726270Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0727090Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-11-03T15:55:54.0728090Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-11-03T15:55:54.0729250Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0730130Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-11-03T15:55:54.0731030Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-11-03T15:55:54.0731890Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-11-03T15:55:54.0733090Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-11-03T15:55:54.0734010Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-11-03T15:55:54.0735010Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0735790Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-11-03T15:55:54.0736930Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-11-03T15:55:54.0737890Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-11-03T15:55:54.0738880Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-11-03T15:55:54.0739950Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0740960Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.0741830Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0742710Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-11-03T15:55:54.0743570Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-11-03T15:55:54.0744630Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h' 2025-11-03T15:55:54.0745540Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-11-03T15:55:54.0746550Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-11-03T15:55:54.0747550Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0748580Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-11-03T15:55:54.0749500Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-11-03T15:55:54.0750340Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-11-03T15:55:54.0751230Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-11-03T15:55:54.0752290Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h' 2025-11-03T15:55:54.0753140Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-11-03T15:55:54.0754150Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-11-03T15:55:54.0755100Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-11-03T15:55:54.0756250Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-11-03T15:55:54.0757320Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0758110Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.0758960Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.0760040Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-11-03T15:55:54.0761030Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-11-03T15:55:54.0761930Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-11-03T15:55:54.0762910Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-11-03T15:55:54.0764130Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0765000Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-11-03T15:55:54.0765780Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-11-03T15:55:54.0766600Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-11-03T15:55:54.0767720Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-11-03T15:55:54.0768610Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-11-03T15:55:54.0769600Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-11-03T15:55:54.0770570Z adding 'torch/include/ATen/ops/add.h' 2025-11-03T15:55:54.0771780Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0772750Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0773540Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-11-03T15:55:54.0774390Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-11-03T15:55:54.0775460Z adding 'torch/include/ATen/ops/add_meta.h' 2025-11-03T15:55:54.0776360Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-11-03T15:55:54.0777230Z adding 'torch/include/ATen/ops/add_mps_dispatch.h' 2025-11-03T15:55:54.0778280Z adding 'torch/include/ATen/ops/add_native.h' 2025-11-03T15:55:54.0779710Z adding 'torch/include/ATen/ops/add_ops.h' 2025-11-03T15:55:54.0780690Z adding 'torch/include/ATen/ops/add_sparsemps_dispatch.h' 2025-11-03T15:55:54.0781660Z adding 'torch/include/ATen/ops/addbmm.h' 2025-11-03T15:55:54.0782640Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-11-03T15:55:54.0783770Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-11-03T15:55:54.0784700Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-11-03T15:55:54.0785580Z adding 'torch/include/ATen/ops/addbmm_mps_dispatch.h' 2025-11-03T15:55:54.0786480Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-11-03T15:55:54.0787740Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-11-03T15:55:54.0788740Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-11-03T15:55:54.0789760Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0790570Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-11-03T15:55:54.0791650Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-11-03T15:55:54.0792540Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-11-03T15:55:54.0793440Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-11-03T15:55:54.0794280Z adding 'torch/include/ATen/ops/addcdiv_mps_dispatch.h' 2025-11-03T15:55:54.0795450Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-11-03T15:55:54.0796500Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-11-03T15:55:54.0797470Z adding 'torch/include/ATen/ops/addcmul.h' 2025-11-03T15:55:54.0798470Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0799430Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-11-03T15:55:54.0800290Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-11-03T15:55:54.0801160Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-11-03T15:55:54.0802050Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-11-03T15:55:54.0803060Z adding 'torch/include/ATen/ops/addcmul_mps_dispatch.h' 2025-11-03T15:55:54.0803970Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-11-03T15:55:54.0804990Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-11-03T15:55:54.0806020Z adding 'torch/include/ATen/ops/addmm.h' 2025-11-03T15:55:54.0807260Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0808100Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-11-03T15:55:54.0809090Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-11-03T15:55:54.0809930Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-11-03T15:55:54.0811030Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-11-03T15:55:54.0811870Z adding 'torch/include/ATen/ops/addmm_mps_dispatch.h' 2025-11-03T15:55:54.0812960Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-11-03T15:55:54.0814070Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-11-03T15:55:54.0816020Z adding 'torch/include/ATen/ops/addmm_sparsemps_dispatch.h' 2025-11-03T15:55:54.0816640Z adding 'torch/include/ATen/ops/addmv.h' 2025-11-03T15:55:54.0817680Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0818480Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-11-03T15:55:54.0819510Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-11-03T15:55:54.0820390Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-11-03T15:55:54.0821270Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-11-03T15:55:54.0822100Z adding 'torch/include/ATen/ops/addmv_mps_dispatch.h' 2025-11-03T15:55:54.0823200Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-11-03T15:55:54.0824270Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-11-03T15:55:54.0825200Z adding 'torch/include/ATen/ops/addr.h' 2025-11-03T15:55:54.0826200Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0827250Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-11-03T15:55:54.0828140Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-11-03T15:55:54.0828990Z adding 'torch/include/ATen/ops/addr_mps_dispatch.h' 2025-11-03T15:55:54.0829900Z adding 'torch/include/ATen/ops/addr_native.h' 2025-11-03T15:55:54.0831170Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-11-03T15:55:54.0832070Z adding 'torch/include/ATen/ops/adjoint.h' 2025-11-03T15:55:54.0833080Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0833840Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-11-03T15:55:54.0834990Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-11-03T15:55:54.0836170Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-11-03T15:55:54.0837170Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-11-03T15:55:54.0838190Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0839180Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-11-03T15:55:54.0840150Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-11-03T15:55:54.0841180Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0841970Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-11-03T15:55:54.0843160Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-11-03T15:55:54.0844020Z adding 'torch/include/ATen/ops/alias.h' 2025-11-03T15:55:54.0845050Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0845800Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-11-03T15:55:54.0847000Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0847940Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0848690Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-11-03T15:55:54.0849630Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-11-03T15:55:54.0850680Z adding 'torch/include/ATen/ops/alias_native.h' 2025-11-03T15:55:54.0851610Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-11-03T15:55:54.0852480Z adding 'torch/include/ATen/ops/align_as.h' 2025-11-03T15:55:54.0853440Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0854410Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-11-03T15:55:54.0855340Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-11-03T15:55:54.0856210Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-11-03T15:55:54.0857200Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0858180Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-11-03T15:55:54.0859150Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-11-03T15:55:54.0859940Z adding 'torch/include/ATen/ops/align_to.h' 2025-11-03T15:55:54.0860930Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0861940Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-11-03T15:55:54.0862930Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-11-03T15:55:54.0864020Z adding 'torch/include/ATen/ops/all.h' 2025-11-03T15:55:54.0865050Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0866220Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0867110Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0867980Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-11-03T15:55:54.0868880Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-11-03T15:55:54.0869940Z adding 'torch/include/ATen/ops/all_meta.h' 2025-11-03T15:55:54.0870870Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-11-03T15:55:54.0871780Z adding 'torch/include/ATen/ops/all_mps_dispatch.h' 2025-11-03T15:55:54.0872710Z adding 'torch/include/ATen/ops/all_native.h' 2025-11-03T15:55:54.0874180Z adding 'torch/include/ATen/ops/all_ops.h' 2025-11-03T15:55:54.0875110Z adding 'torch/include/ATen/ops/allclose.h' 2025-11-03T15:55:54.0876080Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0876840Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-11-03T15:55:54.0877990Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-11-03T15:55:54.0878920Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-11-03T15:55:54.0879910Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0880680Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-11-03T15:55:54.0881840Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-11-03T15:55:54.0882770Z adding 'torch/include/ATen/ops/amax.h' 2025-11-03T15:55:54.0883810Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0884570Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-11-03T15:55:54.0885640Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-11-03T15:55:54.0886500Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-11-03T15:55:54.0887390Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-11-03T15:55:54.0888200Z adding 'torch/include/ATen/ops/amax_mps_dispatch.h' 2025-11-03T15:55:54.0889270Z adding 'torch/include/ATen/ops/amax_native.h' 2025-11-03T15:55:54.0890250Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-11-03T15:55:54.0891230Z adding 'torch/include/ATen/ops/amin.h' 2025-11-03T15:55:54.0892190Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0893150Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-11-03T15:55:54.0894030Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-11-03T15:55:54.0894880Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-11-03T15:55:54.0895820Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-11-03T15:55:54.0896830Z adding 'torch/include/ATen/ops/amin_mps_dispatch.h' 2025-11-03T15:55:54.0897730Z adding 'torch/include/ATen/ops/amin_native.h' 2025-11-03T15:55:54.0898720Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-11-03T15:55:54.0899700Z adding 'torch/include/ATen/ops/aminmax.h' 2025-11-03T15:55:54.0900970Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0901790Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-11-03T15:55:54.0902720Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-11-03T15:55:54.0903570Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-11-03T15:55:54.0904670Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-11-03T15:55:54.0905570Z adding 'torch/include/ATen/ops/aminmax_mps_dispatch.h' 2025-11-03T15:55:54.0906440Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-11-03T15:55:54.0907500Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-11-03T15:55:54.0908530Z adding 'torch/include/ATen/ops/and.h' 2025-11-03T15:55:54.0909550Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0910380Z adding 'torch/include/ATen/ops/and_native.h' 2025-11-03T15:55:54.0911450Z adding 'torch/include/ATen/ops/and_ops.h' 2025-11-03T15:55:54.0912560Z adding 'torch/include/ATen/ops/angle.h' 2025-11-03T15:55:54.0913500Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-11-03T15:55:54.0914340Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-11-03T15:55:54.0915150Z adding 'torch/include/ATen/ops/angle_mps_dispatch.h' 2025-11-03T15:55:54.0916220Z adding 'torch/include/ATen/ops/angle_native.h' 2025-11-03T15:55:54.0917200Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-11-03T15:55:54.0918290Z adding 'torch/include/ATen/ops/any.h' 2025-11-03T15:55:54.0919280Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0920410Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0921300Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0922210Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-11-03T15:55:54.0923090Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-11-03T15:55:54.0924180Z adding 'torch/include/ATen/ops/any_meta.h' 2025-11-03T15:55:54.0925170Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-11-03T15:55:54.0926140Z adding 'torch/include/ATen/ops/any_mps_dispatch.h' 2025-11-03T15:55:54.0927090Z adding 'torch/include/ATen/ops/any_native.h' 2025-11-03T15:55:54.0928510Z adding 'torch/include/ATen/ops/any_ops.h' 2025-11-03T15:55:54.0929510Z adding 'torch/include/ATen/ops/any_sparsemps_dispatch.h' 2025-11-03T15:55:54.0930660Z adding 'torch/include/ATen/ops/arange.h' 2025-11-03T15:55:54.0931750Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0932810Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-11-03T15:55:54.0933670Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-11-03T15:55:54.0934530Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-11-03T15:55:54.0935350Z adding 'torch/include/ATen/ops/arange_mps_dispatch.h' 2025-11-03T15:55:54.0936480Z adding 'torch/include/ATen/ops/arange_native.h' 2025-11-03T15:55:54.0937680Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-11-03T15:55:54.0938650Z adding 'torch/include/ATen/ops/arccos.h' 2025-11-03T15:55:54.0939670Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0940740Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-11-03T15:55:54.0941790Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-11-03T15:55:54.0942810Z adding 'torch/include/ATen/ops/arccosh.h' 2025-11-03T15:55:54.0943790Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0944790Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-11-03T15:55:54.0945800Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-11-03T15:55:54.0946730Z adding 'torch/include/ATen/ops/arcsin.h' 2025-11-03T15:55:54.0947710Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0948710Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-11-03T15:55:54.0949700Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-11-03T15:55:54.0950640Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-11-03T15:55:54.0951610Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0952590Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-11-03T15:55:54.0953590Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-11-03T15:55:54.0954490Z adding 'torch/include/ATen/ops/arctan.h' 2025-11-03T15:55:54.0955420Z adding 'torch/include/ATen/ops/arctan2.h' 2025-11-03T15:55:54.0956630Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0957530Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-11-03T15:55:54.0958460Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-11-03T15:55:54.0959440Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0960450Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-11-03T15:55:54.0961430Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-11-03T15:55:54.0962300Z adding 'torch/include/ATen/ops/arctanh.h' 2025-11-03T15:55:54.0963270Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0964240Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-11-03T15:55:54.0965210Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-11-03T15:55:54.0966170Z adding 'torch/include/ATen/ops/argmax.h' 2025-11-03T15:55:54.0967220Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0968230Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-11-03T15:55:54.0969130Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-11-03T15:55:54.0970020Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-11-03T15:55:54.0970920Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-11-03T15:55:54.0972010Z adding 'torch/include/ATen/ops/argmax_mps_dispatch.h' 2025-11-03T15:55:54.0972900Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-11-03T15:55:54.0973920Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-11-03T15:55:54.0974850Z adding 'torch/include/ATen/ops/argmin.h' 2025-11-03T15:55:54.0976050Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0976870Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-11-03T15:55:54.0977830Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-11-03T15:55:54.0978650Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-11-03T15:55:54.0979750Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-11-03T15:55:54.0980630Z adding 'torch/include/ATen/ops/argmin_mps_dispatch.h' 2025-11-03T15:55:54.0981520Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-11-03T15:55:54.0982460Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-11-03T15:55:54.0983670Z adding 'torch/include/ATen/ops/argsort.h' 2025-11-03T15:55:54.0984770Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0985590Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-11-03T15:55:54.0986680Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-11-03T15:55:54.0987760Z adding 'torch/include/ATen/ops/argwhere.h' 2025-11-03T15:55:54.0988830Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.0989660Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-11-03T15:55:54.0990530Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-11-03T15:55:54.0991770Z adding 'torch/include/ATen/ops/as_strided.h' 2025-11-03T15:55:54.0992850Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0993920Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-11-03T15:55:54.0995040Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.0996190Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.0996960Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-11-03T15:55:54.0997980Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-11-03T15:55:54.0998920Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-11-03T15:55:54.1000050Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-11-03T15:55:54.1000920Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-11-03T15:55:54.1001760Z adding 'torch/include/ATen/ops/as_strided_mps_dispatch.h' 2025-11-03T15:55:54.1002640Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-11-03T15:55:54.1003850Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-11-03T15:55:54.1005170Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-11-03T15:55:54.1006220Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1007240Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1008300Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-11-03T15:55:54.1009340Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-11-03T15:55:54.1010250Z adding 'torch/include/ATen/ops/asin.h' 2025-11-03T15:55:54.1011320Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1012390Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-11-03T15:55:54.1013260Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-11-03T15:55:54.1014140Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-11-03T15:55:54.1015050Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-11-03T15:55:54.1016090Z adding 'torch/include/ATen/ops/asin_mps_dispatch.h' 2025-11-03T15:55:54.1017010Z adding 'torch/include/ATen/ops/asin_native.h' 2025-11-03T15:55:54.1018020Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-11-03T15:55:54.1019040Z adding 'torch/include/ATen/ops/asin_sparsemps_dispatch.h' 2025-11-03T15:55:54.1020210Z adding 'torch/include/ATen/ops/asinh.h' 2025-11-03T15:55:54.1021250Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1022020Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-11-03T15:55:54.1022910Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-11-03T15:55:54.1023980Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-11-03T15:55:54.1024900Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-11-03T15:55:54.1025790Z adding 'torch/include/ATen/ops/asinh_mps_dispatch.h' 2025-11-03T15:55:54.1026700Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-11-03T15:55:54.1027980Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-11-03T15:55:54.1029050Z adding 'torch/include/ATen/ops/asinh_sparsemps_dispatch.h' 2025-11-03T15:55:54.1029910Z adding 'torch/include/ATen/ops/atan.h' 2025-11-03T15:55:54.1030850Z adding 'torch/include/ATen/ops/atan2.h' 2025-11-03T15:55:54.1032080Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1032990Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-11-03T15:55:54.1033860Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-11-03T15:55:54.1034690Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-11-03T15:55:54.1035790Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-11-03T15:55:54.1036750Z adding 'torch/include/ATen/ops/atan2_mps_dispatch.h' 2025-11-03T15:55:54.1037570Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-11-03T15:55:54.1038550Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-11-03T15:55:54.1039800Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1040590Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-11-03T15:55:54.1041850Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-11-03T15:55:54.1042690Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-11-03T15:55:54.1043790Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-11-03T15:55:54.1044760Z adding 'torch/include/ATen/ops/atan_mps_dispatch.h' 2025-11-03T15:55:54.1045650Z adding 'torch/include/ATen/ops/atan_native.h' 2025-11-03T15:55:54.1046610Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-11-03T15:55:54.1047760Z adding 'torch/include/ATen/ops/atan_sparsemps_dispatch.h' 2025-11-03T15:55:54.1048680Z adding 'torch/include/ATen/ops/atanh.h' 2025-11-03T15:55:54.1049720Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1050450Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-11-03T15:55:54.1051540Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-11-03T15:55:54.1052550Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-11-03T15:55:54.1053380Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-11-03T15:55:54.1054200Z adding 'torch/include/ATen/ops/atanh_mps_dispatch.h' 2025-11-03T15:55:54.1055280Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-11-03T15:55:54.1056330Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-11-03T15:55:54.1057340Z adding 'torch/include/ATen/ops/atanh_sparsemps_dispatch.h' 2025-11-03T15:55:54.1058200Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-11-03T15:55:54.1059380Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1060170Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-11-03T15:55:54.1061180Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-11-03T15:55:54.1062060Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-11-03T15:55:54.1063240Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1064010Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-11-03T15:55:54.1065020Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-11-03T15:55:54.1065910Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-11-03T15:55:54.1067110Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1067920Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-11-03T15:55:54.1068890Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-11-03T15:55:54.1069850Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-11-03T15:55:54.1071100Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1072050Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1072840Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-11-03T15:55:54.1073860Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-11-03T15:55:54.1075050Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-11-03T15:55:54.1076130Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-11-03T15:55:54.1077240Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1078070Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.1079180Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.1080120Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-11-03T15:55:54.1081040Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-11-03T15:55:54.1081900Z adding 'torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h' 2025-11-03T15:55:54.1083090Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-11-03T15:55:54.1084210Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-11-03T15:55:54.1085350Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1086270Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-11-03T15:55:54.1087440Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-11-03T15:55:54.1088640Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-11-03T15:55:54.1089580Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-11-03T15:55:54.1091230Z adding 'torch/include/ATen/ops/avg_pool2d_mps_dispatch.h' 2025-11-03T15:55:54.1092370Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-11-03T15:55:54.1093490Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-11-03T15:55:54.1094550Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-11-03T15:55:54.1095690Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-11-03T15:55:54.1096950Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1101460Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.1101710Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.1101890Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-11-03T15:55:54.1102020Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-11-03T15:55:54.1102150Z adding 'torch/include/ATen/ops/avg_pool3d_backward_mps_dispatch.h' 2025-11-03T15:55:54.1102340Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-11-03T15:55:54.1103470Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-11-03T15:55:54.1104690Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1105500Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-11-03T15:55:54.1106390Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-11-03T15:55:54.1107250Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-11-03T15:55:54.1108330Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-11-03T15:55:54.1109230Z adding 'torch/include/ATen/ops/avg_pool3d_mps_dispatch.h' 2025-11-03T15:55:54.1110190Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-11-03T15:55:54.1111210Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-11-03T15:55:54.1112510Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-11-03T15:55:54.1113590Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1114410Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-11-03T15:55:54.1115350Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-11-03T15:55:54.1116470Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-11-03T15:55:54.1117510Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-11-03T15:55:54.1118370Z adding 'torch/include/ATen/ops/baddbmm_mps_dispatch.h' 2025-11-03T15:55:54.1119310Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-11-03T15:55:54.1120690Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-11-03T15:55:54.1121790Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-11-03T15:55:54.1122910Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1123740Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-11-03T15:55:54.1125140Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-11-03T15:55:54.1126060Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-11-03T15:55:54.1127020Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-11-03T15:55:54.1128000Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-11-03T15:55:54.1129040Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-11-03T15:55:54.1130040Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-11-03T15:55:54.1131250Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1132060Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-11-03T15:55:54.1133140Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-11-03T15:55:54.1134190Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-11-03T15:55:54.1135070Z adding 'torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h' 2025-11-03T15:55:54.1135990Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-11-03T15:55:54.1137240Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-11-03T15:55:54.1138280Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-11-03T15:55:54.1139350Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1140200Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-11-03T15:55:54.1141340Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-11-03T15:55:54.1142480Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-11-03T15:55:54.1143480Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1144490Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-11-03T15:55:54.1145700Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-11-03T15:55:54.1146520Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-11-03T15:55:54.1147570Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-11-03T15:55:54.1148650Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-11-03T15:55:54.1149920Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1150790Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-11-03T15:55:54.1151680Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-11-03T15:55:54.1152790Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-11-03T15:55:54.1154030Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-11-03T15:55:54.1155140Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1156010Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-11-03T15:55:54.1156950Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-11-03T15:55:54.1158170Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-11-03T15:55:54.1159030Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-11-03T15:55:54.1159990Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-11-03T15:55:54.1160940Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-11-03T15:55:54.1162110Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1162940Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-11-03T15:55:54.1163820Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-11-03T15:55:54.1164880Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-11-03T15:55:54.1166060Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-11-03T15:55:54.1167120Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1167940Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-11-03T15:55:54.1168790Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-11-03T15:55:54.1169900Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-11-03T15:55:54.1170950Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-11-03T15:55:54.1171970Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-11-03T15:55:54.1173020Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1174300Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1175070Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-11-03T15:55:54.1175960Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-11-03T15:55:54.1176830Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-11-03T15:55:54.1177890Z adding 'torch/include/ATen/ops/bernoulli_mps_dispatch.h' 2025-11-03T15:55:54.1178810Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-11-03T15:55:54.1180110Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-11-03T15:55:54.1181000Z adding 'torch/include/ATen/ops/bilinear.h' 2025-11-03T15:55:54.1182220Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1183040Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-11-03T15:55:54.1184100Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-11-03T15:55:54.1185050Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-11-03T15:55:54.1186260Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-11-03T15:55:54.1187260Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-11-03T15:55:54.1188170Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-11-03T15:55:54.1189090Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h' 2025-11-03T15:55:54.1190150Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-11-03T15:55:54.1191220Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-11-03T15:55:54.1192130Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-11-03T15:55:54.1193040Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-11-03T15:55:54.1194070Z adding 'torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h' 2025-11-03T15:55:54.1194980Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-11-03T15:55:54.1195990Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-11-03T15:55:54.1196990Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-11-03T15:55:54.1198270Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1199130Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-11-03T15:55:54.1200140Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-11-03T15:55:54.1201150Z adding 'torch/include/ATen/ops/bincount.h' 2025-11-03T15:55:54.1202400Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1203250Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-11-03T15:55:54.1204120Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-11-03T15:55:54.1204940Z adding 'torch/include/ATen/ops/bincount_mps_dispatch.h' 2025-11-03T15:55:54.1206000Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-11-03T15:55:54.1207020Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-11-03T15:55:54.1207950Z adding 'torch/include/ATen/ops/binomial.h' 2025-11-03T15:55:54.1208960Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1209980Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-11-03T15:55:54.1210880Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-11-03T15:55:54.1211740Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-11-03T15:55:54.1212710Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-11-03T15:55:54.1213980Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-11-03T15:55:54.1215090Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1216110Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1217030Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-11-03T15:55:54.1218060Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-11-03T15:55:54.1218970Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-11-03T15:55:54.1219950Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-11-03T15:55:54.1220670Z adding 'torch/include/ATen/ops/bitwise_and_mps_dispatch.h' 2025-11-03T15:55:54.1221870Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-11-03T15:55:54.1223000Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-11-03T15:55:54.1224040Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-11-03T15:55:54.1225090Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1226250Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1227060Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-11-03T15:55:54.1227890Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-11-03T15:55:54.1228730Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-11-03T15:55:54.1229780Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-11-03T15:55:54.1230650Z adding 'torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h' 2025-11-03T15:55:54.1231550Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-11-03T15:55:54.1232760Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-11-03T15:55:54.1233870Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-11-03T15:55:54.1234870Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1235660Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-11-03T15:55:54.1236500Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-11-03T15:55:54.1237540Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-11-03T15:55:54.1238440Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-11-03T15:55:54.1239300Z adding 'torch/include/ATen/ops/bitwise_not_mps_dispatch.h' 2025-11-03T15:55:54.1240210Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-11-03T15:55:54.1241380Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-11-03T15:55:54.1242430Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-11-03T15:55:54.1243430Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1244350Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1245300Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-11-03T15:55:54.1246170Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-11-03T15:55:54.1247050Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-11-03T15:55:54.1247980Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-11-03T15:55:54.1248990Z adding 'torch/include/ATen/ops/bitwise_or_mps_dispatch.h' 2025-11-03T15:55:54.1249920Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-11-03T15:55:54.1251120Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-11-03T15:55:54.1252160Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-11-03T15:55:54.1253390Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1254310Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1255100Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-11-03T15:55:54.1255920Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-11-03T15:55:54.1256950Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-11-03T15:55:54.1257840Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-11-03T15:55:54.1258670Z adding 'torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h' 2025-11-03T15:55:54.1259530Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-11-03T15:55:54.1260960Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-11-03T15:55:54.1262130Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-11-03T15:55:54.1263240Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1264140Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1265120Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-11-03T15:55:54.1266000Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-11-03T15:55:54.1266840Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-11-03T15:55:54.1267690Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-11-03T15:55:54.1268730Z adding 'torch/include/ATen/ops/bitwise_xor_mps_dispatch.h' 2025-11-03T15:55:54.1269630Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-11-03T15:55:54.1270860Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-11-03T15:55:54.1271940Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-11-03T15:55:54.1274030Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1274610Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-11-03T15:55:54.1275680Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-11-03T15:55:54.1276590Z adding 'torch/include/ATen/ops/block_diag.h' 2025-11-03T15:55:54.1277820Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1278600Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-11-03T15:55:54.1279560Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-11-03T15:55:54.1280510Z adding 'torch/include/ATen/ops/bmm.h' 2025-11-03T15:55:54.1281710Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1282500Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-11-03T15:55:54.1283410Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-11-03T15:55:54.1284240Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-11-03T15:55:54.1285330Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-11-03T15:55:54.1286180Z adding 'torch/include/ATen/ops/bmm_mps_dispatch.h' 2025-11-03T15:55:54.1287110Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-11-03T15:55:54.1288160Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-11-03T15:55:54.1289250Z adding 'torch/include/ATen/ops/bmm_sparsemps_dispatch.h' 2025-11-03T15:55:54.1290150Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-11-03T15:55:54.1291140Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1291910Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-11-03T15:55:54.1293020Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-11-03T15:55:54.1293930Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-11-03T15:55:54.1294930Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1295690Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-11-03T15:55:54.1296800Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-11-03T15:55:54.1297860Z adding 'torch/include/ATen/ops/bucketize.h' 2025-11-03T15:55:54.1298860Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1299700Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-11-03T15:55:54.1300760Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-11-03T15:55:54.1301660Z adding 'torch/include/ATen/ops/bucketize_mps_dispatch.h' 2025-11-03T15:55:54.1302570Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-11-03T15:55:54.1303640Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-11-03T15:55:54.1304700Z adding 'torch/include/ATen/ops/can_cast.h' 2025-11-03T15:55:54.1305690Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1306460Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-11-03T15:55:54.1307360Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-11-03T15:55:54.1308410Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-11-03T15:55:54.1309470Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1310190Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-11-03T15:55:54.1311080Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-11-03T15:55:54.1312200Z adding 'torch/include/ATen/ops/cat.h' 2025-11-03T15:55:54.1313250Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1314110Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1314930Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-11-03T15:55:54.1315950Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-11-03T15:55:54.1317210Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-11-03T15:55:54.1318100Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-11-03T15:55:54.1318910Z adding 'torch/include/ATen/ops/cat_mps_dispatch.h' 2025-11-03T15:55:54.1320080Z adding 'torch/include/ATen/ops/cat_native.h' 2025-11-03T15:55:54.1321160Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-11-03T15:55:54.1322090Z adding 'torch/include/ATen/ops/cat_sparsemps_dispatch.h' 2025-11-03T15:55:54.1322990Z adding 'torch/include/ATen/ops/cauchy.h' 2025-11-03T15:55:54.1324180Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1325070Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-11-03T15:55:54.1325870Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-11-03T15:55:54.1326710Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-11-03T15:55:54.1327760Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-11-03T15:55:54.1328790Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-11-03T15:55:54.1329660Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-11-03T15:55:54.1330600Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1331610Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-11-03T15:55:54.1332590Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1333530Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1334250Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-11-03T15:55:54.1335390Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-11-03T15:55:54.1336270Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-11-03T15:55:54.1337180Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-11-03T15:55:54.1338030Z adding 'torch/include/ATen/ops/cdist.h' 2025-11-03T15:55:54.1339190Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1339990Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-11-03T15:55:54.1340920Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-11-03T15:55:54.1341810Z adding 'torch/include/ATen/ops/ceil.h' 2025-11-03T15:55:54.1343010Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1343810Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-11-03T15:55:54.1344690Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-11-03T15:55:54.1345490Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-11-03T15:55:54.1346540Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-11-03T15:55:54.1347380Z adding 'torch/include/ATen/ops/ceil_mps_dispatch.h' 2025-11-03T15:55:54.1348260Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-11-03T15:55:54.1349240Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-11-03T15:55:54.1350330Z adding 'torch/include/ATen/ops/ceil_sparsemps_dispatch.h' 2025-11-03T15:55:54.1351230Z adding 'torch/include/ATen/ops/celu.h' 2025-11-03T15:55:54.1352220Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1353000Z adding 'torch/include/ATen/ops/celu_native.h' 2025-11-03T15:55:54.1354170Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-11-03T15:55:54.1355160Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-11-03T15:55:54.1356120Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1356900Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-11-03T15:55:54.1358050Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-11-03T15:55:54.1358970Z adding 'torch/include/ATen/ops/chalf.h' 2025-11-03T15:55:54.1359950Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1360730Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-11-03T15:55:54.1361840Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-11-03T15:55:54.1362900Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-11-03T15:55:54.1363920Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1364700Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-11-03T15:55:54.1365750Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-11-03T15:55:54.1366600Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-11-03T15:55:54.1367560Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-11-03T15:55:54.1368450Z adding 'torch/include/ATen/ops/cholesky.h' 2025-11-03T15:55:54.1369540Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-11-03T15:55:54.1370430Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-11-03T15:55:54.1371270Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-11-03T15:55:54.1372170Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-11-03T15:55:54.1373200Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-11-03T15:55:54.1374040Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-11-03T15:55:54.1375030Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-11-03T15:55:54.1375860Z adding 'torch/include/ATen/ops/cholesky_mps_dispatch.h' 2025-11-03T15:55:54.1376870Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-11-03T15:55:54.1377830Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-11-03T15:55:54.1378780Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-11-03T15:55:54.1379760Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1380710Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-11-03T15:55:54.1381690Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-11-03T15:55:54.1382610Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-11-03T15:55:54.1383590Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1384550Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-11-03T15:55:54.1385560Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-11-03T15:55:54.1386430Z adding 'torch/include/ATen/ops/chunk.h' 2025-11-03T15:55:54.1387430Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1388450Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-11-03T15:55:54.1389390Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-11-03T15:55:54.1390460Z adding 'torch/include/ATen/ops/clamp.h' 2025-11-03T15:55:54.1391500Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1392530Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-11-03T15:55:54.1393430Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-11-03T15:55:54.1394420Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-11-03T15:55:54.1395430Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1396420Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-11-03T15:55:54.1397310Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-11-03T15:55:54.1398190Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-11-03T15:55:54.1404050Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-11-03T15:55:54.1404390Z adding 'torch/include/ATen/ops/clamp_max_mps_dispatch.h' 2025-11-03T15:55:54.1404640Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-11-03T15:55:54.1404880Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-11-03T15:55:54.1405100Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-11-03T15:55:54.1405330Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-11-03T15:55:54.1405560Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-11-03T15:55:54.1406140Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1406930Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-11-03T15:55:54.1408000Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-11-03T15:55:54.1408840Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-11-03T15:55:54.1409710Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-11-03T15:55:54.1410560Z adding 'torch/include/ATen/ops/clamp_min_mps_dispatch.h' 2025-11-03T15:55:54.1411610Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-11-03T15:55:54.1412760Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-11-03T15:55:54.1413720Z adding 'torch/include/ATen/ops/clamp_mps_dispatch.h' 2025-11-03T15:55:54.1414600Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-11-03T15:55:54.1416000Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-11-03T15:55:54.1417110Z adding 'torch/include/ATen/ops/clip.h' 2025-11-03T15:55:54.1418080Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1418900Z adding 'torch/include/ATen/ops/clip_native.h' 2025-11-03T15:55:54.1420280Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-11-03T15:55:54.1421220Z adding 'torch/include/ATen/ops/clone.h' 2025-11-03T15:55:54.1422190Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1423000Z adding 'torch/include/ATen/ops/clone_native.h' 2025-11-03T15:55:54.1424150Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-11-03T15:55:54.1425100Z adding 'torch/include/ATen/ops/clone_sparsemps_dispatch.h' 2025-11-03T15:55:54.1425910Z adding 'torch/include/ATen/ops/coalesce.h' 2025-11-03T15:55:54.1426870Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1427820Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-11-03T15:55:54.1428740Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-11-03T15:55:54.1429870Z adding 'torch/include/ATen/ops/col2im.h' 2025-11-03T15:55:54.1430850Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-11-03T15:55:54.1431950Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-11-03T15:55:54.1432850Z adding 'torch/include/ATen/ops/col2im_mps_dispatch.h' 2025-11-03T15:55:54.1433760Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-11-03T15:55:54.1434740Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-11-03T15:55:54.1435770Z adding 'torch/include/ATen/ops/col_indices.h' 2025-11-03T15:55:54.1436750Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1437580Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-11-03T15:55:54.1438560Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1439680Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1440470Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-11-03T15:55:54.1441440Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-11-03T15:55:54.1442270Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-11-03T15:55:54.1443370Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-11-03T15:55:54.1444280Z adding 'torch/include/ATen/ops/column_stack.h' 2025-11-03T15:55:54.1445280Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1446060Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-11-03T15:55:54.1447190Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-11-03T15:55:54.1448150Z adding 'torch/include/ATen/ops/combinations.h' 2025-11-03T15:55:54.1449090Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1449840Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-11-03T15:55:54.1450960Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-11-03T15:55:54.1451860Z adding 'torch/include/ATen/ops/complex.h' 2025-11-03T15:55:54.1452820Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1453630Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-11-03T15:55:54.1454650Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-11-03T15:55:54.1455490Z adding 'torch/include/ATen/ops/complex_mps_dispatch.h' 2025-11-03T15:55:54.1456340Z adding 'torch/include/ATen/ops/complex_native.h' 2025-11-03T15:55:54.1457290Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-11-03T15:55:54.1458430Z adding 'torch/include/ATen/ops/concat.h' 2025-11-03T15:55:54.1459470Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1460280Z adding 'torch/include/ATen/ops/concat_native.h' 2025-11-03T15:55:54.1461300Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-11-03T15:55:54.1462490Z adding 'torch/include/ATen/ops/concatenate.h' 2025-11-03T15:55:54.1463560Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1464330Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-11-03T15:55:54.1465360Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-11-03T15:55:54.1466410Z adding 'torch/include/ATen/ops/conj.h' 2025-11-03T15:55:54.1467410Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1468170Z adding 'torch/include/ATen/ops/conj_native.h' 2025-11-03T15:55:54.1469080Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-11-03T15:55:54.1470200Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-11-03T15:55:54.1471190Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1472080Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1472930Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-11-03T15:55:54.1474110Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-11-03T15:55:54.1474980Z adding 'torch/include/ATen/ops/conj_physical_mps_dispatch.h' 2025-11-03T15:55:54.1475820Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-11-03T15:55:54.1476790Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-11-03T15:55:54.1477920Z adding 'torch/include/ATen/ops/conj_physical_sparsecsrmps_dispatch.h' 2025-11-03T15:55:54.1478790Z adding 'torch/include/ATen/ops/conj_physical_sparsemps_dispatch.h' 2025-11-03T15:55:54.1479820Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-11-03T15:55:54.1480860Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1481880Z adding 'torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h' 2025-11-03T15:55:54.1482800Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-11-03T15:55:54.1483790Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-11-03T15:55:54.1484650Z adding 'torch/include/ATen/ops/contiguous.h' 2025-11-03T15:55:54.1485840Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1486630Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-11-03T15:55:54.1487560Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-11-03T15:55:54.1488680Z adding 'torch/include/ATen/ops/conv1d.h' 2025-11-03T15:55:54.1489920Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1490740Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-11-03T15:55:54.1491760Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-11-03T15:55:54.1492870Z adding 'torch/include/ATen/ops/conv2d.h' 2025-11-03T15:55:54.1494170Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1494930Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-11-03T15:55:54.1496400Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-11-03T15:55:54.1497540Z adding 'torch/include/ATen/ops/conv3d.h' 2025-11-03T15:55:54.1498800Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1499620Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-11-03T15:55:54.1500610Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-11-03T15:55:54.1501830Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-11-03T15:55:54.1503110Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1504050Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-11-03T15:55:54.1504920Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-11-03T15:55:54.1505910Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-11-03T15:55:54.1507030Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-11-03T15:55:54.1507980Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-11-03T15:55:54.1508970Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1509770Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-11-03T15:55:54.1510960Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-11-03T15:55:54.1511900Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1512700Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-11-03T15:55:54.1513670Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-11-03T15:55:54.1514910Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-11-03T15:55:54.1515960Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1516770Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-11-03T15:55:54.1517710Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-11-03T15:55:54.1518920Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-11-03T15:55:54.1519990Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1520780Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-11-03T15:55:54.1521710Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-11-03T15:55:54.1522920Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-11-03T15:55:54.1523950Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1524760Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-11-03T15:55:54.1525700Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-11-03T15:55:54.1527140Z adding 'torch/include/ATen/ops/convolution.h' 2025-11-03T15:55:54.1528610Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-11-03T15:55:54.1529770Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1530680Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-11-03T15:55:54.1531750Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-11-03T15:55:54.1532890Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-11-03T15:55:54.1534330Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-11-03T15:55:54.1535500Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1536530Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-11-03T15:55:54.1537650Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-11-03T15:55:54.1538690Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1539540Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-11-03T15:55:54.1540760Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-11-03T15:55:54.1542180Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-11-03T15:55:54.1543200Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1544020Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-11-03T15:55:54.1545240Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-11-03T15:55:54.1546140Z adding 'torch/include/ATen/ops/copy.h' 2025-11-03T15:55:54.1547140Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1548060Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1549020Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-11-03T15:55:54.1549900Z adding 'torch/include/ATen/ops/copy_native.h' 2025-11-03T15:55:54.1550920Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-11-03T15:55:54.1551910Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-11-03T15:55:54.1553120Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1553960Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-11-03T15:55:54.1554810Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-11-03T15:55:54.1555840Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-11-03T15:55:54.1557000Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_sparsemps_dispatch.h' 2025-11-03T15:55:54.1557870Z adding 'torch/include/ATen/ops/copy_sparsemps_dispatch.h' 2025-11-03T15:55:54.1558790Z adding 'torch/include/ATen/ops/copysign.h' 2025-11-03T15:55:54.1559780Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1560920Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1561720Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-11-03T15:55:54.1562570Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-11-03T15:55:54.1563420Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-11-03T15:55:54.1564470Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-11-03T15:55:54.1565320Z adding 'torch/include/ATen/ops/copysign_mps_dispatch.h' 2025-11-03T15:55:54.1566190Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-11-03T15:55:54.1567300Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-11-03T15:55:54.1568370Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-11-03T15:55:54.1569370Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1570250Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-11-03T15:55:54.1571140Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-11-03T15:55:54.1572230Z adding 'torch/include/ATen/ops/cos.h' 2025-11-03T15:55:54.1573240Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1574030Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-11-03T15:55:54.1574860Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-11-03T15:55:54.1575890Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-11-03T15:55:54.1576750Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-11-03T15:55:54.1577570Z adding 'torch/include/ATen/ops/cos_mps_dispatch.h' 2025-11-03T15:55:54.1578390Z adding 'torch/include/ATen/ops/cos_native.h' 2025-11-03T15:55:54.1579560Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-11-03T15:55:54.1580470Z adding 'torch/include/ATen/ops/cosh.h' 2025-11-03T15:55:54.1581470Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1582220Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-11-03T15:55:54.1583210Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-11-03T15:55:54.1584080Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-11-03T15:55:54.1584930Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-11-03T15:55:54.1585740Z adding 'torch/include/ATen/ops/cosh_mps_dispatch.h' 2025-11-03T15:55:54.1586820Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-11-03T15:55:54.1587770Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-11-03T15:55:54.1588720Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-11-03T15:55:54.1589740Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1590670Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-11-03T15:55:54.1591630Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-11-03T15:55:54.1592480Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-11-03T15:55:54.1593470Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1594430Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-11-03T15:55:54.1595360Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-11-03T15:55:54.1596330Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-11-03T15:55:54.1597370Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1598360Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-11-03T15:55:54.1599210Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-11-03T15:55:54.1600030Z adding 'torch/include/ATen/ops/count_nonzero_mps_dispatch.h' 2025-11-03T15:55:54.1600960Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-11-03T15:55:54.1602120Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-11-03T15:55:54.1603030Z adding 'torch/include/ATen/ops/cov.h' 2025-11-03T15:55:54.1604000Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1604760Z adding 'torch/include/ATen/ops/cov_native.h' 2025-11-03T15:55:54.1605880Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-11-03T15:55:54.1606800Z adding 'torch/include/ATen/ops/cross.h' 2025-11-03T15:55:54.1607790Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1608720Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-11-03T15:55:54.1609920Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1610730Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-11-03T15:55:54.1611670Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-11-03T15:55:54.1612490Z adding 'torch/include/ATen/ops/cross_native.h' 2025-11-03T15:55:54.1613660Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-11-03T15:55:54.1614530Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-11-03T15:55:54.1615510Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1616300Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-11-03T15:55:54.1617450Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1618370Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1619130Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-11-03T15:55:54.1620040Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-11-03T15:55:54.1621070Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-11-03T15:55:54.1621980Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-11-03T15:55:54.1622920Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-11-03T15:55:54.1623930Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1624910Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-11-03T15:55:54.1625950Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-11-03T15:55:54.1626930Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-11-03T15:55:54.1627870Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-11-03T15:55:54.1629100Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1629990Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-11-03T15:55:54.1630820Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-11-03T15:55:54.1631820Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-11-03T15:55:54.1633050Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1633950Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-11-03T15:55:54.1634830Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-11-03T15:55:54.1635830Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-11-03T15:55:54.1637070Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-11-03T15:55:54.1638170Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-11-03T15:55:54.1639270Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1640140Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-11-03T15:55:54.1641270Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-11-03T15:55:54.1642390Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-11-03T15:55:54.1643360Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-11-03T15:55:54.1644300Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-11-03T15:55:54.1645530Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-11-03T15:55:54.1646780Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-11-03T15:55:54.1648110Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-11-03T15:55:54.1649200Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1650270Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-11-03T15:55:54.1651210Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-11-03T15:55:54.1652280Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-11-03T15:55:54.1653230Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-11-03T15:55:54.1654290Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-11-03T15:55:54.1655340Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-11-03T15:55:54.1656530Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-11-03T15:55:54.1657640Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1658710Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-11-03T15:55:54.1659630Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-11-03T15:55:54.1660680Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-11-03T15:55:54.1661950Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-11-03T15:55:54.1663250Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1664140Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-11-03T15:55:54.1665030Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-11-03T15:55:54.1666070Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-11-03T15:55:54.1667130Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-11-03T15:55:54.1668140Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-11-03T15:55:54.1669150Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1669970Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-11-03T15:55:54.1671020Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-11-03T15:55:54.1672030Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-11-03T15:55:54.1672990Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1673820Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-11-03T15:55:54.1674810Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-11-03T15:55:54.1675790Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-11-03T15:55:54.1676660Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-11-03T15:55:54.1677620Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1678590Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-11-03T15:55:54.1679510Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-11-03T15:55:54.1680460Z adding 'torch/include/ATen/ops/cummax.h' 2025-11-03T15:55:54.1681450Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1682560Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1683350Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-11-03T15:55:54.1684410Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-11-03T15:55:54.1685310Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-11-03T15:55:54.1686520Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1687350Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-11-03T15:55:54.1688310Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-11-03T15:55:54.1689220Z adding 'torch/include/ATen/ops/cummin.h' 2025-11-03T15:55:54.1690410Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1691350Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1692160Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-11-03T15:55:54.1693220Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-11-03T15:55:54.1694410Z adding 'torch/include/ATen/ops/cumprod.h' 2025-11-03T15:55:54.1695320Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-11-03T15:55:54.1696330Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1697110Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-11-03T15:55:54.1698230Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-11-03T15:55:54.1699250Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1700130Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1700950Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-11-03T15:55:54.1701990Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-11-03T15:55:54.1702870Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-11-03T15:55:54.1703730Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-11-03T15:55:54.1704600Z adding 'torch/include/ATen/ops/cumprod_mps_dispatch.h' 2025-11-03T15:55:54.1705660Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-11-03T15:55:54.1706830Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-11-03T15:55:54.1707820Z adding 'torch/include/ATen/ops/cumsum.h' 2025-11-03T15:55:54.1708830Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1709870Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1710700Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-11-03T15:55:54.1711560Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-11-03T15:55:54.1712400Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-11-03T15:55:54.1713480Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-11-03T15:55:54.1714350Z adding 'torch/include/ATen/ops/cumsum_mps_dispatch.h' 2025-11-03T15:55:54.1715240Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-11-03T15:55:54.1716390Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-11-03T15:55:54.1717520Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-11-03T15:55:54.1718580Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1719320Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-11-03T15:55:54.1724270Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-11-03T15:55:54.1724460Z adding 'torch/include/ATen/ops/data.h' 2025-11-03T15:55:54.1724690Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1724770Z adding 'torch/include/ATen/ops/data_native.h' 2025-11-03T15:55:54.1724840Z adding 'torch/include/ATen/ops/data_ops.h' 2025-11-03T15:55:54.1725270Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-11-03T15:55:54.1726290Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1727080Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-11-03T15:55:54.1728040Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-11-03T15:55:54.1729170Z adding 'torch/include/ATen/ops/deg2rad_sparsemps_dispatch.h' 2025-11-03T15:55:54.1729990Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-11-03T15:55:54.1730990Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1731760Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-11-03T15:55:54.1732870Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-11-03T15:55:54.1733860Z adding 'torch/include/ATen/ops/dense_dim_sparsecsrmps_dispatch.h' 2025-11-03T15:55:54.1734670Z adding 'torch/include/ATen/ops/dense_dim_sparsemps_dispatch.h' 2025-11-03T15:55:54.1735590Z adding 'torch/include/ATen/ops/dequantize.h' 2025-11-03T15:55:54.1736830Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1737660Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-11-03T15:55:54.1738490Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-11-03T15:55:54.1739360Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-11-03T15:55:54.1740660Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-11-03T15:55:54.1741560Z adding 'torch/include/ATen/ops/det.h' 2025-11-03T15:55:54.1742520Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1743280Z adding 'torch/include/ATen/ops/det_native.h' 2025-11-03T15:55:54.1744380Z adding 'torch/include/ATen/ops/det_ops.h' 2025-11-03T15:55:54.1745270Z adding 'torch/include/ATen/ops/detach.h' 2025-11-03T15:55:54.1746250Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1747060Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-11-03T15:55:54.1748230Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1749230Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1749980Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-11-03T15:55:54.1750980Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-11-03T15:55:54.1752070Z adding 'torch/include/ATen/ops/detach_native.h' 2025-11-03T15:55:54.1753010Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-11-03T15:55:54.1753960Z adding 'torch/include/ATen/ops/diag.h' 2025-11-03T15:55:54.1754900Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1756030Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-11-03T15:55:54.1757050Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1757990Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1758720Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-11-03T15:55:54.1759880Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-11-03T15:55:54.1760790Z adding 'torch/include/ATen/ops/diag_native.h' 2025-11-03T15:55:54.1761790Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-11-03T15:55:54.1762810Z adding 'torch/include/ATen/ops/diagflat.h' 2025-11-03T15:55:54.1763990Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1764810Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-11-03T15:55:54.1765670Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-11-03T15:55:54.1766580Z adding 'torch/include/ATen/ops/diagonal.h' 2025-11-03T15:55:54.1767910Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-11-03T15:55:54.1769100Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1769900Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-11-03T15:55:54.1770910Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-11-03T15:55:54.1772050Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1772950Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1773800Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-11-03T15:55:54.1774770Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1775890Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1776630Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-11-03T15:55:54.1777590Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-11-03T15:55:54.1778450Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-11-03T15:55:54.1779680Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-11-03T15:55:54.1780580Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-11-03T15:55:54.1781610Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1782530Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1783460Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-11-03T15:55:54.1784430Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-11-03T15:55:54.1785360Z adding 'torch/include/ATen/ops/diff.h' 2025-11-03T15:55:54.1786360Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1787380Z adding 'torch/include/ATen/ops/diff_native.h' 2025-11-03T15:55:54.1788390Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-11-03T15:55:54.1789280Z adding 'torch/include/ATen/ops/digamma.h' 2025-11-03T15:55:54.1790330Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1791280Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-11-03T15:55:54.1792140Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-11-03T15:55:54.1792970Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-11-03T15:55:54.1793820Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-11-03T15:55:54.1794820Z adding 'torch/include/ATen/ops/digamma_mps_dispatch.h' 2025-11-03T15:55:54.1795690Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-11-03T15:55:54.1796690Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-11-03T15:55:54.1797580Z adding 'torch/include/ATen/ops/dist.h' 2025-11-03T15:55:54.1798810Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1799620Z adding 'torch/include/ATen/ops/dist_native.h' 2025-11-03T15:55:54.1800570Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-11-03T15:55:54.1801660Z adding 'torch/include/ATen/ops/div.h' 2025-11-03T15:55:54.1802870Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1803840Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1804660Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-11-03T15:55:54.1805520Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-11-03T15:55:54.1806570Z adding 'torch/include/ATen/ops/div_meta.h' 2025-11-03T15:55:54.1807460Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-11-03T15:55:54.1808320Z adding 'torch/include/ATen/ops/div_mps_dispatch.h' 2025-11-03T15:55:54.1809290Z adding 'torch/include/ATen/ops/div_native.h' 2025-11-03T15:55:54.1811310Z adding 'torch/include/ATen/ops/div_ops.h' 2025-11-03T15:55:54.1811860Z adding 'torch/include/ATen/ops/div_sparsemps_dispatch.h' 2025-11-03T15:55:54.1812810Z adding 'torch/include/ATen/ops/divide.h' 2025-11-03T15:55:54.1813840Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1814870Z adding 'torch/include/ATen/ops/divide_native.h' 2025-11-03T15:55:54.1816150Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-11-03T15:55:54.1817070Z adding 'torch/include/ATen/ops/dot.h' 2025-11-03T15:55:54.1818070Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1819060Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-11-03T15:55:54.1820000Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-11-03T15:55:54.1820820Z adding 'torch/include/ATen/ops/dot_mps_dispatch.h' 2025-11-03T15:55:54.1821640Z adding 'torch/include/ATen/ops/dot_native.h' 2025-11-03T15:55:54.1822790Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-11-03T15:55:54.1823710Z adding 'torch/include/ATen/ops/dropout.h' 2025-11-03T15:55:54.1824680Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1825440Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-11-03T15:55:54.1826560Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-11-03T15:55:54.1827500Z adding 'torch/include/ATen/ops/dsplit.h' 2025-11-03T15:55:54.1828440Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1829220Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-11-03T15:55:54.1830350Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-11-03T15:55:54.1831250Z adding 'torch/include/ATen/ops/dstack.h' 2025-11-03T15:55:54.1832250Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1832990Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-11-03T15:55:54.1834130Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-11-03T15:55:54.1835030Z adding 'torch/include/ATen/ops/einsum.h' 2025-11-03T15:55:54.1835990Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1836760Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-11-03T15:55:54.1837860Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-11-03T15:55:54.1838800Z adding 'torch/include/ATen/ops/elu.h' 2025-11-03T15:55:54.1839760Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-11-03T15:55:54.1840790Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1841790Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-11-03T15:55:54.1842700Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-11-03T15:55:54.1843540Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-11-03T15:55:54.1844420Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-11-03T15:55:54.1845460Z adding 'torch/include/ATen/ops/elu_backward_mps_dispatch.h' 2025-11-03T15:55:54.1846350Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-11-03T15:55:54.1847340Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-11-03T15:55:54.1848370Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1849330Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-11-03T15:55:54.1850220Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-11-03T15:55:54.1851080Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-11-03T15:55:54.1851950Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-11-03T15:55:54.1853000Z adding 'torch/include/ATen/ops/elu_mps_dispatch.h' 2025-11-03T15:55:54.1853860Z adding 'torch/include/ATen/ops/elu_native.h' 2025-11-03T15:55:54.1854930Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-11-03T15:55:54.1856040Z adding 'torch/include/ATen/ops/embedding.h' 2025-11-03T15:55:54.1857230Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-11-03T15:55:54.1858330Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1859050Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-11-03T15:55:54.1859990Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-11-03T15:55:54.1861120Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-11-03T15:55:54.1862170Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1863000Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-11-03T15:55:54.1864030Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-11-03T15:55:54.1865260Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1866420Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-11-03T15:55:54.1867480Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1868290Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-11-03T15:55:54.1869330Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-11-03T15:55:54.1870210Z adding 'torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h' 2025-11-03T15:55:54.1871100Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-11-03T15:55:54.1872080Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-11-03T15:55:54.1873200Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-11-03T15:55:54.1874190Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-11-03T15:55:54.1875160Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-11-03T15:55:54.1876140Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1877140Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-11-03T15:55:54.1878000Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-11-03T15:55:54.1878840Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-11-03T15:55:54.1879690Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-11-03T15:55:54.1880890Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-11-03T15:55:54.1881820Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-11-03T15:55:54.1882830Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1883590Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-11-03T15:55:54.1884720Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-11-03T15:55:54.1886320Z adding 'torch/include/ATen/ops/empty.h' 2025-11-03T15:55:54.1887280Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1888200Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1889270Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-11-03T15:55:54.1890150Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-11-03T15:55:54.1891160Z adding 'torch/include/ATen/ops/empty_like.h' 2025-11-03T15:55:54.1892210Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1893250Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-11-03T15:55:54.1894260Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-11-03T15:55:54.1895200Z adding 'torch/include/ATen/ops/empty_like_sparsemps_dispatch.h' 2025-11-03T15:55:54.1896060Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-11-03T15:55:54.1897080Z adding 'torch/include/ATen/ops/empty_mps_dispatch.h' 2025-11-03T15:55:54.1898110Z adding 'torch/include/ATen/ops/empty_native.h' 2025-11-03T15:55:54.1899290Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-11-03T15:55:54.1900530Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-11-03T15:55:54.1901800Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1902620Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-11-03T15:55:54.1903670Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-11-03T15:55:54.1904690Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-11-03T15:55:54.1905920Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1907360Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-11-03T15:55:54.1909340Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-11-03T15:55:54.1910080Z adding 'torch/include/ATen/ops/empty_sparsemps_dispatch.h' 2025-11-03T15:55:54.1911250Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-11-03T15:55:54.1912350Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1913160Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-11-03T15:55:54.1914030Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-11-03T15:55:54.1914900Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-11-03T15:55:54.1915740Z adding 'torch/include/ATen/ops/empty_strided_mps_dispatch.h' 2025-11-03T15:55:54.1916640Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-11-03T15:55:54.1917650Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-11-03T15:55:54.1918570Z adding 'torch/include/ATen/ops/eq.h' 2025-11-03T15:55:54.1919580Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1920430Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-11-03T15:55:54.1921240Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-11-03T15:55:54.1922090Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-11-03T15:55:54.1922960Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-11-03T15:55:54.1923770Z adding 'torch/include/ATen/ops/eq_mps_dispatch.h' 2025-11-03T15:55:54.1924700Z adding 'torch/include/ATen/ops/eq_native.h' 2025-11-03T15:55:54.1925820Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-11-03T15:55:54.1926690Z adding 'torch/include/ATen/ops/equal.h' 2025-11-03T15:55:54.1927600Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-11-03T15:55:54.1928410Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-11-03T15:55:54.1929220Z adding 'torch/include/ATen/ops/equal_mps_dispatch.h' 2025-11-03T15:55:54.1930030Z adding 'torch/include/ATen/ops/equal_native.h' 2025-11-03T15:55:54.1930940Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-11-03T15:55:54.1931810Z adding 'torch/include/ATen/ops/erf.h' 2025-11-03T15:55:54.1932810Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1933580Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-11-03T15:55:54.1934390Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-11-03T15:55:54.1935240Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-11-03T15:55:54.1936070Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-11-03T15:55:54.1936880Z adding 'torch/include/ATen/ops/erf_mps_dispatch.h' 2025-11-03T15:55:54.1937750Z adding 'torch/include/ATen/ops/erf_native.h' 2025-11-03T15:55:54.1938730Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-11-03T15:55:54.1939650Z adding 'torch/include/ATen/ops/erf_sparsemps_dispatch.h' 2025-11-03T15:55:54.1940510Z adding 'torch/include/ATen/ops/erfc.h' 2025-11-03T15:55:54.1941480Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1942220Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-11-03T15:55:54.1943030Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-11-03T15:55:54.1943860Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-11-03T15:55:54.1944710Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-11-03T15:55:54.1945510Z adding 'torch/include/ATen/ops/erfc_mps_dispatch.h' 2025-11-03T15:55:54.1946360Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-11-03T15:55:54.1947330Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-11-03T15:55:54.1948590Z adding 'torch/include/ATen/ops/erfinv.h' 2025-11-03T15:55:54.1949610Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1950420Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-11-03T15:55:54.1951210Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-11-03T15:55:54.1952040Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-11-03T15:55:54.1952870Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-11-03T15:55:54.1953690Z adding 'torch/include/ATen/ops/erfinv_mps_dispatch.h' 2025-11-03T15:55:54.1954550Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-11-03T15:55:54.1955520Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-11-03T15:55:54.1956390Z adding 'torch/include/ATen/ops/exp.h' 2025-11-03T15:55:54.1957300Z adding 'torch/include/ATen/ops/exp2.h' 2025-11-03T15:55:54.1958310Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1959050Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-11-03T15:55:54.1959880Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-11-03T15:55:54.1960710Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-11-03T15:55:54.1961570Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-11-03T15:55:54.1962380Z adding 'torch/include/ATen/ops/exp2_mps_dispatch.h' 2025-11-03T15:55:54.1963220Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-11-03T15:55:54.1964180Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-11-03T15:55:54.1965210Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1965910Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-11-03T15:55:54.1966720Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-11-03T15:55:54.1967540Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-11-03T15:55:54.1968390Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-11-03T15:55:54.1969180Z adding 'torch/include/ATen/ops/exp_mps_dispatch.h' 2025-11-03T15:55:54.1970030Z adding 'torch/include/ATen/ops/exp_native.h' 2025-11-03T15:55:54.1971010Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-11-03T15:55:54.1971900Z adding 'torch/include/ATen/ops/exp_sparsemps_dispatch.h' 2025-11-03T15:55:54.1972770Z adding 'torch/include/ATen/ops/expand.h' 2025-11-03T15:55:54.1973610Z adding 'torch/include/ATen/ops/expand_as.h' 2025-11-03T15:55:54.1974580Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.1975320Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-11-03T15:55:54.1976240Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-11-03T15:55:54.1977200Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1978200Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-11-03T15:55:54.1979210Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1980140Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1980870Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-11-03T15:55:54.1981820Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-11-03T15:55:54.1982660Z adding 'torch/include/ATen/ops/expand_native.h' 2025-11-03T15:55:54.1983570Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-11-03T15:55:54.1984540Z adding 'torch/include/ATen/ops/expm1.h' 2025-11-03T15:55:54.1985540Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.1986320Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-11-03T15:55:54.1987210Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-11-03T15:55:54.1988020Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-11-03T15:55:54.1988910Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-11-03T15:55:54.1989700Z adding 'torch/include/ATen/ops/expm1_mps_dispatch.h' 2025-11-03T15:55:54.1990570Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-11-03T15:55:54.1991520Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-11-03T15:55:54.1992420Z adding 'torch/include/ATen/ops/expm1_sparsemps_dispatch.h' 2025-11-03T15:55:54.1993330Z adding 'torch/include/ATen/ops/exponential.h' 2025-11-03T15:55:54.1994290Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.1995090Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-11-03T15:55:54.1995930Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-11-03T15:55:54.1996730Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-11-03T15:55:54.1997530Z adding 'torch/include/ATen/ops/exponential_mps_dispatch.h' 2025-11-03T15:55:54.1998400Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-11-03T15:55:54.1999420Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-11-03T15:55:54.2001030Z adding 'torch/include/ATen/ops/eye.h' 2025-11-03T15:55:54.2001860Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2002730Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-11-03T15:55:54.2003580Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-11-03T15:55:54.2004400Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-11-03T15:55:54.2005240Z adding 'torch/include/ATen/ops/eye_mps_dispatch.h' 2025-11-03T15:55:54.2006120Z adding 'torch/include/ATen/ops/eye_native.h' 2025-11-03T15:55:54.2007180Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-11-03T15:55:54.2008190Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-11-03T15:55:54.2009170Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-11-03T15:55:54.2010080Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-11-03T15:55:54.2011110Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2011880Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-11-03T15:55:54.2012850Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-11-03T15:55:54.2013850Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2014680Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-11-03T15:55:54.2015530Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-11-03T15:55:54.2016390Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-11-03T15:55:54.2017420Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-11-03T15:55:54.2018370Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2019150Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-11-03T15:55:54.2020090Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-11-03T15:55:54.2020980Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-11-03T15:55:54.2021970Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-11-03T15:55:54.2022870Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-11-03T15:55:54.2023870Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2024630Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-11-03T15:55:54.2025530Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-11-03T15:55:54.2026500Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2027360Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-11-03T15:55:54.2028220Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-11-03T15:55:54.2029100Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-11-03T15:55:54.2030060Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-11-03T15:55:54.2031010Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2031820Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-11-03T15:55:54.2032790Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-11-03T15:55:54.2033700Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-11-03T15:55:54.2034690Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2035560Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-11-03T15:55:54.2036550Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2037350Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-11-03T15:55:54.2038340Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-11-03T15:55:54.2039110Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-11-03T15:55:54.2040070Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-11-03T15:55:54.2041050Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-11-03T15:55:54.2041990Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2042830Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-11-03T15:55:54.2043820Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2044580Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-11-03T15:55:54.2045540Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-11-03T15:55:54.2046360Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-11-03T15:55:54.2047310Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-11-03T15:55:54.2048180Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-11-03T15:55:54.2049150Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2049910Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-11-03T15:55:54.2050830Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-11-03T15:55:54.2051670Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-11-03T15:55:54.2052630Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2053400Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-11-03T15:55:54.2054300Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-11-03T15:55:54.2055180Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-11-03T15:55:54.2056160Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2056940Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-11-03T15:55:54.2057870Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-11-03T15:55:54.2058740Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-11-03T15:55:54.2059710Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2060480Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-11-03T15:55:54.2061410Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-11-03T15:55:54.2062270Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-11-03T15:55:54.2063240Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2064020Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-11-03T15:55:54.2064920Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-11-03T15:55:54.2066010Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-11-03T15:55:54.2067120Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-11-03T15:55:54.2068190Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2068980Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-11-03T15:55:54.2069970Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-11-03T15:55:54.2070990Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2071780Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-11-03T15:55:54.2072730Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-11-03T15:55:54.2073740Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-11-03T15:55:54.2074740Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2075540Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-11-03T15:55:54.2076530Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-11-03T15:55:54.2077630Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-11-03T15:55:54.2078670Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2079500Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-11-03T15:55:54.2080470Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-11-03T15:55:54.2081350Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-11-03T15:55:54.2082330Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2083070Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-11-03T15:55:54.2083950Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-11-03T15:55:54.2085020Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-11-03T15:55:54.2086140Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-11-03T15:55:54.2087210Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2087990Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-11-03T15:55:54.2088960Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-11-03T15:55:54.2090000Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2090770Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-11-03T15:55:54.2091730Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-11-03T15:55:54.2092820Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-11-03T15:55:54.2093880Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2094650Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-11-03T15:55:54.2095630Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-11-03T15:55:54.2096720Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-11-03T15:55:54.2097850Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-11-03T15:55:54.2098890Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2099680Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-11-03T15:55:54.2100650Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-11-03T15:55:54.2101670Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2102440Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-11-03T15:55:54.2103390Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-11-03T15:55:54.2104500Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-11-03T15:55:54.2105540Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2106320Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-11-03T15:55:54.2107260Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-11-03T15:55:54.2108140Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-11-03T15:55:54.2109120Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2109880Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-11-03T15:55:54.2110810Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-11-03T15:55:54.2111850Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-11-03T15:55:54.2112970Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-11-03T15:55:54.2113990Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2114790Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-11-03T15:55:54.2115750Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-11-03T15:55:54.2116790Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2117580Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-11-03T15:55:54.2118520Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-11-03T15:55:54.2119620Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-11-03T15:55:54.2120660Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2121470Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-11-03T15:55:54.2122420Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-11-03T15:55:54.2123490Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-11-03T15:55:54.2124590Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-11-03T15:55:54.2125630Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2126450Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-11-03T15:55:54.2127360Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-11-03T15:55:54.2128360Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2129130Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-11-03T15:55:54.2130100Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-11-03T15:55:54.2131160Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-11-03T15:55:54.2132200Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2132980Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-11-03T15:55:54.2133930Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-11-03T15:55:54.2134990Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-11-03T15:55:54.2136080Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-11-03T15:55:54.2137130Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2137880Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-11-03T15:55:54.2138830Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-11-03T15:55:54.2139850Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2140620Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-11-03T15:55:54.2141570Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-11-03T15:55:54.2142530Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-11-03T15:55:54.2143540Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2144320Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-11-03T15:55:54.2145310Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-11-03T15:55:54.2146410Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-11-03T15:55:54.2147440Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2148230Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-11-03T15:55:54.2149200Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-11-03T15:55:54.2150160Z adding 'torch/include/ATen/ops/fill.h' 2025-11-03T15:55:54.2151150Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2151950Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-11-03T15:55:54.2152780Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-11-03T15:55:54.2153600Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-11-03T15:55:54.2154580Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2155330Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-11-03T15:55:54.2156260Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-11-03T15:55:54.2157060Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-11-03T15:55:54.2157850Z adding 'torch/include/ATen/ops/fill_mps_dispatch.h' 2025-11-03T15:55:54.2158760Z adding 'torch/include/ATen/ops/fill_native.h' 2025-11-03T15:55:54.2163840Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-11-03T15:55:54.2164860Z adding 'torch/include/ATen/ops/fix.h' 2025-11-03T15:55:54.2166190Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2167130Z adding 'torch/include/ATen/ops/fix_native.h' 2025-11-03T15:55:54.2169380Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-11-03T15:55:54.2170200Z adding 'torch/include/ATen/ops/flatten.h' 2025-11-03T15:55:54.2171240Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2172110Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-11-03T15:55:54.2173330Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2174220Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-11-03T15:55:54.2175150Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-11-03T15:55:54.2176020Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-11-03T15:55:54.2177380Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-11-03T15:55:54.2178240Z adding 'torch/include/ATen/ops/flip.h' 2025-11-03T15:55:54.2179250Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2180040Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-11-03T15:55:54.2181060Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-11-03T15:55:54.2181900Z adding 'torch/include/ATen/ops/flip_mps_dispatch.h' 2025-11-03T15:55:54.2182740Z adding 'torch/include/ATen/ops/flip_native.h' 2025-11-03T15:55:54.2183710Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-11-03T15:55:54.2184770Z adding 'torch/include/ATen/ops/fliplr.h' 2025-11-03T15:55:54.2185760Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2186540Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-11-03T15:55:54.2187440Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-11-03T15:55:54.2188460Z adding 'torch/include/ATen/ops/flipud.h' 2025-11-03T15:55:54.2189430Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2190190Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-11-03T15:55:54.2191090Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-11-03T15:55:54.2192310Z adding 'torch/include/ATen/ops/float_power.h' 2025-11-03T15:55:54.2193380Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2194190Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-11-03T15:55:54.2195400Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-11-03T15:55:54.2196490Z adding 'torch/include/ATen/ops/floor.h' 2025-11-03T15:55:54.2197540Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2198310Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-11-03T15:55:54.2199180Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-11-03T15:55:54.2200310Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-11-03T15:55:54.2201320Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2202150Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-11-03T15:55:54.2203020Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-11-03T15:55:54.2204070Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-11-03T15:55:54.2204920Z adding 'torch/include/ATen/ops/floor_divide_mps_dispatch.h' 2025-11-03T15:55:54.2205820Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-11-03T15:55:54.2206930Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-11-03T15:55:54.2208100Z adding 'torch/include/ATen/ops/floor_divide_sparsemps_dispatch.h' 2025-11-03T15:55:54.2208870Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-11-03T15:55:54.2209750Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-11-03T15:55:54.2210600Z adding 'torch/include/ATen/ops/floor_mps_dispatch.h' 2025-11-03T15:55:54.2211650Z adding 'torch/include/ATen/ops/floor_native.h' 2025-11-03T15:55:54.2212660Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-11-03T15:55:54.2213590Z adding 'torch/include/ATen/ops/floor_sparsemps_dispatch.h' 2025-11-03T15:55:54.2214460Z adding 'torch/include/ATen/ops/fmax.h' 2025-11-03T15:55:54.2215680Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2216450Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-11-03T15:55:54.2217290Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-11-03T15:55:54.2218110Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-11-03T15:55:54.2219160Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-11-03T15:55:54.2220010Z adding 'torch/include/ATen/ops/fmax_mps_dispatch.h' 2025-11-03T15:55:54.2220850Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-11-03T15:55:54.2221820Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-11-03T15:55:54.2222920Z adding 'torch/include/ATen/ops/fmin.h' 2025-11-03T15:55:54.2223960Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2224670Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-11-03T15:55:54.2225490Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-11-03T15:55:54.2226500Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-11-03T15:55:54.2227390Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-11-03T15:55:54.2228200Z adding 'torch/include/ATen/ops/fmin_mps_dispatch.h' 2025-11-03T15:55:54.2229030Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-11-03T15:55:54.2230140Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-11-03T15:55:54.2231490Z adding 'torch/include/ATen/ops/fmod.h' 2025-11-03T15:55:54.2232110Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2233010Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2233960Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-11-03T15:55:54.2234820Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-11-03T15:55:54.2235640Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-11-03T15:55:54.2236530Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-11-03T15:55:54.2237510Z adding 'torch/include/ATen/ops/fmod_mps_dispatch.h' 2025-11-03T15:55:54.2238430Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-11-03T15:55:54.2239570Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-11-03T15:55:54.2240500Z adding 'torch/include/ATen/ops/frac.h' 2025-11-03T15:55:54.2241720Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2242540Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-11-03T15:55:54.2243410Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-11-03T15:55:54.2244240Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-11-03T15:55:54.2245310Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-11-03T15:55:54.2246100Z adding 'torch/include/ATen/ops/frac_mps_dispatch.h' 2025-11-03T15:55:54.2246970Z adding 'torch/include/ATen/ops/frac_native.h' 2025-11-03T15:55:54.2247990Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-11-03T15:55:54.2249090Z adding 'torch/include/ATen/ops/frac_sparsemps_dispatch.h' 2025-11-03T15:55:54.2250100Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-11-03T15:55:54.2251090Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-11-03T15:55:54.2252160Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2253170Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.2254080Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.2254890Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-11-03T15:55:54.2259720Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-11-03T15:55:54.2260000Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-11-03T15:55:54.2260150Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-11-03T15:55:54.2260400Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2260540Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-11-03T15:55:54.2260750Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-11-03T15:55:54.2261630Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-11-03T15:55:54.2262530Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-11-03T15:55:54.2263410Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-11-03T15:55:54.2264680Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-11-03T15:55:54.2265660Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-11-03T15:55:54.2266670Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-11-03T15:55:54.2267670Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.2268710Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.2269650Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-11-03T15:55:54.2270670Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-11-03T15:55:54.2271680Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2272650Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-11-03T15:55:54.2273510Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-11-03T15:55:54.2275420Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-11-03T15:55:54.2276080Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-11-03T15:55:54.2277180Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-11-03T15:55:54.2278190Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-11-03T15:55:54.2279090Z adding 'torch/include/ATen/ops/frexp.h' 2025-11-03T15:55:54.2280180Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2281170Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-11-03T15:55:54.2282040Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-11-03T15:55:54.2282900Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-11-03T15:55:54.2283850Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-11-03T15:55:54.2284990Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-11-03T15:55:54.2286030Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2286830Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-11-03T15:55:54.2287780Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-11-03T15:55:54.2289410Z adding 'torch/include/ATen/ops/from_blob.h' 2025-11-03T15:55:54.2290340Z adding 'torch/include/ATen/ops/from_file.h' 2025-11-03T15:55:54.2291330Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2292180Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-11-03T15:55:54.2293240Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-11-03T15:55:54.2294290Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-11-03T15:55:54.2295630Z adding 'torch/include/ATen/ops/full.h' 2025-11-03T15:55:54.2296780Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2298050Z adding 'torch/include/ATen/ops/full_like.h' 2025-11-03T15:55:54.2299220Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2300000Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-11-03T15:55:54.2301040Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-11-03T15:55:54.2302140Z adding 'torch/include/ATen/ops/full_native.h' 2025-11-03T15:55:54.2303300Z adding 'torch/include/ATen/ops/full_ops.h' 2025-11-03T15:55:54.2304380Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-11-03T15:55:54.2305410Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2306420Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-11-03T15:55:54.2307430Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-11-03T15:55:54.2308350Z adding 'torch/include/ATen/ops/gather.h' 2025-11-03T15:55:54.2309270Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-11-03T15:55:54.2310440Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2311230Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-11-03T15:55:54.2312330Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-11-03T15:55:54.2313520Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2314660Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2315480Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-11-03T15:55:54.2316320Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-11-03T15:55:54.2317170Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-11-03T15:55:54.2318250Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-11-03T15:55:54.2319120Z adding 'torch/include/ATen/ops/gather_mps_dispatch.h' 2025-11-03T15:55:54.2320090Z adding 'torch/include/ATen/ops/gather_native.h' 2025-11-03T15:55:54.2321200Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-11-03T15:55:54.2322380Z adding 'torch/include/ATen/ops/gcd.h' 2025-11-03T15:55:54.2323510Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2324320Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-11-03T15:55:54.2325230Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-11-03T15:55:54.2326270Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-11-03T15:55:54.2327220Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-11-03T15:55:54.2328050Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-11-03T15:55:54.2329010Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-11-03T15:55:54.2330180Z adding 'torch/include/ATen/ops/ge.h' 2025-11-03T15:55:54.2331230Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2332060Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-11-03T15:55:54.2333050Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-11-03T15:55:54.2334140Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-11-03T15:55:54.2335110Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-11-03T15:55:54.2336050Z adding 'torch/include/ATen/ops/ge_mps_dispatch.h' 2025-11-03T15:55:54.2337040Z adding 'torch/include/ATen/ops/ge_native.h' 2025-11-03T15:55:54.2338380Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-11-03T15:55:54.2339330Z adding 'torch/include/ATen/ops/gelu.h' 2025-11-03T15:55:54.2340260Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-11-03T15:55:54.2341330Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2342360Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-11-03T15:55:54.2343250Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-11-03T15:55:54.2344100Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-11-03T15:55:54.2344990Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-11-03T15:55:54.2346050Z adding 'torch/include/ATen/ops/gelu_backward_mps_dispatch.h' 2025-11-03T15:55:54.2347050Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-11-03T15:55:54.2348100Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-11-03T15:55:54.2349140Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2350300Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-11-03T15:55:54.2351300Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-11-03T15:55:54.2352100Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-11-03T15:55:54.2353000Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-11-03T15:55:54.2354020Z adding 'torch/include/ATen/ops/gelu_mps_dispatch.h' 2025-11-03T15:55:54.2354940Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-11-03T15:55:54.2355970Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-11-03T15:55:54.2356950Z adding 'torch/include/ATen/ops/geometric.h' 2025-11-03T15:55:54.2358150Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2358990Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-11-03T15:55:54.2359840Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-11-03T15:55:54.2360690Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-11-03T15:55:54.2361720Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-11-03T15:55:54.2362800Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-11-03T15:55:54.2363750Z adding 'torch/include/ATen/ops/geqrf.h' 2025-11-03T15:55:54.2364640Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-11-03T15:55:54.2365690Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-11-03T15:55:54.2366540Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-11-03T15:55:54.2367520Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-11-03T15:55:54.2368420Z adding 'torch/include/ATen/ops/ger.h' 2025-11-03T15:55:54.2369580Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2370410Z adding 'torch/include/ATen/ops/ger_native.h' 2025-11-03T15:55:54.2371430Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-11-03T15:55:54.2372470Z adding 'torch/include/ATen/ops/glu.h' 2025-11-03T15:55:54.2373610Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-11-03T15:55:54.2374580Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-11-03T15:55:54.2375440Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-11-03T15:55:54.2376360Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-11-03T15:55:54.2377570Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2378390Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-11-03T15:55:54.2379240Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-11-03T15:55:54.2380080Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-11-03T15:55:54.2381270Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-11-03T15:55:54.2382160Z adding 'torch/include/ATen/ops/glu_backward_mps_dispatch.h' 2025-11-03T15:55:54.2383040Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-11-03T15:55:54.2384000Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-11-03T15:55:54.2385190Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2385960Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-11-03T15:55:54.2386810Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-11-03T15:55:54.2387690Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-11-03T15:55:54.2388850Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2389680Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-11-03T15:55:54.2390980Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-11-03T15:55:54.2391790Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-11-03T15:55:54.2392960Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-11-03T15:55:54.2393830Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-11-03T15:55:54.2394760Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-11-03T15:55:54.2395590Z adding 'torch/include/ATen/ops/glu_mps_dispatch.h' 2025-11-03T15:55:54.2396630Z adding 'torch/include/ATen/ops/glu_native.h' 2025-11-03T15:55:54.2397610Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-11-03T15:55:54.2398670Z adding 'torch/include/ATen/ops/gradient.h' 2025-11-03T15:55:54.2399710Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2400720Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-11-03T15:55:54.2401980Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-11-03T15:55:54.2402940Z adding 'torch/include/ATen/ops/greater.h' 2025-11-03T15:55:54.2403960Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2405020Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-11-03T15:55:54.2406090Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2406910Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-11-03T15:55:54.2408000Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-11-03T15:55:54.2409080Z adding 'torch/include/ATen/ops/greater_native.h' 2025-11-03T15:55:54.2410180Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-11-03T15:55:54.2411130Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-11-03T15:55:54.2412010Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-11-03T15:55:54.2413220Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-11-03T15:55:54.2414270Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2415100Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.2415950Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.2417020Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-11-03T15:55:54.2418090Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-11-03T15:55:54.2419060Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2419880Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-11-03T15:55:54.2420900Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-11-03T15:55:54.2421770Z adding 'torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h' 2025-11-03T15:55:54.2422630Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-11-03T15:55:54.2423630Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-11-03T15:55:54.2424730Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-11-03T15:55:54.2425810Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-11-03T15:55:54.2426840Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2427710Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.2428740Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.2429620Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-11-03T15:55:54.2430660Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-11-03T15:55:54.2431650Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2432600Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-11-03T15:55:54.2433460Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-11-03T15:55:54.2434270Z adding 'torch/include/ATen/ops/grid_sampler_3d_mps_dispatch.h' 2025-11-03T15:55:54.2435110Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-11-03T15:55:54.2436290Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-11-03T15:55:54.2437350Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2438110Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-11-03T15:55:54.2439090Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-11-03T15:55:54.2440130Z adding 'torch/include/ATen/ops/group_norm.h' 2025-11-03T15:55:54.2441140Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2441900Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-11-03T15:55:54.2442850Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-11-03T15:55:54.2443970Z adding 'torch/include/ATen/ops/gru.h' 2025-11-03T15:55:54.2444870Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-11-03T15:55:54.2445850Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2446630Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-11-03T15:55:54.2447750Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-11-03T15:55:54.2448780Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2449580Z adding 'torch/include/ATen/ops/gru_native.h' 2025-11-03T15:55:54.2450590Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-11-03T15:55:54.2451750Z adding 'torch/include/ATen/ops/gt.h' 2025-11-03T15:55:54.2452780Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2453570Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-11-03T15:55:54.2454470Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-11-03T15:55:54.2455560Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-11-03T15:55:54.2456480Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-11-03T15:55:54.2457360Z adding 'torch/include/ATen/ops/gt_mps_dispatch.h' 2025-11-03T15:55:54.2458310Z adding 'torch/include/ATen/ops/gt_native.h' 2025-11-03T15:55:54.2459570Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-11-03T15:55:54.2460890Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-11-03T15:55:54.2462380Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2463270Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-11-03T15:55:54.2464670Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-11-03T15:55:54.2465730Z adding 'torch/include/ATen/ops/hann_window.h' 2025-11-03T15:55:54.2466820Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2467610Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-11-03T15:55:54.2468710Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-11-03T15:55:54.2469650Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-11-03T15:55:54.2470600Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-11-03T15:55:54.2471650Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2472440Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-11-03T15:55:54.2473300Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-11-03T15:55:54.2474160Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-11-03T15:55:54.2475040Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-11-03T15:55:54.2475880Z adding 'torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h' 2025-11-03T15:55:54.2476740Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-11-03T15:55:54.2477700Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-11-03T15:55:54.2478760Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2479520Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-11-03T15:55:54.2480370Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-11-03T15:55:54.2481230Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-11-03T15:55:54.2482110Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-11-03T15:55:54.2482960Z adding 'torch/include/ATen/ops/hardshrink_mps_dispatch.h' 2025-11-03T15:55:54.2483830Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-11-03T15:55:54.2484810Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-11-03T15:55:54.2485780Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-11-03T15:55:54.2486650Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-11-03T15:55:54.2487690Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2488500Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-11-03T15:55:54.2489350Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-11-03T15:55:54.2490240Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-11-03T15:55:54.2491090Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-11-03T15:55:54.2491900Z adding 'torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h' 2025-11-03T15:55:54.2492740Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-11-03T15:55:54.2493690Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-11-03T15:55:54.2494670Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2495490Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-11-03T15:55:54.2496320Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-11-03T15:55:54.2497160Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-11-03T15:55:54.2498190Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-11-03T15:55:54.2499000Z adding 'torch/include/ATen/ops/hardsigmoid_mps_dispatch.h' 2025-11-03T15:55:54.2499950Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-11-03T15:55:54.2500940Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-11-03T15:55:54.2501830Z adding 'torch/include/ATen/ops/hardswish.h' 2025-11-03T15:55:54.2502750Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-11-03T15:55:54.2503730Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2504530Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-11-03T15:55:54.2505370Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-11-03T15:55:54.2506200Z adding 'torch/include/ATen/ops/hardswish_backward_mps_dispatch.h' 2025-11-03T15:55:54.2507030Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-11-03T15:55:54.2507970Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-11-03T15:55:54.2508850Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-11-03T15:55:54.2509700Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-11-03T15:55:54.2510550Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-11-03T15:55:54.2511380Z adding 'torch/include/ATen/ops/hardswish_mps_dispatch.h' 2025-11-03T15:55:54.2512210Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-11-03T15:55:54.2513200Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-11-03T15:55:54.2514120Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-11-03T15:55:54.2515070Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-11-03T15:55:54.2516000Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-11-03T15:55:54.2516860Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-11-03T15:55:54.2517690Z adding 'torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h' 2025-11-03T15:55:54.2518540Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-11-03T15:55:54.2519530Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-11-03T15:55:54.2520430Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-11-03T15:55:54.2521270Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-11-03T15:55:54.2522110Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-11-03T15:55:54.2522960Z adding 'torch/include/ATen/ops/hardtanh_mps_dispatch.h' 2025-11-03T15:55:54.2523830Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-11-03T15:55:54.2524830Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-11-03T15:55:54.2525760Z adding 'torch/include/ATen/ops/hash_tensor.h' 2025-11-03T15:55:54.2526820Z adding 'torch/include/ATen/ops/hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2527560Z adding 'torch/include/ATen/ops/hash_tensor_cpu_dispatch.h' 2025-11-03T15:55:54.2528420Z adding 'torch/include/ATen/ops/hash_tensor_cuda_dispatch.h' 2025-11-03T15:55:54.2529240Z adding 'torch/include/ATen/ops/hash_tensor_meta.h' 2025-11-03T15:55:54.2530120Z adding 'torch/include/ATen/ops/hash_tensor_meta_dispatch.h' 2025-11-03T15:55:54.2530970Z adding 'torch/include/ATen/ops/hash_tensor_native.h' 2025-11-03T15:55:54.2531950Z adding 'torch/include/ATen/ops/hash_tensor_ops.h' 2025-11-03T15:55:54.2533000Z adding 'torch/include/ATen/ops/heaviside.h' 2025-11-03T15:55:54.2534030Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2534840Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-11-03T15:55:54.2535680Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-11-03T15:55:54.2536530Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-11-03T15:55:54.2537400Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-11-03T15:55:54.2538260Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-11-03T15:55:54.2539230Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-11-03T15:55:54.2540180Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-11-03T15:55:54.2541140Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2541940Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-11-03T15:55:54.2542850Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-11-03T15:55:54.2543730Z adding 'torch/include/ATen/ops/histc.h' 2025-11-03T15:55:54.2544670Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-11-03T15:55:54.2545530Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-11-03T15:55:54.2546370Z adding 'torch/include/ATen/ops/histc_mps_dispatch.h' 2025-11-03T15:55:54.2547240Z adding 'torch/include/ATen/ops/histc_native.h' 2025-11-03T15:55:54.2548220Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-11-03T15:55:54.2549290Z adding 'torch/include/ATen/ops/histogram.h' 2025-11-03T15:55:54.2550280Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-11-03T15:55:54.2551210Z adding 'torch/include/ATen/ops/histogram_mps_dispatch.h' 2025-11-03T15:55:54.2552130Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-11-03T15:55:54.2553250Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-11-03T15:55:54.2554230Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-11-03T15:55:54.2555270Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2556070Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-11-03T15:55:54.2557150Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-11-03T15:55:54.2558070Z adding 'torch/include/ATen/ops/hsplit.h' 2025-11-03T15:55:54.2559070Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2559840Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-11-03T15:55:54.2560800Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-11-03T15:55:54.2561710Z adding 'torch/include/ATen/ops/hspmm.h' 2025-11-03T15:55:54.2562620Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-11-03T15:55:54.2563580Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-11-03T15:55:54.2564460Z adding 'torch/include/ATen/ops/hstack.h' 2025-11-03T15:55:54.2565470Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2566280Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-11-03T15:55:54.2567220Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-11-03T15:55:54.2568200Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-11-03T15:55:54.2569170Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-11-03T15:55:54.2570180Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2571130Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-11-03T15:55:54.2571960Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-11-03T15:55:54.2572900Z adding 'torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h' 2025-11-03T15:55:54.2573770Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-11-03T15:55:54.2574740Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-11-03T15:55:54.2575640Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-11-03T15:55:54.2576500Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-11-03T15:55:54.2577300Z adding 'torch/include/ATen/ops/huber_loss_mps_dispatch.h' 2025-11-03T15:55:54.2578160Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-11-03T15:55:54.2579120Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-11-03T15:55:54.2580010Z adding 'torch/include/ATen/ops/hypot.h' 2025-11-03T15:55:54.2580990Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2581770Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-11-03T15:55:54.2582610Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-11-03T15:55:54.2583430Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-11-03T15:55:54.2584260Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-11-03T15:55:54.2585130Z adding 'torch/include/ATen/ops/hypot_mps_dispatch.h' 2025-11-03T15:55:54.2585900Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-11-03T15:55:54.2586870Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-11-03T15:55:54.2587760Z adding 'torch/include/ATen/ops/i0.h' 2025-11-03T15:55:54.2588760Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2589530Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-11-03T15:55:54.2590360Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-11-03T15:55:54.2591180Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-11-03T15:55:54.2592010Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-11-03T15:55:54.2592830Z adding 'torch/include/ATen/ops/i0_mps_dispatch.h' 2025-11-03T15:55:54.2593670Z adding 'torch/include/ATen/ops/i0_native.h' 2025-11-03T15:55:54.2594630Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-11-03T15:55:54.2595520Z adding 'torch/include/ATen/ops/igamma.h' 2025-11-03T15:55:54.2596540Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2597280Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-11-03T15:55:54.2598110Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-11-03T15:55:54.2598940Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-11-03T15:55:54.2599810Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-11-03T15:55:54.2600610Z adding 'torch/include/ATen/ops/igamma_mps_dispatch.h' 2025-11-03T15:55:54.2601430Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-11-03T15:55:54.2602400Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-11-03T15:55:54.2603310Z adding 'torch/include/ATen/ops/igammac.h' 2025-11-03T15:55:54.2604300Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2605400Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-11-03T15:55:54.2606240Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-11-03T15:55:54.2607050Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-11-03T15:55:54.2607890Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-11-03T15:55:54.2608710Z adding 'torch/include/ATen/ops/igammac_mps_dispatch.h' 2025-11-03T15:55:54.2609530Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-11-03T15:55:54.2610500Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-11-03T15:55:54.2611450Z adding 'torch/include/ATen/ops/im2col.h' 2025-11-03T15:55:54.2612350Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-11-03T15:55:54.2613200Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-11-03T15:55:54.2614020Z adding 'torch/include/ATen/ops/im2col_mps_dispatch.h' 2025-11-03T15:55:54.2614940Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-11-03T15:55:54.2615910Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-11-03T15:55:54.2616730Z adding 'torch/include/ATen/ops/imag.h' 2025-11-03T15:55:54.2617690Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2618460Z adding 'torch/include/ATen/ops/imag_native.h' 2025-11-03T15:55:54.2619330Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-11-03T15:55:54.2620260Z adding 'torch/include/ATen/ops/index.h' 2025-11-03T15:55:54.2621210Z adding 'torch/include/ATen/ops/index_add.h' 2025-11-03T15:55:54.2622280Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2623150Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2624000Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-11-03T15:55:54.2624860Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-11-03T15:55:54.2625800Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-11-03T15:55:54.2626770Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-11-03T15:55:54.2627620Z adding 'torch/include/ATen/ops/index_add_mps_dispatch.h' 2025-11-03T15:55:54.2628520Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-11-03T15:55:54.2629690Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-11-03T15:55:54.2630700Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2631580Z adding 'torch/include/ATen/ops/index_copy.h' 2025-11-03T15:55:54.2632620Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2633500Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2634330Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-11-03T15:55:54.2635210Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-11-03T15:55:54.2636170Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-11-03T15:55:54.2637050Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-11-03T15:55:54.2637910Z adding 'torch/include/ATen/ops/index_copy_mps_dispatch.h' 2025-11-03T15:55:54.2638770Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-11-03T15:55:54.2639860Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-11-03T15:55:54.2640770Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-11-03T15:55:54.2641640Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-11-03T15:55:54.2642700Z adding 'torch/include/ATen/ops/index_fill.h' 2025-11-03T15:55:54.2643730Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2644630Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2645490Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-11-03T15:55:54.2646360Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-11-03T15:55:54.2647180Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-11-03T15:55:54.2648070Z adding 'torch/include/ATen/ops/index_fill_mps_dispatch.h' 2025-11-03T15:55:54.2649070Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-11-03T15:55:54.2650720Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-11-03T15:55:54.2651710Z adding 'torch/include/ATen/ops/index_meta.h' 2025-11-03T15:55:54.2652620Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-11-03T15:55:54.2653670Z adding 'torch/include/ATen/ops/index_mps_dispatch.h' 2025-11-03T15:55:54.2654590Z adding 'torch/include/ATen/ops/index_native.h' 2025-11-03T15:55:54.2655640Z adding 'torch/include/ATen/ops/index_ops.h' 2025-11-03T15:55:54.2656730Z adding 'torch/include/ATen/ops/index_put.h' 2025-11-03T15:55:54.2657770Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2658590Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-11-03T15:55:54.2659750Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-11-03T15:55:54.2660650Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-11-03T15:55:54.2661720Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2662530Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-11-03T15:55:54.2663400Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-11-03T15:55:54.2664310Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-11-03T15:55:54.2665220Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-11-03T15:55:54.2666080Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-11-03T15:55:54.2667170Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-11-03T15:55:54.2668170Z adding 'torch/include/ATen/ops/index_select.h' 2025-11-03T15:55:54.2669190Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-11-03T15:55:54.2670260Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2671090Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-11-03T15:55:54.2672030Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-11-03T15:55:54.2673060Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2674040Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-11-03T15:55:54.2674970Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-11-03T15:55:54.2675920Z adding 'torch/include/ATen/ops/index_select_mps_dispatch.h' 2025-11-03T15:55:54.2677000Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-11-03T15:55:54.2678170Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-11-03T15:55:54.2679090Z adding 'torch/include/ATen/ops/indices.h' 2025-11-03T15:55:54.2680140Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2681000Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-11-03T15:55:54.2682000Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2682950Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2683720Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-11-03T15:55:54.2684690Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-11-03T15:55:54.2685530Z adding 'torch/include/ATen/ops/indices_native.h' 2025-11-03T15:55:54.2686450Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-11-03T15:55:54.2687390Z adding 'torch/include/ATen/ops/indices_sparsemps_dispatch.h' 2025-11-03T15:55:54.2688280Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-11-03T15:55:54.2689430Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2690220Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-11-03T15:55:54.2691210Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-11-03T15:55:54.2692070Z adding 'torch/include/ATen/ops/inner.h' 2025-11-03T15:55:54.2693110Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2693950Z adding 'torch/include/ATen/ops/inner_native.h' 2025-11-03T15:55:54.2694980Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-11-03T15:55:54.2696020Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-11-03T15:55:54.2697160Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2698170Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-11-03T15:55:54.2699280Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-11-03T15:55:54.2700320Z adding 'torch/include/ATen/ops/int_repr.h' 2025-11-03T15:55:54.2701380Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2702180Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-11-03T15:55:54.2703170Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-11-03T15:55:54.2704020Z adding 'torch/include/ATen/ops/inverse.h' 2025-11-03T15:55:54.2705040Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2705870Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-11-03T15:55:54.2706800Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-11-03T15:55:54.2707630Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-11-03T15:55:54.2708630Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2709470Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-11-03T15:55:54.2710340Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-11-03T15:55:54.2711260Z adding 'torch/include/ATen/ops/is_coalesced_sparsemps_dispatch.h' 2025-11-03T15:55:54.2712090Z adding 'torch/include/ATen/ops/is_complex.h' 2025-11-03T15:55:54.2713030Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2713820Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-11-03T15:55:54.2714720Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-11-03T15:55:54.2715610Z adding 'torch/include/ATen/ops/is_conj.h' 2025-11-03T15:55:54.2716690Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2717510Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-11-03T15:55:54.2718370Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-11-03T15:55:54.2719410Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-11-03T15:55:54.2720450Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2721310Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-11-03T15:55:54.2722290Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-11-03T15:55:54.2723510Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-11-03T15:55:54.2724690Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2725480Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-11-03T15:55:54.2726460Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-11-03T15:55:54.2727280Z adding 'torch/include/ATen/ops/is_inference.h' 2025-11-03T15:55:54.2728210Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2729000Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-11-03T15:55:54.2729950Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-11-03T15:55:54.2730800Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-11-03T15:55:54.2731730Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2732450Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-11-03T15:55:54.2733320Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-11-03T15:55:54.2734190Z adding 'torch/include/ATen/ops/is_neg.h' 2025-11-03T15:55:54.2735090Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2735830Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-11-03T15:55:54.2736770Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-11-03T15:55:54.2737610Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-11-03T15:55:54.2738570Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2739310Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-11-03T15:55:54.2740190Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-11-03T15:55:54.2741050Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-11-03T15:55:54.2742030Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2742810Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-11-03T15:55:54.2743770Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-11-03T15:55:54.2744670Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-11-03T15:55:54.2745800Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2746680Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-11-03T15:55:54.2747520Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-11-03T15:55:54.2748340Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-11-03T15:55:54.2749230Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-11-03T15:55:54.2750080Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-11-03T15:55:54.2750900Z adding 'torch/include/ATen/ops/is_set_to_mps_dispatch.h' 2025-11-03T15:55:54.2751720Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-11-03T15:55:54.2752630Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-11-03T15:55:54.2753520Z adding 'torch/include/ATen/ops/is_signed.h' 2025-11-03T15:55:54.2754520Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2755310Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-11-03T15:55:54.2756210Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-11-03T15:55:54.2757090Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-11-03T15:55:54.2758030Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2758850Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-11-03T15:55:54.2759780Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-11-03T15:55:54.2760820Z adding 'torch/include/ATen/ops/isclose.h' 2025-11-03T15:55:54.2761760Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2762530Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-11-03T15:55:54.2763480Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-11-03T15:55:54.2764370Z adding 'torch/include/ATen/ops/isfinite.h' 2025-11-03T15:55:54.2765390Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2766160Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-11-03T15:55:54.2767030Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-11-03T15:55:54.2768140Z adding 'torch/include/ATen/ops/isin.h' 2025-11-03T15:55:54.2769300Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2770190Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-11-03T15:55:54.2771130Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-11-03T15:55:54.2772020Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-11-03T15:55:54.2772910Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-11-03T15:55:54.2773830Z adding 'torch/include/ATen/ops/isin_mps_dispatch.h' 2025-11-03T15:55:54.2774850Z adding 'torch/include/ATen/ops/isin_native.h' 2025-11-03T15:55:54.2776030Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-11-03T15:55:54.2776960Z adding 'torch/include/ATen/ops/isinf.h' 2025-11-03T15:55:54.2777980Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2778860Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-11-03T15:55:54.2779800Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-11-03T15:55:54.2780730Z adding 'torch/include/ATen/ops/isinf_sparsemps_dispatch.h' 2025-11-03T15:55:54.2781570Z adding 'torch/include/ATen/ops/isnan.h' 2025-11-03T15:55:54.2782530Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2783310Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-11-03T15:55:54.2784120Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-11-03T15:55:54.2784950Z adding 'torch/include/ATen/ops/isnan_mps_dispatch.h' 2025-11-03T15:55:54.2785790Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-11-03T15:55:54.2790960Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-11-03T15:55:54.2791190Z adding 'torch/include/ATen/ops/isnan_sparsemps_dispatch.h' 2025-11-03T15:55:54.2791270Z adding 'torch/include/ATen/ops/isneginf.h' 2025-11-03T15:55:54.2791500Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2791610Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-11-03T15:55:54.2791750Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-11-03T15:55:54.2791840Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-11-03T15:55:54.2792600Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-11-03T15:55:54.2793440Z adding 'torch/include/ATen/ops/isneginf_mps_dispatch.h' 2025-11-03T15:55:54.2794290Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-11-03T15:55:54.2795230Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-11-03T15:55:54.2796160Z adding 'torch/include/ATen/ops/isneginf_sparsemps_dispatch.h' 2025-11-03T15:55:54.2797000Z adding 'torch/include/ATen/ops/isposinf.h' 2025-11-03T15:55:54.2798050Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2798730Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-11-03T15:55:54.2799560Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-11-03T15:55:54.2800380Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-11-03T15:55:54.2801250Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-11-03T15:55:54.2802090Z adding 'torch/include/ATen/ops/isposinf_mps_dispatch.h' 2025-11-03T15:55:54.2802940Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-11-03T15:55:54.2803910Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-11-03T15:55:54.2804840Z adding 'torch/include/ATen/ops/isposinf_sparsemps_dispatch.h' 2025-11-03T15:55:54.2805620Z adding 'torch/include/ATen/ops/isreal.h' 2025-11-03T15:55:54.2806570Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2807330Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-11-03T15:55:54.2808250Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-11-03T15:55:54.2809180Z adding 'torch/include/ATen/ops/istft.h' 2025-11-03T15:55:54.2810190Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2810990Z adding 'torch/include/ATen/ops/istft_native.h' 2025-11-03T15:55:54.2812010Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-11-03T15:55:54.2812800Z adding 'torch/include/ATen/ops/item.h' 2025-11-03T15:55:54.2813760Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2814560Z adding 'torch/include/ATen/ops/item_native.h' 2025-11-03T15:55:54.2815500Z adding 'torch/include/ATen/ops/item_ops.h' 2025-11-03T15:55:54.2816850Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-11-03T15:55:54.2818610Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2819190Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-11-03T15:55:54.2820410Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-11-03T15:55:54.2821280Z adding 'torch/include/ATen/ops/kl_div.h' 2025-11-03T15:55:54.2822270Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2823040Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-11-03T15:55:54.2823930Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-11-03T15:55:54.2824820Z adding 'torch/include/ATen/ops/kron.h' 2025-11-03T15:55:54.2825780Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2826550Z adding 'torch/include/ATen/ops/kron_native.h' 2025-11-03T15:55:54.2827480Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-11-03T15:55:54.2828810Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-11-03T15:55:54.2829820Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2830760Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2831610Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-11-03T15:55:54.2832470Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-11-03T15:55:54.2833340Z adding 'torch/include/ATen/ops/kthvalue_mps_dispatch.h' 2025-11-03T15:55:54.2834230Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-11-03T15:55:54.2835310Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-11-03T15:55:54.2836260Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-11-03T15:55:54.2837170Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2837950Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-11-03T15:55:54.2838840Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-11-03T15:55:54.2839850Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-11-03T15:55:54.2840860Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2841630Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-11-03T15:55:54.2842600Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-11-03T15:55:54.2843500Z adding 'torch/include/ATen/ops/lcm.h' 2025-11-03T15:55:54.2844540Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2845320Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-11-03T15:55:54.2846180Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-11-03T15:55:54.2847010Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-11-03T15:55:54.2847870Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-11-03T15:55:54.2848720Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-11-03T15:55:54.2849700Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-11-03T15:55:54.2850630Z adding 'torch/include/ATen/ops/ldexp.h' 2025-11-03T15:55:54.2851660Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2852400Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-11-03T15:55:54.2853390Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-11-03T15:55:54.2854310Z adding 'torch/include/ATen/ops/le.h' 2025-11-03T15:55:54.2855320Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2856100Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-11-03T15:55:54.2856990Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-11-03T15:55:54.2857840Z adding 'torch/include/ATen/ops/le_meta.h' 2025-11-03T15:55:54.2858710Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-11-03T15:55:54.2859570Z adding 'torch/include/ATen/ops/le_mps_dispatch.h' 2025-11-03T15:55:54.2860490Z adding 'torch/include/ATen/ops/le_native.h' 2025-11-03T15:55:54.2861580Z adding 'torch/include/ATen/ops/le_ops.h' 2025-11-03T15:55:54.2862530Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-11-03T15:55:54.2863480Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-11-03T15:55:54.2864530Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2865330Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-11-03T15:55:54.2866190Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-11-03T15:55:54.2867050Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-11-03T15:55:54.2867940Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-11-03T15:55:54.2868760Z adding 'torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h' 2025-11-03T15:55:54.2869600Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-11-03T15:55:54.2870590Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-11-03T15:55:54.2871590Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2872390Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-11-03T15:55:54.2873240Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-11-03T15:55:54.2874070Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-11-03T15:55:54.2874950Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-11-03T15:55:54.2875770Z adding 'torch/include/ATen/ops/leaky_relu_mps_dispatch.h' 2025-11-03T15:55:54.2876640Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-11-03T15:55:54.2877620Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-11-03T15:55:54.2878580Z adding 'torch/include/ATen/ops/lerp.h' 2025-11-03T15:55:54.2879660Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2880410Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-11-03T15:55:54.2881290Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-11-03T15:55:54.2882140Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-11-03T15:55:54.2883040Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-11-03T15:55:54.2883900Z adding 'torch/include/ATen/ops/lerp_mps_dispatch.h' 2025-11-03T15:55:54.2884750Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-11-03T15:55:54.2885890Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-11-03T15:55:54.2886840Z adding 'torch/include/ATen/ops/less.h' 2025-11-03T15:55:54.2887860Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2888710Z adding 'torch/include/ATen/ops/less_equal.h' 2025-11-03T15:55:54.2889730Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2890510Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-11-03T15:55:54.2891620Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-11-03T15:55:54.2892480Z adding 'torch/include/ATen/ops/less_native.h' 2025-11-03T15:55:54.2893560Z adding 'torch/include/ATen/ops/less_ops.h' 2025-11-03T15:55:54.2894440Z adding 'torch/include/ATen/ops/lgamma.h' 2025-11-03T15:55:54.2895500Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2896220Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-11-03T15:55:54.2897050Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-11-03T15:55:54.2897890Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-11-03T15:55:54.2898710Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-11-03T15:55:54.2899520Z adding 'torch/include/ATen/ops/lgamma_mps_dispatch.h' 2025-11-03T15:55:54.2900400Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-11-03T15:55:54.2901360Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-11-03T15:55:54.2902240Z adding 'torch/include/ATen/ops/lift.h' 2025-11-03T15:55:54.2903210Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2903980Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-11-03T15:55:54.2904920Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2905720Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-11-03T15:55:54.2906710Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.2907590Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2908300Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-11-03T15:55:54.2909290Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-11-03T15:55:54.2910090Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-11-03T15:55:54.2910980Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-11-03T15:55:54.2911800Z adding 'torch/include/ATen/ops/lift_native.h' 2025-11-03T15:55:54.2912730Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-11-03T15:55:54.2913620Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-11-03T15:55:54.2914590Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2915460Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-11-03T15:55:54.2916470Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2917260Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-11-03T15:55:54.2918130Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-11-03T15:55:54.2918970Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-11-03T15:55:54.2919830Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-11-03T15:55:54.2920690Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h' 2025-11-03T15:55:54.2921600Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-11-03T15:55:54.2922610Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-11-03T15:55:54.2923460Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-11-03T15:55:54.2924420Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-11-03T15:55:54.2925400Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-11-03T15:55:54.2926480Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2927330Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-11-03T15:55:54.2928470Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-11-03T15:55:54.2929460Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-11-03T15:55:54.2930510Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2931450Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-11-03T15:55:54.2932300Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-11-03T15:55:54.2933100Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-11-03T15:55:54.2933980Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-11-03T15:55:54.2934790Z adding 'torch/include/ATen/ops/linalg_cross_mps_dispatch.h' 2025-11-03T15:55:54.2935650Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-11-03T15:55:54.2936710Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-11-03T15:55:54.2937550Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-11-03T15:55:54.2938580Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2939360Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-11-03T15:55:54.2940320Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-11-03T15:55:54.2941210Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-11-03T15:55:54.2942210Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2942960Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-11-03T15:55:54.2943920Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-11-03T15:55:54.2944820Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-11-03T15:55:54.2945760Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-11-03T15:55:54.2946610Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-11-03T15:55:54.2947430Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-11-03T15:55:54.2948400Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-11-03T15:55:54.2949390Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-11-03T15:55:54.2950430Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2951220Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-11-03T15:55:54.2952230Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-11-03T15:55:54.2953150Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-11-03T15:55:54.2954120Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2954960Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-11-03T15:55:54.2955840Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-11-03T15:55:54.2956740Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-11-03T15:55:54.2957670Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-11-03T15:55:54.2958650Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-11-03T15:55:54.2959720Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2960530Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-11-03T15:55:54.2961580Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-11-03T15:55:54.2962600Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-11-03T15:55:54.2963560Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-11-03T15:55:54.2964500Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-11-03T15:55:54.2965430Z adding 'torch/include/ATen/ops/linalg_householder_product_mps_dispatch.h' 2025-11-03T15:55:54.2966230Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-11-03T15:55:54.2967210Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-11-03T15:55:54.2968090Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-11-03T15:55:54.2969150Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2970130Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-11-03T15:55:54.2971210Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2972010Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-11-03T15:55:54.2972900Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-11-03T15:55:54.2973730Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-11-03T15:55:54.2974630Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-11-03T15:55:54.2975620Z adding 'torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h' 2025-11-03T15:55:54.2976500Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-11-03T15:55:54.2977540Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-11-03T15:55:54.2978540Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-11-03T15:55:54.2979640Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-11-03T15:55:54.2980530Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-11-03T15:55:54.2981600Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.2982560Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-11-03T15:55:54.2983580Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2984380Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-11-03T15:55:54.2985240Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-11-03T15:55:54.2986080Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-11-03T15:55:54.2986970Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-11-03T15:55:54.2987810Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-11-03T15:55:54.2989590Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-11-03T15:55:54.2990380Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-11-03T15:55:54.2991410Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-11-03T15:55:54.2992290Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-11-03T15:55:54.2993310Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.2994100Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-11-03T15:55:54.2994960Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-11-03T15:55:54.2995780Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-11-03T15:55:54.2996640Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-11-03T15:55:54.2997490Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-11-03T15:55:54.2998460Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-11-03T15:55:54.2999450Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-11-03T15:55:54.3000440Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3001300Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-11-03T15:55:54.3002170Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-11-03T15:55:54.3003050Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-11-03T15:55:54.3004070Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-11-03T15:55:54.3004970Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-11-03T15:55:54.3005990Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3006840Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-11-03T15:55:54.3007640Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-11-03T15:55:54.3008560Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-11-03T15:55:54.3009540Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3010430Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-11-03T15:55:54.3011450Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3012240Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-11-03T15:55:54.3013120Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-11-03T15:55:54.3013940Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-11-03T15:55:54.3014880Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-11-03T15:55:54.3015730Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_mps_dispatch.h' 2025-11-03T15:55:54.3016680Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-11-03T15:55:54.3017630Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-11-03T15:55:54.3018490Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-11-03T15:55:54.3019460Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-11-03T15:55:54.3020420Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-11-03T15:55:54.3021220Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-11-03T15:55:54.3022050Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-11-03T15:55:54.3023020Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-11-03T15:55:54.3024000Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-11-03T15:55:54.3025030Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3025840Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-11-03T15:55:54.3026690Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-11-03T15:55:54.3027520Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-11-03T15:55:54.3028440Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-11-03T15:55:54.3029690Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-11-03T15:55:54.3030660Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-11-03T15:55:54.3031560Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-11-03T15:55:54.3032570Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3033380Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-11-03T15:55:54.3034370Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-11-03T15:55:54.3035400Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-11-03T15:55:54.3036410Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3037220Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-11-03T15:55:54.3038030Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-11-03T15:55:54.3038860Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-11-03T15:55:54.3039940Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-11-03T15:55:54.3040990Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-11-03T15:55:54.3042090Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3042930Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-11-03T15:55:54.3044040Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-11-03T15:55:54.3044930Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-11-03T15:55:54.3045980Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3046750Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-11-03T15:55:54.3047690Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-11-03T15:55:54.3048890Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-11-03T15:55:54.3049970Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3050910Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-11-03T15:55:54.3052200Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-11-03T15:55:54.3053120Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-11-03T15:55:54.3054140Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3054990Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-11-03T15:55:54.3055910Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-11-03T15:55:54.3056960Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-11-03T15:55:54.3058020Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3058940Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-11-03T15:55:54.3060000Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-11-03T15:55:54.3061130Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-11-03T15:55:54.3062150Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3063150Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3063990Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3064820Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-11-03T15:55:54.3066080Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-11-03T15:55:54.3067130Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-11-03T15:55:54.3068170Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3068980Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-11-03T15:55:54.3069840Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-11-03T15:55:54.3070680Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-11-03T15:55:54.3071580Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-11-03T15:55:54.3072430Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-11-03T15:55:54.3073480Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-11-03T15:55:54.3074420Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-11-03T15:55:54.3075430Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3076200Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-11-03T15:55:54.3077160Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-11-03T15:55:54.3078040Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-11-03T15:55:54.3079020Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3079900Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-11-03T15:55:54.3080920Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3081680Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-11-03T15:55:54.3082690Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-11-03T15:55:54.3083570Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-11-03T15:55:54.3084490Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-11-03T15:55:54.3085470Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-11-03T15:55:54.3086420Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-11-03T15:55:54.3087380Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-11-03T15:55:54.3088230Z adding 'torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h' 2025-11-03T15:55:54.3089110Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-11-03T15:55:54.3090080Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-11-03T15:55:54.3091000Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-11-03T15:55:54.3092070Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3092800Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-11-03T15:55:54.3093810Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-11-03T15:55:54.3094700Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-11-03T15:55:54.3095690Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3096480Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-11-03T15:55:54.3097430Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-11-03T15:55:54.3098320Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-11-03T15:55:54.3099320Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3100070Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-11-03T15:55:54.3101030Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-11-03T15:55:54.3101940Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-11-03T15:55:54.3102940Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3103700Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-11-03T15:55:54.3104680Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-11-03T15:55:54.3105690Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-11-03T15:55:54.3106670Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3107500Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-11-03T15:55:54.3108370Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-11-03T15:55:54.3109300Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-11-03T15:55:54.3110310Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3111040Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-11-03T15:55:54.3112030Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-11-03T15:55:54.3112990Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-11-03T15:55:54.3114060Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3114880Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-11-03T15:55:54.3115750Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-11-03T15:55:54.3116590Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-11-03T15:55:54.3117490Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-11-03T15:55:54.3118310Z adding 'torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h' 2025-11-03T15:55:54.3119170Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-11-03T15:55:54.3120150Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-11-03T15:55:54.3121050Z adding 'torch/include/ATen/ops/linear.h' 2025-11-03T15:55:54.3122010Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-11-03T15:55:54.3123020Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3123830Z adding 'torch/include/ATen/ops/linear_backward_mps_dispatch.h' 2025-11-03T15:55:54.3124670Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-11-03T15:55:54.3125700Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-11-03T15:55:54.3126660Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3127520Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3128340Z adding 'torch/include/ATen/ops/linear_mps_dispatch.h' 2025-11-03T15:55:54.3129300Z adding 'torch/include/ATen/ops/linear_native.h' 2025-11-03T15:55:54.3130340Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-11-03T15:55:54.3131620Z adding 'torch/include/ATen/ops/linspace.h' 2025-11-03T15:55:54.3132760Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3133630Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-11-03T15:55:54.3134440Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-11-03T15:55:54.3135270Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-11-03T15:55:54.3136060Z adding 'torch/include/ATen/ops/linspace_mps_dispatch.h' 2025-11-03T15:55:54.3137030Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-11-03T15:55:54.3138400Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-11-03T15:55:54.3139300Z adding 'torch/include/ATen/ops/log.h' 2025-11-03T15:55:54.3140270Z adding 'torch/include/ATen/ops/log10.h' 2025-11-03T15:55:54.3141330Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3142160Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-11-03T15:55:54.3143040Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-11-03T15:55:54.3143880Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-11-03T15:55:54.3144750Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-11-03T15:55:54.3145590Z adding 'torch/include/ATen/ops/log10_mps_dispatch.h' 2025-11-03T15:55:54.3146440Z adding 'torch/include/ATen/ops/log10_native.h' 2025-11-03T15:55:54.3147440Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-11-03T15:55:54.3148340Z adding 'torch/include/ATen/ops/log1p.h' 2025-11-03T15:55:54.3149410Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3150130Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-11-03T15:55:54.3151000Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-11-03T15:55:54.3151950Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-11-03T15:55:54.3152840Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-11-03T15:55:54.3153650Z adding 'torch/include/ATen/ops/log1p_mps_dispatch.h' 2025-11-03T15:55:54.3154510Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-11-03T15:55:54.3155560Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-11-03T15:55:54.3156600Z adding 'torch/include/ATen/ops/log1p_sparsemps_dispatch.h' 2025-11-03T15:55:54.3157470Z adding 'torch/include/ATen/ops/log2.h' 2025-11-03T15:55:54.3158510Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3159290Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-11-03T15:55:54.3160130Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-11-03T15:55:54.3160980Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-11-03T15:55:54.3161950Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-11-03T15:55:54.3162750Z adding 'torch/include/ATen/ops/log2_mps_dispatch.h' 2025-11-03T15:55:54.3163590Z adding 'torch/include/ATen/ops/log2_native.h' 2025-11-03T15:55:54.3164540Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-11-03T15:55:54.3165540Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3166280Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-11-03T15:55:54.3167080Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-11-03T15:55:54.3168030Z adding 'torch/include/ATen/ops/log_meta.h' 2025-11-03T15:55:54.3168910Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-11-03T15:55:54.3169750Z adding 'torch/include/ATen/ops/log_mps_dispatch.h' 2025-11-03T15:55:54.3170580Z adding 'torch/include/ATen/ops/log_native.h' 2025-11-03T15:55:54.3171530Z adding 'torch/include/ATen/ops/log_normal.h' 2025-11-03T15:55:54.3172560Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3173370Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-11-03T15:55:54.3174210Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-11-03T15:55:54.3175020Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-11-03T15:55:54.3175870Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-11-03T15:55:54.3176870Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-11-03T15:55:54.3177900Z adding 'torch/include/ATen/ops/log_ops.h' 2025-11-03T15:55:54.3178910Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-11-03T15:55:54.3179860Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-11-03T15:55:54.3180900Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3181810Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3182700Z adding 'torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h' 2025-11-03T15:55:54.3183650Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-11-03T15:55:54.3184780Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-11-03T15:55:54.3185740Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3186600Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-11-03T15:55:54.3187620Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-11-03T15:55:54.3188540Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-11-03T15:55:54.3189410Z adding 'torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h' 2025-11-03T15:55:54.3190360Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-11-03T15:55:54.3191350Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-11-03T15:55:54.3192180Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-11-03T15:55:54.3193220Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-11-03T15:55:54.3194120Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-11-03T15:55:54.3195190Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3196100Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3196900Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-11-03T15:55:54.3197960Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-11-03T15:55:54.3198960Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-11-03T15:55:54.3199910Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-11-03T15:55:54.3201070Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3201950Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-11-03T15:55:54.3202800Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-11-03T15:55:54.3203680Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-11-03T15:55:54.3204540Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-11-03T15:55:54.3205370Z adding 'torch/include/ATen/ops/logaddexp2_mps_dispatch.h' 2025-11-03T15:55:54.3206300Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-11-03T15:55:54.3207290Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-11-03T15:55:54.3208330Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3209110Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-11-03T15:55:54.3209950Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-11-03T15:55:54.3210830Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-11-03T15:55:54.3211730Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-11-03T15:55:54.3212570Z adding 'torch/include/ATen/ops/logaddexp_mps_dispatch.h' 2025-11-03T15:55:54.3213490Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-11-03T15:55:54.3214480Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-11-03T15:55:54.3215520Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-11-03T15:55:54.3216570Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3217550Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3218380Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-11-03T15:55:54.3219520Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-11-03T15:55:54.3220410Z adding 'torch/include/ATen/ops/logdet.h' 2025-11-03T15:55:54.3221500Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3222350Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-11-03T15:55:54.3223240Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-11-03T15:55:54.3224320Z adding 'torch/include/ATen/ops/logical_and.h' 2025-11-03T15:55:54.3225240Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3226090Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-11-03T15:55:54.3226980Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-11-03T15:55:54.3227870Z adding 'torch/include/ATen/ops/logical_and_mps_dispatch.h' 2025-11-03T15:55:54.3228760Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-11-03T15:55:54.3229800Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-11-03T15:55:54.3230760Z adding 'torch/include/ATen/ops/logical_not.h' 2025-11-03T15:55:54.3231750Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3232600Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-11-03T15:55:54.3233450Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-11-03T15:55:54.3234420Z adding 'torch/include/ATen/ops/logical_not_mps_dispatch.h' 2025-11-03T15:55:54.3235280Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-11-03T15:55:54.3236440Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-11-03T15:55:54.3237590Z adding 'torch/include/ATen/ops/logical_or.h' 2025-11-03T15:55:54.3238660Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3239560Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-11-03T15:55:54.3240540Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-11-03T15:55:54.3241460Z adding 'torch/include/ATen/ops/logical_or_mps_dispatch.h' 2025-11-03T15:55:54.3242420Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-11-03T15:55:54.3243520Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-11-03T15:55:54.3244550Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-11-03T15:55:54.3246100Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3246950Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-11-03T15:55:54.3247860Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-11-03T15:55:54.3248700Z adding 'torch/include/ATen/ops/logical_xor_mps_dispatch.h' 2025-11-03T15:55:54.3249610Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-11-03T15:55:54.3250610Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-11-03T15:55:54.3251610Z adding 'torch/include/ATen/ops/logit.h' 2025-11-03T15:55:54.3252580Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-11-03T15:55:54.3253620Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3254420Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3255300Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3256140Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-11-03T15:55:54.3257020Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-11-03T15:55:54.3257860Z adding 'torch/include/ATen/ops/logit_backward_mps_dispatch.h' 2025-11-03T15:55:54.3258720Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-11-03T15:55:54.3259670Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-11-03T15:55:54.3260550Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-11-03T15:55:54.3261430Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-11-03T15:55:54.3262320Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-11-03T15:55:54.3263180Z adding 'torch/include/ATen/ops/logit_mps_dispatch.h' 2025-11-03T15:55:54.3264020Z adding 'torch/include/ATen/ops/logit_native.h' 2025-11-03T15:55:54.3265040Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-11-03T15:55:54.3266390Z adding 'torch/include/ATen/ops/logspace.h' 2025-11-03T15:55:54.3267570Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3268350Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-11-03T15:55:54.3269300Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-11-03T15:55:54.3270140Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-11-03T15:55:54.3271080Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-11-03T15:55:54.3272490Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-11-03T15:55:54.3273480Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-11-03T15:55:54.3274490Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3275470Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3276290Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3277060Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-11-03T15:55:54.3278080Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-11-03T15:55:54.3279050Z adding 'torch/include/ATen/ops/lshift.h' 2025-11-03T15:55:54.3280030Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3280840Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-11-03T15:55:54.3281670Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-11-03T15:55:54.3282560Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-11-03T15:55:54.3283350Z adding 'torch/include/ATen/ops/lshift_mps_dispatch.h' 2025-11-03T15:55:54.3284200Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-11-03T15:55:54.3285300Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-11-03T15:55:54.3286270Z adding 'torch/include/ATen/ops/lstm.h' 2025-11-03T15:55:54.3287170Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-11-03T15:55:54.3288150Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3288900Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-11-03T15:55:54.3289860Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-11-03T15:55:54.3290840Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3291830Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-11-03T15:55:54.3292890Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3293740Z adding 'torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h' 2025-11-03T15:55:54.3294630Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-11-03T15:55:54.3295810Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-11-03T15:55:54.3296700Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-11-03T15:55:54.3297740Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-11-03T15:55:54.3298710Z adding 'torch/include/ATen/ops/lt.h' 2025-11-03T15:55:54.3299750Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3300560Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-11-03T15:55:54.3301440Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-11-03T15:55:54.3302300Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-11-03T15:55:54.3303170Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-11-03T15:55:54.3304000Z adding 'torch/include/ATen/ops/lt_mps_dispatch.h' 2025-11-03T15:55:54.3304920Z adding 'torch/include/ATen/ops/lt_native.h' 2025-11-03T15:55:54.3309120Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-11-03T15:55:54.3309320Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-11-03T15:55:54.3309540Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3309630Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-11-03T15:55:54.3309700Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-11-03T15:55:54.3310590Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-11-03T15:55:54.3311600Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3312430Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-11-03T15:55:54.3313320Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-11-03T15:55:54.3314130Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-11-03T15:55:54.3314990Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-11-03T15:55:54.3315830Z adding 'torch/include/ATen/ops/lu_unpack_mps_dispatch.h' 2025-11-03T15:55:54.3316700Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-11-03T15:55:54.3317710Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-11-03T15:55:54.3318540Z adding 'torch/include/ATen/ops/mH.h' 2025-11-03T15:55:54.3319510Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3320270Z adding 'torch/include/ATen/ops/mH_native.h' 2025-11-03T15:55:54.3321180Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-11-03T15:55:54.3322020Z adding 'torch/include/ATen/ops/mT.h' 2025-11-03T15:55:54.3322970Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3323700Z adding 'torch/include/ATen/ops/mT_native.h' 2025-11-03T15:55:54.3324600Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-11-03T15:55:54.3325540Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-11-03T15:55:54.3326590Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3327480Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-11-03T15:55:54.3328390Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-11-03T15:55:54.3329350Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-11-03T15:55:54.3330400Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3331260Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-11-03T15:55:54.3332110Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-11-03T15:55:54.3332940Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-11-03T15:55:54.3333800Z adding 'torch/include/ATen/ops/masked_fill_mps_dispatch.h' 2025-11-03T15:55:54.3334760Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-11-03T15:55:54.3336000Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-11-03T15:55:54.3336930Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-11-03T15:55:54.3337920Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-11-03T15:55:54.3338950Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3339730Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-11-03T15:55:54.3340720Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-11-03T15:55:54.3341860Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3342740Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-11-03T15:55:54.3343580Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-11-03T15:55:54.3344410Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-11-03T15:55:54.3345260Z adding 'torch/include/ATen/ops/masked_scatter_mps_dispatch.h' 2025-11-03T15:55:54.3346170Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-11-03T15:55:54.3347160Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-11-03T15:55:54.3348100Z adding 'torch/include/ATen/ops/masked_select.h' 2025-11-03T15:55:54.3349070Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-11-03T15:55:54.3350100Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3350920Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-11-03T15:55:54.3351850Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-11-03T15:55:54.3352740Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-11-03T15:55:54.3353600Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-11-03T15:55:54.3354430Z adding 'torch/include/ATen/ops/masked_select_mps_dispatch.h' 2025-11-03T15:55:54.3355350Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-11-03T15:55:54.3356270Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-11-03T15:55:54.3357380Z adding 'torch/include/ATen/ops/matmul.h' 2025-11-03T15:55:54.3358370Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-11-03T15:55:54.3359460Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3360310Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-11-03T15:55:54.3361340Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-11-03T15:55:54.3362270Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3363030Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-11-03T15:55:54.3363970Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-11-03T15:55:54.3364810Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-11-03T15:55:54.3365770Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3366520Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-11-03T15:55:54.3367410Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-11-03T15:55:54.3368300Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-11-03T15:55:54.3369200Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-11-03T15:55:54.3370260Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3370990Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-11-03T15:55:54.3371920Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-11-03T15:55:54.3372880Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3373760Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-11-03T15:55:54.3374660Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-11-03T15:55:54.3375560Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-11-03T15:55:54.3376560Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3377350Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-11-03T15:55:54.3378280Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-11-03T15:55:54.3379360Z adding 'torch/include/ATen/ops/max.h' 2025-11-03T15:55:54.3380470Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3381440Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3382350Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-11-03T15:55:54.3383280Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-11-03T15:55:54.3384270Z adding 'torch/include/ATen/ops/max_meta.h' 2025-11-03T15:55:54.3385310Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-11-03T15:55:54.3386260Z adding 'torch/include/ATen/ops/max_mps_dispatch.h' 2025-11-03T15:55:54.3387270Z adding 'torch/include/ATen/ops/max_native.h' 2025-11-03T15:55:54.3388570Z adding 'torch/include/ATen/ops/max_ops.h' 2025-11-03T15:55:54.3389580Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-11-03T15:55:54.3390630Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3391460Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-11-03T15:55:54.3392440Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-11-03T15:55:54.3393460Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-11-03T15:55:54.3394510Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3395350Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-11-03T15:55:54.3396290Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-11-03T15:55:54.3397190Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-11-03T15:55:54.3398200Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-11-03T15:55:54.3399290Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3400270Z adding 'torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h' 2025-11-03T15:55:54.3401110Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-11-03T15:55:54.3402120Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-11-03T15:55:54.3403150Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3404000Z adding 'torch/include/ATen/ops/max_pool2d_mps_dispatch.h' 2025-11-03T15:55:54.3404900Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-11-03T15:55:54.3405840Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-11-03T15:55:54.3406970Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-11-03T15:55:54.3408050Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-11-03T15:55:54.3409100Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3410020Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3410890Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3411760Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-11-03T15:55:54.3412660Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-11-03T15:55:54.3413600Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h' 2025-11-03T15:55:54.3414470Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-11-03T15:55:54.3415480Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-11-03T15:55:54.3416490Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3417330Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-11-03T15:55:54.3418210Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-11-03T15:55:54.3419100Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-11-03T15:55:54.3420060Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-11-03T15:55:54.3420980Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h' 2025-11-03T15:55:54.3421870Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-11-03T15:55:54.3422950Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-11-03T15:55:54.3423840Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-11-03T15:55:54.3424800Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3425590Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-11-03T15:55:54.3426510Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-11-03T15:55:54.3427540Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-11-03T15:55:54.3428540Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-11-03T15:55:54.3429490Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3430350Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3431230Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_mps_dispatch.h' 2025-11-03T15:55:54.3432130Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-11-03T15:55:54.3433230Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-11-03T15:55:54.3434210Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-11-03T15:55:54.3435100Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-11-03T15:55:54.3435960Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_mps_dispatch.h' 2025-11-03T15:55:54.3436850Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-11-03T15:55:54.3437940Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-11-03T15:55:54.3439030Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-11-03T15:55:54.3440150Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-11-03T15:55:54.3441010Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-11-03T15:55:54.3441870Z adding 'torch/include/ATen/ops/max_unpool2d_mps_dispatch.h' 2025-11-03T15:55:54.3442750Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-11-03T15:55:54.3443680Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-11-03T15:55:54.3444810Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-11-03T15:55:54.3445770Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-11-03T15:55:54.3446650Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-11-03T15:55:54.3447520Z adding 'torch/include/ATen/ops/max_unpool3d_mps_dispatch.h' 2025-11-03T15:55:54.3448400Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-11-03T15:55:54.3449380Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-11-03T15:55:54.3450280Z adding 'torch/include/ATen/ops/maximum.h' 2025-11-03T15:55:54.3451300Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3452100Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-11-03T15:55:54.3452900Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-11-03T15:55:54.3453750Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-11-03T15:55:54.3454630Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-11-03T15:55:54.3455390Z adding 'torch/include/ATen/ops/maximum_mps_dispatch.h' 2025-11-03T15:55:54.3456230Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-11-03T15:55:54.3457190Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-11-03T15:55:54.3458250Z adding 'torch/include/ATen/ops/mean.h' 2025-11-03T15:55:54.3459240Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3460160Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3461380Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3462190Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-11-03T15:55:54.3463050Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-11-03T15:55:54.3463890Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-11-03T15:55:54.3464760Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-11-03T15:55:54.3465580Z adding 'torch/include/ATen/ops/mean_mps_dispatch.h' 2025-11-03T15:55:54.3466520Z adding 'torch/include/ATen/ops/mean_native.h' 2025-11-03T15:55:54.3467670Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-11-03T15:55:54.3468720Z adding 'torch/include/ATen/ops/median.h' 2025-11-03T15:55:54.3469720Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3470630Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3471470Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-11-03T15:55:54.3472300Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-11-03T15:55:54.3473150Z adding 'torch/include/ATen/ops/median_mps_dispatch.h' 2025-11-03T15:55:54.3474070Z adding 'torch/include/ATen/ops/median_native.h' 2025-11-03T15:55:54.3475200Z adding 'torch/include/ATen/ops/median_ops.h' 2025-11-03T15:55:54.3476120Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-11-03T15:55:54.3477090Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3477860Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-11-03T15:55:54.3478810Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-11-03T15:55:54.3479930Z adding 'torch/include/ATen/ops/min.h' 2025-11-03T15:55:54.3480920Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3481830Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3482650Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-11-03T15:55:54.3483530Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-11-03T15:55:54.3484450Z adding 'torch/include/ATen/ops/min_meta.h' 2025-11-03T15:55:54.3485320Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-11-03T15:55:54.3486190Z adding 'torch/include/ATen/ops/min_mps_dispatch.h' 2025-11-03T15:55:54.3487120Z adding 'torch/include/ATen/ops/min_native.h' 2025-11-03T15:55:54.3488740Z adding 'torch/include/ATen/ops/min_ops.h' 2025-11-03T15:55:54.3489440Z adding 'torch/include/ATen/ops/minimum.h' 2025-11-03T15:55:54.3490500Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3491290Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-11-03T15:55:54.3492130Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-11-03T15:55:54.3492980Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-11-03T15:55:54.3493810Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-11-03T15:55:54.3494640Z adding 'torch/include/ATen/ops/minimum_mps_dispatch.h' 2025-11-03T15:55:54.3495470Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-11-03T15:55:54.3496400Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-11-03T15:55:54.3497420Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-11-03T15:55:54.3498480Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-11-03T15:55:54.3499580Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3500370Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3501260Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-11-03T15:55:54.3502340Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-11-03T15:55:54.3503340Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3504180Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-11-03T15:55:54.3505050Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-11-03T15:55:54.3506110Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-11-03T15:55:54.3507340Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-11-03T15:55:54.3508420Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-11-03T15:55:54.3509390Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-11-03T15:55:54.3510240Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-11-03T15:55:54.3511190Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-11-03T15:55:54.3512230Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3513070Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-11-03T15:55:54.3513940Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-11-03T15:55:54.3514960Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-11-03T15:55:54.3515960Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-11-03T15:55:54.3516910Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-11-03T15:55:54.3517740Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-11-03T15:55:54.3518690Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-11-03T15:55:54.3520000Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-11-03T15:55:54.3521090Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3521940Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-11-03T15:55:54.3522820Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-11-03T15:55:54.3523850Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-11-03T15:55:54.3525050Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-11-03T15:55:54.3526140Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3527030Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-11-03T15:55:54.3527840Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-11-03T15:55:54.3528860Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-11-03T15:55:54.3529940Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-11-03T15:55:54.3531120Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-11-03T15:55:54.3532190Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3533070Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3534000Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-11-03T15:55:54.3535240Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-11-03T15:55:54.3536270Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3537110Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-11-03T15:55:54.3538010Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-11-03T15:55:54.3539140Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-11-03T15:55:54.3540020Z adding 'torch/include/ATen/ops/mish.h' 2025-11-03T15:55:54.3540900Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-11-03T15:55:54.3541920Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3542700Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3543520Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3544320Z adding 'torch/include/ATen/ops/mish_backward_mps_dispatch.h' 2025-11-03T15:55:54.3545150Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-11-03T15:55:54.3546050Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-11-03T15:55:54.3547040Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3547800Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-11-03T15:55:54.3548640Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-11-03T15:55:54.3549470Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-11-03T15:55:54.3550330Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-11-03T15:55:54.3551130Z adding 'torch/include/ATen/ops/mish_mps_dispatch.h' 2025-11-03T15:55:54.3551990Z adding 'torch/include/ATen/ops/mish_native.h' 2025-11-03T15:55:54.3552960Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-11-03T15:55:54.3553930Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-11-03T15:55:54.3554880Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-11-03T15:55:54.3555860Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3556660Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-11-03T15:55:54.3557590Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-11-03T15:55:54.3558430Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-11-03T15:55:54.3559390Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-11-03T15:55:54.3560550Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-11-03T15:55:54.3561640Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3562440Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-11-03T15:55:54.3563440Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-11-03T15:55:54.3564360Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-11-03T15:55:54.3565330Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-11-03T15:55:54.3566350Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3567190Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-11-03T15:55:54.3568220Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3568960Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-11-03T15:55:54.3569920Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-11-03T15:55:54.3570780Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-11-03T15:55:54.3571800Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-11-03T15:55:54.3572770Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-11-03T15:55:54.3573760Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3574530Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-11-03T15:55:54.3575520Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-11-03T15:55:54.3576470Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3577240Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-11-03T15:55:54.3578180Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-11-03T15:55:54.3579140Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-11-03T15:55:54.3580150Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-11-03T15:55:54.3581180Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3581960Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-11-03T15:55:54.3582980Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-11-03T15:55:54.3583960Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3584720Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-11-03T15:55:54.3585690Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-11-03T15:55:54.3586620Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-11-03T15:55:54.3587600Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-11-03T15:55:54.3588640Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3589390Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-11-03T15:55:54.3590380Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-11-03T15:55:54.3591360Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3592120Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-11-03T15:55:54.3593120Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-11-03T15:55:54.3594380Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-11-03T15:55:54.3595470Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3596290Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-11-03T15:55:54.3597290Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-11-03T15:55:54.3598500Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-11-03T15:55:54.3599600Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3600390Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-11-03T15:55:54.3601400Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-11-03T15:55:54.3602450Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-11-03T15:55:54.3603680Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-11-03T15:55:54.3604800Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3605700Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3606640Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-11-03T15:55:54.3607900Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-11-03T15:55:54.3608970Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3609780Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-11-03T15:55:54.3610660Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-11-03T15:55:54.3611790Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-11-03T15:55:54.3612710Z adding 'torch/include/ATen/ops/mm.h' 2025-11-03T15:55:54.3613720Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3614490Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-11-03T15:55:54.3615390Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-11-03T15:55:54.3616220Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-11-03T15:55:54.3617080Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-11-03T15:55:54.3617930Z adding 'torch/include/ATen/ops/mm_mps_dispatch.h' 2025-11-03T15:55:54.3618800Z adding 'torch/include/ATen/ops/mm_native.h' 2025-11-03T15:55:54.3619820Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-11-03T15:55:54.3620720Z adding 'torch/include/ATen/ops/mm_sparsemps_dispatch.h' 2025-11-03T15:55:54.3621660Z adding 'torch/include/ATen/ops/mode.h' 2025-11-03T15:55:54.3622650Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3623600Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3624350Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-11-03T15:55:54.3625190Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-11-03T15:55:54.3626050Z adding 'torch/include/ATen/ops/mode_native.h' 2025-11-03T15:55:54.3627100Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-11-03T15:55:54.3628000Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-11-03T15:55:54.3628970Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3629740Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-11-03T15:55:54.3630690Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-11-03T15:55:54.3631570Z adding 'torch/include/ATen/ops/movedim.h' 2025-11-03T15:55:54.3632530Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3633280Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-11-03T15:55:54.3634220Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-11-03T15:55:54.3635580Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-11-03T15:55:54.3636670Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3637550Z adding 'torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h' 2025-11-03T15:55:54.3638410Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-11-03T15:55:54.3639470Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-11-03T15:55:54.3640850Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-11-03T15:55:54.3641940Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3642790Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h' 2025-11-03T15:55:54.3643670Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-11-03T15:55:54.3644760Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-11-03T15:55:54.3645580Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-11-03T15:55:54.3646510Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-11-03T15:55:54.3647440Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3648300Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3649130Z adding 'torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h' 2025-11-03T15:55:54.3650000Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-11-03T15:55:54.3650970Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-11-03T15:55:54.3652000Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3652730Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-11-03T15:55:54.3653560Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-11-03T15:55:54.3654390Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-11-03T15:55:54.3655260Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-11-03T15:55:54.3656070Z adding 'torch/include/ATen/ops/mse_loss_mps_dispatch.h' 2025-11-03T15:55:54.3656940Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-11-03T15:55:54.3657880Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-11-03T15:55:54.3658770Z adding 'torch/include/ATen/ops/msort.h' 2025-11-03T15:55:54.3659740Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3660510Z adding 'torch/include/ATen/ops/msort_native.h' 2025-11-03T15:55:54.3661420Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-11-03T15:55:54.3662370Z adding 'torch/include/ATen/ops/mul.h' 2025-11-03T15:55:54.3663350Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3664280Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3665060Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-11-03T15:55:54.3665950Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-11-03T15:55:54.3666760Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-11-03T15:55:54.3667630Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-11-03T15:55:54.3668460Z adding 'torch/include/ATen/ops/mul_mps_dispatch.h' 2025-11-03T15:55:54.3669440Z adding 'torch/include/ATen/ops/mul_native.h' 2025-11-03T15:55:54.3670560Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-11-03T15:55:54.3671470Z adding 'torch/include/ATen/ops/mul_sparsemps_dispatch.h' 2025-11-03T15:55:54.3672420Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-11-03T15:55:54.3673420Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-11-03T15:55:54.3674390Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3675260Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3676160Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-11-03T15:55:54.3677180Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-11-03T15:55:54.3678450Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-11-03T15:55:54.3679300Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-11-03T15:55:54.3680200Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-11-03T15:55:54.3681190Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-11-03T15:55:54.3682140Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-11-03T15:55:54.3683100Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-11-03T15:55:54.3684050Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3684930Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3685770Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-11-03T15:55:54.3686760Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-11-03T15:55:54.3687740Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3688600Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-11-03T15:55:54.3689540Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-11-03T15:55:54.3690430Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-11-03T15:55:54.3691290Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-11-03T15:55:54.3692290Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-11-03T15:55:54.3693200Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-11-03T15:55:54.3694120Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-11-03T15:55:54.3695180Z adding 'torch/include/ATen/ops/multinomial.h' 2025-11-03T15:55:54.3696190Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-11-03T15:55:54.3697080Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-11-03T15:55:54.3697960Z adding 'torch/include/ATen/ops/multinomial_mps_dispatch.h' 2025-11-03T15:55:54.3698830Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-11-03T15:55:54.3699810Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-11-03T15:55:54.3700730Z adding 'torch/include/ATen/ops/multiply.h' 2025-11-03T15:55:54.3701710Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3702480Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-11-03T15:55:54.3703550Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-11-03T15:55:54.3704430Z adding 'torch/include/ATen/ops/mv.h' 2025-11-03T15:55:54.3705380Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3706170Z adding 'torch/include/ATen/ops/mv_native.h' 2025-11-03T15:55:54.3707120Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-11-03T15:55:54.3708010Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-11-03T15:55:54.3709020Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3709800Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-11-03T15:55:54.3710630Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-11-03T15:55:54.3711450Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-11-03T15:55:54.3712430Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-11-03T15:55:54.3713400Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-11-03T15:55:54.3714400Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3715210Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-11-03T15:55:54.3716060Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-11-03T15:55:54.3716900Z adding 'torch/include/ATen/ops/nan_to_num_mps_dispatch.h' 2025-11-03T15:55:54.3717800Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-11-03T15:55:54.3718810Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-11-03T15:55:54.3719770Z adding 'torch/include/ATen/ops/nan_to_num_sparsemps_dispatch.h' 2025-11-03T15:55:54.3720670Z adding 'torch/include/ATen/ops/nanmean.h' 2025-11-03T15:55:54.3721650Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3722420Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-11-03T15:55:54.3723410Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-11-03T15:55:54.3724440Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-11-03T15:55:54.3725450Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3726360Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3727180Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-11-03T15:55:54.3728000Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-11-03T15:55:54.3728820Z adding 'torch/include/ATen/ops/nanmedian_mps_dispatch.h' 2025-11-03T15:55:54.3729730Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-11-03T15:55:54.3730890Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-11-03T15:55:54.3731920Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-11-03T15:55:54.3732990Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3733790Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-11-03T15:55:54.3734860Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-11-03T15:55:54.3735810Z adding 'torch/include/ATen/ops/nansum.h' 2025-11-03T15:55:54.3736740Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-11-03T15:55:54.3737570Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-11-03T15:55:54.3738450Z adding 'torch/include/ATen/ops/nansum_mps_dispatch.h' 2025-11-03T15:55:54.3739270Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-11-03T15:55:54.3740250Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-11-03T15:55:54.3741210Z adding 'torch/include/ATen/ops/narrow.h' 2025-11-03T15:55:54.3742220Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3743170Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-11-03T15:55:54.3744240Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3745030Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-11-03T15:55:54.3745880Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-11-03T15:55:54.3746860Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-11-03T15:55:54.3747770Z adding 'torch/include/ATen/ops/narrow_copy_sparsemps_dispatch.h' 2025-11-03T15:55:54.3748580Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-11-03T15:55:54.3749550Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-11-03T15:55:54.3750580Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-11-03T15:55:54.3751660Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-11-03T15:55:54.3752740Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3753540Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3754410Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3755250Z adding 'torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h' 2025-11-03T15:55:54.3756210Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-11-03T15:55:54.3757410Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-11-03T15:55:54.3758360Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-11-03T15:55:54.3759290Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-11-03T15:55:54.3760160Z adding 'torch/include/ATen/ops/native_batch_norm_mps_dispatch.h' 2025-11-03T15:55:54.3761110Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-11-03T15:55:54.3762190Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-11-03T15:55:54.3763150Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-11-03T15:55:54.3764200Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3765030Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-11-03T15:55:54.3765850Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-11-03T15:55:54.3766750Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-11-03T15:55:54.3767650Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-11-03T15:55:54.3768590Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-11-03T15:55:54.3769590Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3770400Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3771230Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3772050Z adding 'torch/include/ATen/ops/native_dropout_backward_mps_dispatch.h' 2025-11-03T15:55:54.3772890Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-11-03T15:55:54.3773850Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-11-03T15:55:54.3774800Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3775590Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-11-03T15:55:54.3776430Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-11-03T15:55:54.3777250Z adding 'torch/include/ATen/ops/native_dropout_mps_dispatch.h' 2025-11-03T15:55:54.3778110Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-11-03T15:55:54.3779120Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-11-03T15:55:54.3780310Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-11-03T15:55:54.3781680Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-11-03T15:55:54.3782780Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3783640Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3784490Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3785400Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-11-03T15:55:54.3786480Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-11-03T15:55:54.3787540Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3788390Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-11-03T15:55:54.3789250Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-11-03T15:55:54.3790130Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-11-03T15:55:54.3791190Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-11-03T15:55:54.3792390Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-11-03T15:55:54.3793800Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-11-03T15:55:54.3794930Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3795770Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3796660Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3797520Z adding 'torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h' 2025-11-03T15:55:54.3798450Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-11-03T15:55:54.3799540Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-11-03T15:55:54.3800600Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3801430Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-11-03T15:55:54.3802280Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-11-03T15:55:54.3803120Z adding 'torch/include/ATen/ops/native_layer_norm_mps_dispatch.h' 2025-11-03T15:55:54.3804020Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-11-03T15:55:54.3805070Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-11-03T15:55:54.3806040Z adding 'torch/include/ATen/ops/native_norm.h' 2025-11-03T15:55:54.3807080Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3807890Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-11-03T15:55:54.3808970Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-11-03T15:55:54.3809900Z adding 'torch/include/ATen/ops/native_norm_sparsemps_dispatch.h' 2025-11-03T15:55:54.3810810Z adding 'torch/include/ATen/ops/ne.h' 2025-11-03T15:55:54.3812090Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3812590Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-11-03T15:55:54.3813470Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-11-03T15:55:54.3814310Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-11-03T15:55:54.3815160Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-11-03T15:55:54.3815990Z adding 'torch/include/ATen/ops/ne_mps_dispatch.h' 2025-11-03T15:55:54.3816890Z adding 'torch/include/ATen/ops/ne_native.h' 2025-11-03T15:55:54.3818000Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-11-03T15:55:54.3818910Z adding 'torch/include/ATen/ops/neg.h' 2025-11-03T15:55:54.3819890Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3820650Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-11-03T15:55:54.3821500Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-11-03T15:55:54.3822290Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-11-03T15:55:54.3823150Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-11-03T15:55:54.3823940Z adding 'torch/include/ATen/ops/neg_mps_dispatch.h' 2025-11-03T15:55:54.3824810Z adding 'torch/include/ATen/ops/neg_native.h' 2025-11-03T15:55:54.3825780Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-11-03T15:55:54.3826670Z adding 'torch/include/ATen/ops/neg_sparsemps_dispatch.h' 2025-11-03T15:55:54.3827520Z adding 'torch/include/ATen/ops/negative.h' 2025-11-03T15:55:54.3828510Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3829250Z adding 'torch/include/ATen/ops/negative_native.h' 2025-11-03T15:55:54.3833310Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-11-03T15:55:54.3833540Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-11-03T15:55:54.3833790Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3834570Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-11-03T15:55:54.3834690Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-11-03T15:55:54.3834820Z adding 'torch/include/ATen/ops/new_empty.h' 2025-11-03T15:55:54.3835900Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3836630Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-11-03T15:55:54.3837620Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-11-03T15:55:54.3838760Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-11-03T15:55:54.3839800Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3840770Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3841520Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-11-03T15:55:54.3842520Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-11-03T15:55:54.3843600Z adding 'torch/include/ATen/ops/new_full.h' 2025-11-03T15:55:54.3844680Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3845460Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-11-03T15:55:54.3846460Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-11-03T15:55:54.3847530Z adding 'torch/include/ATen/ops/new_ones.h' 2025-11-03T15:55:54.3848580Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3849370Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-11-03T15:55:54.3850360Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-11-03T15:55:54.3851460Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-11-03T15:55:54.3852510Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3853300Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-11-03T15:55:54.3854300Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-11-03T15:55:54.3855210Z adding 'torch/include/ATen/ops/nextafter.h' 2025-11-03T15:55:54.3856240Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3857010Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-11-03T15:55:54.3857830Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-11-03T15:55:54.3858790Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-11-03T15:55:54.3859680Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-11-03T15:55:54.3860500Z adding 'torch/include/ATen/ops/nextafter_mps_dispatch.h' 2025-11-03T15:55:54.3861330Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-11-03T15:55:54.3862340Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-11-03T15:55:54.3863440Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-11-03T15:55:54.3864570Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-11-03T15:55:54.3865810Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-11-03T15:55:54.3866890Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3867780Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3868720Z adding 'torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h' 2025-11-03T15:55:54.3869650Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-11-03T15:55:54.3870700Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-11-03T15:55:54.3871720Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3872820Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-11-03T15:55:54.3873860Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-11-03T15:55:54.3874800Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-11-03T15:55:54.3875700Z adding 'torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h' 2025-11-03T15:55:54.3876700Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-11-03T15:55:54.3877790Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-11-03T15:55:54.3878640Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-11-03T15:55:54.3879640Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-11-03T15:55:54.3880840Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-11-03T15:55:54.3881990Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3882810Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-11-03T15:55:54.3883730Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-11-03T15:55:54.3884820Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-11-03T15:55:54.3885600Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-11-03T15:55:54.3886490Z adding 'torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h' 2025-11-03T15:55:54.3887460Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-11-03T15:55:54.3888550Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-11-03T15:55:54.3889550Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3890660Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-11-03T15:55:54.3891710Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3892580Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-11-03T15:55:54.3893500Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-11-03T15:55:54.3894360Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-11-03T15:55:54.3895690Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-11-03T15:55:54.3896570Z adding 'torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h' 2025-11-03T15:55:54.3897470Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-11-03T15:55:54.3898490Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-11-03T15:55:54.3899380Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-11-03T15:55:54.3900350Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-11-03T15:55:54.3901350Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3902130Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-11-03T15:55:54.3903080Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-11-03T15:55:54.3904120Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-11-03T15:55:54.3905020Z adding 'torch/include/ATen/ops/nonzero.h' 2025-11-03T15:55:54.3905940Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-11-03T15:55:54.3906770Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-11-03T15:55:54.3907590Z adding 'torch/include/ATen/ops/nonzero_mps_dispatch.h' 2025-11-03T15:55:54.3908410Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-11-03T15:55:54.3909330Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-11-03T15:55:54.3910380Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3911100Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-11-03T15:55:54.3911990Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-11-03T15:55:54.3912920Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-11-03T15:55:54.3913960Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-11-03T15:55:54.3914930Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-11-03T15:55:54.3915810Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-11-03T15:55:54.3916670Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-11-03T15:55:54.3917610Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-11-03T15:55:54.3918820Z adding 'torch/include/ATen/ops/norm.h' 2025-11-03T15:55:54.3919850Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3920800Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.3921670Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3922510Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-11-03T15:55:54.3923380Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-11-03T15:55:54.3924240Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-11-03T15:55:54.3925250Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3925980Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-11-03T15:55:54.3926890Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-11-03T15:55:54.3927730Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-11-03T15:55:54.3928650Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-11-03T15:55:54.3929500Z adding 'torch/include/ATen/ops/norm_mps_dispatch.h' 2025-11-03T15:55:54.3930480Z adding 'torch/include/ATen/ops/norm_native.h' 2025-11-03T15:55:54.3932100Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-11-03T15:55:54.3933010Z adding 'torch/include/ATen/ops/norm_sparsemps_dispatch.h' 2025-11-03T15:55:54.3934860Z adding 'torch/include/ATen/ops/normal.h' 2025-11-03T15:55:54.3935650Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3936530Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-11-03T15:55:54.3937410Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-11-03T15:55:54.3938300Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-11-03T15:55:54.3939170Z adding 'torch/include/ATen/ops/normal_mps_dispatch.h' 2025-11-03T15:55:54.3940250Z adding 'torch/include/ATen/ops/normal_native.h' 2025-11-03T15:55:54.3941850Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-11-03T15:55:54.3942750Z adding 'torch/include/ATen/ops/not_equal.h' 2025-11-03T15:55:54.3943810Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3944580Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-11-03T15:55:54.3945680Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-11-03T15:55:54.3946660Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-11-03T15:55:54.3947670Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3948450Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-11-03T15:55:54.3949490Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-11-03T15:55:54.3950320Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-11-03T15:55:54.3951270Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3952040Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-11-03T15:55:54.3952920Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-11-03T15:55:54.3953780Z adding 'torch/include/ATen/ops/one_hot.h' 2025-11-03T15:55:54.3954750Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3955500Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-11-03T15:55:54.3956380Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-11-03T15:55:54.3957700Z adding 'torch/include/ATen/ops/ones.h' 2025-11-03T15:55:54.3958770Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3959700Z adding 'torch/include/ATen/ops/ones_like.h' 2025-11-03T15:55:54.3960750Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.3961530Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-11-03T15:55:54.3962530Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-11-03T15:55:54.3963410Z adding 'torch/include/ATen/ops/ones_native.h' 2025-11-03T15:55:54.3964510Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-11-03T15:55:54.3965420Z adding 'torch/include/ATen/ops/or.h' 2025-11-03T15:55:54.3966400Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3967160Z adding 'torch/include/ATen/ops/or_native.h' 2025-11-03T15:55:54.3968180Z adding 'torch/include/ATen/ops/or_ops.h' 2025-11-03T15:55:54.3969100Z adding 'torch/include/ATen/ops/orgqr.h' 2025-11-03T15:55:54.3970070Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3970860Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-11-03T15:55:54.3971800Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-11-03T15:55:54.3972740Z adding 'torch/include/ATen/ops/ormqr.h' 2025-11-03T15:55:54.3973710Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-11-03T15:55:54.3974510Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-11-03T15:55:54.3975340Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-11-03T15:55:54.3976290Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-11-03T15:55:54.3977180Z adding 'torch/include/ATen/ops/outer.h' 2025-11-03T15:55:54.3978160Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3978950Z adding 'torch/include/ATen/ops/outer_native.h' 2025-11-03T15:55:54.3979970Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-11-03T15:55:54.3980830Z adding 'torch/include/ATen/ops/output_nr.h' 2025-11-03T15:55:54.3981870Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3982650Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-11-03T15:55:54.3983600Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-11-03T15:55:54.3984610Z adding 'torch/include/ATen/ops/pad.h' 2025-11-03T15:55:54.3985680Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3986540Z adding 'torch/include/ATen/ops/pad_native.h' 2025-11-03T15:55:54.3987460Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-11-03T15:55:54.3988390Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-11-03T15:55:54.3989410Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3990270Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-11-03T15:55:54.3991150Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-11-03T15:55:54.3992040Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-11-03T15:55:54.3993040Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3993810Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-11-03T15:55:54.3994700Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-11-03T15:55:54.3995570Z adding 'torch/include/ATen/ops/pdist.h' 2025-11-03T15:55:54.3996580Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.3997390Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-11-03T15:55:54.3998320Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-11-03T15:55:54.3999210Z adding 'torch/include/ATen/ops/permute.h' 2025-11-03T15:55:54.4000120Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4001090Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-11-03T15:55:54.4001920Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4003010Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4003660Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-11-03T15:55:54.4004580Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-11-03T15:55:54.4005490Z adding 'torch/include/ATen/ops/permute_mps_dispatch.h' 2025-11-03T15:55:54.4006330Z adding 'torch/include/ATen/ops/permute_native.h' 2025-11-03T15:55:54.4007190Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-11-03T15:55:54.4008020Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-11-03T15:55:54.4009020Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4009770Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-11-03T15:55:54.4010650Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-11-03T15:55:54.4011490Z adding 'torch/include/ATen/ops/pinverse.h' 2025-11-03T15:55:54.4012510Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4013260Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-11-03T15:55:54.4014150Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-11-03T15:55:54.4015070Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-11-03T15:55:54.4016050Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4017000Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4017730Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-11-03T15:55:54.4018630Z adding 'torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h' 2025-11-03T15:55:54.4019500Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-11-03T15:55:54.4020440Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-11-03T15:55:54.4021360Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-11-03T15:55:54.4022320Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4023230Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4023960Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-11-03T15:55:54.4024790Z adding 'torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h' 2025-11-03T15:55:54.4025630Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-11-03T15:55:54.4026580Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-11-03T15:55:54.4027470Z adding 'torch/include/ATen/ops/poisson.h' 2025-11-03T15:55:54.4028440Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4029240Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-11-03T15:55:54.4030050Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-11-03T15:55:54.4030890Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-11-03T15:55:54.4031770Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-11-03T15:55:54.4032790Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4033570Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-11-03T15:55:54.4034490Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-11-03T15:55:54.4035420Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-11-03T15:55:54.4036310Z adding 'torch/include/ATen/ops/polar.h' 2025-11-03T15:55:54.4037260Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4038060Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-11-03T15:55:54.4038900Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-11-03T15:55:54.4039720Z adding 'torch/include/ATen/ops/polar_mps_dispatch.h' 2025-11-03T15:55:54.4040590Z adding 'torch/include/ATen/ops/polar_native.h' 2025-11-03T15:55:54.4041490Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-11-03T15:55:54.4042410Z adding 'torch/include/ATen/ops/polygamma.h' 2025-11-03T15:55:54.4043360Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4044320Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4045020Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-11-03T15:55:54.4045880Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-11-03T15:55:54.4046680Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-11-03T15:55:54.4047600Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-11-03T15:55:54.4048400Z adding 'torch/include/ATen/ops/polygamma_mps_dispatch.h' 2025-11-03T15:55:54.4049250Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-11-03T15:55:54.4050250Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-11-03T15:55:54.4051080Z adding 'torch/include/ATen/ops/positive.h' 2025-11-03T15:55:54.4052050Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4052790Z adding 'torch/include/ATen/ops/positive_native.h' 2025-11-03T15:55:54.4053680Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-11-03T15:55:54.4054660Z adding 'torch/include/ATen/ops/pow.h' 2025-11-03T15:55:54.4055680Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4056490Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-11-03T15:55:54.4057390Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-11-03T15:55:54.4058210Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-11-03T15:55:54.4059090Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-11-03T15:55:54.4059940Z adding 'torch/include/ATen/ops/pow_mps_dispatch.h' 2025-11-03T15:55:54.4060850Z adding 'torch/include/ATen/ops/pow_native.h' 2025-11-03T15:55:54.4062040Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-11-03T15:55:54.4062960Z adding 'torch/include/ATen/ops/pow_sparsemps_dispatch.h' 2025-11-03T15:55:54.4063830Z adding 'torch/include/ATen/ops/prelu.h' 2025-11-03T15:55:54.4064780Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4065540Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-11-03T15:55:54.4066420Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-11-03T15:55:54.4067440Z adding 'torch/include/ATen/ops/prod.h' 2025-11-03T15:55:54.4068430Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4069360Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4070200Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4071030Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-11-03T15:55:54.4071880Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-11-03T15:55:54.4072720Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-11-03T15:55:54.4073620Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-11-03T15:55:54.4074480Z adding 'torch/include/ATen/ops/prod_mps_dispatch.h' 2025-11-03T15:55:54.4075420Z adding 'torch/include/ATen/ops/prod_native.h' 2025-11-03T15:55:54.4076550Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-11-03T15:55:54.4077430Z adding 'torch/include/ATen/ops/promote_types.h' 2025-11-03T15:55:54.4078400Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4079170Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-11-03T15:55:54.4080060Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-11-03T15:55:54.4080950Z adding 'torch/include/ATen/ops/put.h' 2025-11-03T15:55:54.4081930Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4082710Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-11-03T15:55:54.4083530Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-11-03T15:55:54.4084340Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-11-03T15:55:54.4085170Z adding 'torch/include/ATen/ops/put_native.h' 2025-11-03T15:55:54.4086180Z adding 'torch/include/ATen/ops/put_ops.h' 2025-11-03T15:55:54.4087060Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-11-03T15:55:54.4087950Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-11-03T15:55:54.4088800Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-11-03T15:55:54.4089690Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-11-03T15:55:54.4090650Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4091410Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-11-03T15:55:54.4092360Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-11-03T15:55:54.4093250Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-11-03T15:55:54.4094250Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4095090Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-11-03T15:55:54.4096000Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-11-03T15:55:54.4096770Z adding 'torch/include/ATen/ops/q_scale.h' 2025-11-03T15:55:54.4097600Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-11-03T15:55:54.4098480Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-11-03T15:55:54.4099360Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-11-03T15:55:54.4100180Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-11-03T15:55:54.4101120Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-11-03T15:55:54.4101990Z adding 'torch/include/ATen/ops/qr.h' 2025-11-03T15:55:54.4102980Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4103750Z adding 'torch/include/ATen/ops/qr_native.h' 2025-11-03T15:55:54.4104690Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-11-03T15:55:54.4105820Z adding 'torch/include/ATen/ops/qscheme.h' 2025-11-03T15:55:54.4106670Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-11-03T15:55:54.4107550Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-11-03T15:55:54.4108560Z adding 'torch/include/ATen/ops/quantile.h' 2025-11-03T15:55:54.4109600Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4110440Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-11-03T15:55:54.4111510Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-11-03T15:55:54.4112490Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-11-03T15:55:54.4113480Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4114280Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-11-03T15:55:54.4115130Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-11-03T15:55:54.4115960Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-11-03T15:55:54.4116950Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-11-03T15:55:54.4118040Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-11-03T15:55:54.4119110Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4119970Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-11-03T15:55:54.4120880Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-11-03T15:55:54.4121790Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-11-03T15:55:54.4122780Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4123600Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-11-03T15:55:54.4124450Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-11-03T15:55:54.4125300Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-11-03T15:55:54.4126270Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-11-03T15:55:54.4127180Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-11-03T15:55:54.4128370Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-11-03T15:55:54.4129400Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-11-03T15:55:54.4130390Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4131180Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-11-03T15:55:54.4132210Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-11-03T15:55:54.4133170Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-11-03T15:55:54.4134170Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4134970Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-11-03T15:55:54.4135970Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-11-03T15:55:54.4136920Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-11-03T15:55:54.4137910Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4138700Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-11-03T15:55:54.4139700Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-11-03T15:55:54.4140660Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-11-03T15:55:54.4141700Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4142510Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-11-03T15:55:54.4143470Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-11-03T15:55:54.4144420Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-11-03T15:55:54.4145410Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4146210Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-11-03T15:55:54.4147290Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-11-03T15:55:54.4148190Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-11-03T15:55:54.4149220Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4150060Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-11-03T15:55:54.4151130Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-11-03T15:55:54.4152230Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-11-03T15:55:54.4153340Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4154190Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-11-03T15:55:54.4155240Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-11-03T15:55:54.4156180Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-11-03T15:55:54.4157190Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4157940Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-11-03T15:55:54.4158930Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-11-03T15:55:54.4159810Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-11-03T15:55:54.4160770Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4161550Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-11-03T15:55:54.4162520Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-11-03T15:55:54.4163440Z adding 'torch/include/ATen/ops/rad2deg_sparsemps_dispatch.h' 2025-11-03T15:55:54.4165720Z adding 'torch/include/ATen/ops/rand.h' 2025-11-03T15:55:54.4166810Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4167720Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4168670Z adding 'torch/include/ATen/ops/rand_like.h' 2025-11-03T15:55:54.4169720Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4170500Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-11-03T15:55:54.4171510Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-11-03T15:55:54.4172490Z adding 'torch/include/ATen/ops/rand_native.h' 2025-11-03T15:55:54.4173780Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-11-03T15:55:54.4176160Z adding 'torch/include/ATen/ops/randint.h' 2025-11-03T15:55:54.4177240Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4179180Z adding 'torch/include/ATen/ops/randint_like.h' 2025-11-03T15:55:54.4180210Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4181130Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-11-03T15:55:54.4182440Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-11-03T15:55:54.4183380Z adding 'torch/include/ATen/ops/randint_native.h' 2025-11-03T15:55:54.4184720Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-11-03T15:55:54.4187010Z adding 'torch/include/ATen/ops/randn.h' 2025-11-03T15:55:54.4188020Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4188970Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4189890Z adding 'torch/include/ATen/ops/randn_like.h' 2025-11-03T15:55:54.4190930Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4191900Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-11-03T15:55:54.4192690Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-11-03T15:55:54.4193650Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-11-03T15:55:54.4194600Z adding 'torch/include/ATen/ops/randn_native.h' 2025-11-03T15:55:54.4195980Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-11-03T15:55:54.4197060Z adding 'torch/include/ATen/ops/random.h' 2025-11-03T15:55:54.4198170Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4199090Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-11-03T15:55:54.4199970Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-11-03T15:55:54.4200870Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-11-03T15:55:54.4201740Z adding 'torch/include/ATen/ops/random_mps_dispatch.h' 2025-11-03T15:55:54.4202720Z adding 'torch/include/ATen/ops/random_native.h' 2025-11-03T15:55:54.4203970Z adding 'torch/include/ATen/ops/random_ops.h' 2025-11-03T15:55:54.4205610Z adding 'torch/include/ATen/ops/randperm.h' 2025-11-03T15:55:54.4206530Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4207380Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-11-03T15:55:54.4208250Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-11-03T15:55:54.4209100Z adding 'torch/include/ATen/ops/randperm_mps_dispatch.h' 2025-11-03T15:55:54.4209990Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-11-03T15:55:54.4211140Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-11-03T15:55:54.4212180Z adding 'torch/include/ATen/ops/range.h' 2025-11-03T15:55:54.4213260Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4214070Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-11-03T15:55:54.4214910Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-11-03T15:55:54.4215740Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-11-03T15:55:54.4216550Z adding 'torch/include/ATen/ops/range_mps_dispatch.h' 2025-11-03T15:55:54.4217420Z adding 'torch/include/ATen/ops/range_native.h' 2025-11-03T15:55:54.4218540Z adding 'torch/include/ATen/ops/range_ops.h' 2025-11-03T15:55:54.4219410Z adding 'torch/include/ATen/ops/ravel.h' 2025-11-03T15:55:54.4220370Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4221120Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-11-03T15:55:54.4222010Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-11-03T15:55:54.4222890Z adding 'torch/include/ATen/ops/real.h' 2025-11-03T15:55:54.4223850Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4224750Z adding 'torch/include/ATen/ops/real_native.h' 2025-11-03T15:55:54.4225600Z adding 'torch/include/ATen/ops/real_ops.h' 2025-11-03T15:55:54.4226640Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-11-03T15:55:54.4227670Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4228520Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-11-03T15:55:54.4229390Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-11-03T15:55:54.4230240Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-11-03T15:55:54.4231140Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-11-03T15:55:54.4231950Z adding 'torch/include/ATen/ops/reciprocal_mps_dispatch.h' 2025-11-03T15:55:54.4232780Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-11-03T15:55:54.4233750Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-11-03T15:55:54.4234620Z adding 'torch/include/ATen/ops/record_stream.h' 2025-11-03T15:55:54.4235580Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-11-03T15:55:54.4236460Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-11-03T15:55:54.4237420Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-11-03T15:55:54.4238300Z adding 'torch/include/ATen/ops/refine_names.h' 2025-11-03T15:55:54.4239560Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4240310Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-11-03T15:55:54.4241230Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-11-03T15:55:54.4242390Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-11-03T15:55:54.4243530Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-11-03T15:55:54.4244610Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4245430Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.4246340Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.4247170Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-11-03T15:55:54.4248090Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-11-03T15:55:54.4248950Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h' 2025-11-03T15:55:54.4249830Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-11-03T15:55:54.4250820Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-11-03T15:55:54.4251830Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4252640Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-11-03T15:55:54.4253500Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-11-03T15:55:54.4254350Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-11-03T15:55:54.4255240Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-11-03T15:55:54.4256130Z adding 'torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h' 2025-11-03T15:55:54.4257000Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-11-03T15:55:54.4257970Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-11-03T15:55:54.4259020Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-11-03T15:55:54.4260170Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-11-03T15:55:54.4261210Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.4262150Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.4262970Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h' 2025-11-03T15:55:54.4263870Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-11-03T15:55:54.4264850Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-11-03T15:55:54.4265760Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-11-03T15:55:54.4266700Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-11-03T15:55:54.4267500Z adding 'torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h' 2025-11-03T15:55:54.4268390Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-11-03T15:55:54.4269320Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-11-03T15:55:54.4270350Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-11-03T15:55:54.4271470Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-11-03T15:55:54.4272630Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4273370Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.4274220Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.4275150Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-11-03T15:55:54.4276140Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-11-03T15:55:54.4277100Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h' 2025-11-03T15:55:54.4278020Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-11-03T15:55:54.4279060Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-11-03T15:55:54.4280140Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4280900Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-11-03T15:55:54.4281830Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-11-03T15:55:54.4282710Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-11-03T15:55:54.4283590Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-11-03T15:55:54.4284520Z adding 'torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h' 2025-11-03T15:55:54.4285430Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-11-03T15:55:54.4286470Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-11-03T15:55:54.4287440Z adding 'torch/include/ATen/ops/relu.h' 2025-11-03T15:55:54.4288410Z adding 'torch/include/ATen/ops/relu6.h' 2025-11-03T15:55:54.4289410Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4290210Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-11-03T15:55:54.4291190Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-11-03T15:55:54.4292170Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4293020Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-11-03T15:55:54.4293870Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-11-03T15:55:54.4294790Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-11-03T15:55:54.4295630Z adding 'torch/include/ATen/ops/relu_mps_dispatch.h' 2025-11-03T15:55:54.4296630Z adding 'torch/include/ATen/ops/relu_native.h' 2025-11-03T15:55:54.4297650Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-11-03T15:55:54.4298590Z adding 'torch/include/ATen/ops/relu_sparsemps_dispatch.h' 2025-11-03T15:55:54.4299590Z adding 'torch/include/ATen/ops/remainder.h' 2025-11-03T15:55:54.4300620Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4301570Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4302380Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-11-03T15:55:54.4303280Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-11-03T15:55:54.4304160Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-11-03T15:55:54.4305170Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-11-03T15:55:54.4306060Z adding 'torch/include/ATen/ops/remainder_mps_dispatch.h' 2025-11-03T15:55:54.4306950Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-11-03T15:55:54.4308200Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-11-03T15:55:54.4309160Z adding 'torch/include/ATen/ops/rename.h' 2025-11-03T15:55:54.4310100Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4310880Z adding 'torch/include/ATen/ops/rename_native.h' 2025-11-03T15:55:54.4311870Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-11-03T15:55:54.4312830Z adding 'torch/include/ATen/ops/renorm.h' 2025-11-03T15:55:54.4313910Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4314810Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-11-03T15:55:54.4315660Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-11-03T15:55:54.4316500Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-11-03T15:55:54.4317390Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-11-03T15:55:54.4318260Z adding 'torch/include/ATen/ops/renorm_mps_dispatch.h' 2025-11-03T15:55:54.4319130Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-11-03T15:55:54.4320190Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-11-03T15:55:54.4321240Z adding 'torch/include/ATen/ops/repeat.h' 2025-11-03T15:55:54.4322330Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4323600Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-11-03T15:55:54.4324730Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4325600Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4326450Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-11-03T15:55:54.4327280Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-11-03T15:55:54.4328110Z adding 'torch/include/ATen/ops/repeat_interleave_mps_dispatch.h' 2025-11-03T15:55:54.4329000Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-11-03T15:55:54.4330940Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-11-03T15:55:54.4331560Z adding 'torch/include/ATen/ops/repeat_mps_dispatch.h' 2025-11-03T15:55:54.4332450Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-11-03T15:55:54.4333400Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-11-03T15:55:54.4334480Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-11-03T15:55:54.4335660Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-11-03T15:55:54.4336780Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4337590Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.4338480Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.4339350Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-11-03T15:55:54.4340260Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-11-03T15:55:54.4341130Z adding 'torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h' 2025-11-03T15:55:54.4342040Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-11-03T15:55:54.4343060Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-11-03T15:55:54.4344270Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4345100Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-11-03T15:55:54.4346030Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-11-03T15:55:54.4346880Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-11-03T15:55:54.4347780Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-11-03T15:55:54.4348620Z adding 'torch/include/ATen/ops/replication_pad1d_mps_dispatch.h' 2025-11-03T15:55:54.4349500Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-11-03T15:55:54.4350460Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-11-03T15:55:54.4351540Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-11-03T15:55:54.4352720Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-11-03T15:55:54.4353700Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.4354580Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.4355470Z adding 'torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h' 2025-11-03T15:55:54.4356360Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-11-03T15:55:54.4357340Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-11-03T15:55:54.4358370Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4359160Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-11-03T15:55:54.4360000Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-11-03T15:55:54.4364130Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-11-03T15:55:54.4364410Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-11-03T15:55:54.4364540Z adding 'torch/include/ATen/ops/replication_pad2d_mps_dispatch.h' 2025-11-03T15:55:54.4364650Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-11-03T15:55:54.4364750Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-11-03T15:55:54.4365360Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-11-03T15:55:54.4366470Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-11-03T15:55:54.4367500Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.4368420Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.4369330Z adding 'torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h' 2025-11-03T15:55:54.4370210Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-11-03T15:55:54.4371200Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-11-03T15:55:54.4372220Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4372980Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-11-03T15:55:54.4373830Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-11-03T15:55:54.4374690Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-11-03T15:55:54.4375550Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-11-03T15:55:54.4376390Z adding 'torch/include/ATen/ops/replication_pad3d_mps_dispatch.h' 2025-11-03T15:55:54.4377240Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-11-03T15:55:54.4378190Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-11-03T15:55:54.4379030Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-11-03T15:55:54.4380010Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4380790Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-11-03T15:55:54.4381690Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-11-03T15:55:54.4382630Z adding 'torch/include/ATen/ops/reshape.h' 2025-11-03T15:55:54.4383570Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-11-03T15:55:54.4384540Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4385450Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-11-03T15:55:54.4386160Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-11-03T15:55:54.4387090Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-11-03T15:55:54.4388030Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4388940Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-11-03T15:55:54.4389720Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-11-03T15:55:54.4390640Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-11-03T15:55:54.4391760Z adding 'torch/include/ATen/ops/resize.h' 2025-11-03T15:55:54.4392820Z adding 'torch/include/ATen/ops/resize_as.h' 2025-11-03T15:55:54.4393780Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4394580Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-11-03T15:55:54.4395620Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-11-03T15:55:54.4396550Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-11-03T15:55:54.4397550Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4398480Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-11-03T15:55:54.4399320Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-11-03T15:55:54.4400360Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-11-03T15:55:54.4401370Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4402180Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-11-03T15:55:54.4403040Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-11-03T15:55:54.4403890Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-11-03T15:55:54.4404710Z adding 'torch/include/ATen/ops/resize_mps_dispatch.h' 2025-11-03T15:55:54.4405630Z adding 'torch/include/ATen/ops/resize_native.h' 2025-11-03T15:55:54.4406780Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-11-03T15:55:54.4407650Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-11-03T15:55:54.4408630Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4409380Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-11-03T15:55:54.4410280Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-11-03T15:55:54.4411120Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-11-03T15:55:54.4412120Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4412860Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-11-03T15:55:54.4413760Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-11-03T15:55:54.4414700Z adding 'torch/include/ATen/ops/result_type.h' 2025-11-03T15:55:54.4415690Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4416460Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-11-03T15:55:54.4417540Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-11-03T15:55:54.4418380Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-11-03T15:55:54.4419330Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4420080Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-11-03T15:55:54.4420960Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-11-03T15:55:54.4421790Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-11-03T15:55:54.4422760Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4423760Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-11-03T15:55:54.4424770Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-11-03T15:55:54.4425720Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-11-03T15:55:54.4426730Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4427520Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-11-03T15:55:54.4428470Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-11-03T15:55:54.4429380Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-11-03T15:55:54.4430300Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-11-03T15:55:54.4431290Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4432090Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-11-03T15:55:54.4433040Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-11-03T15:55:54.4434080Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4434910Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-11-03T15:55:54.4435990Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-11-03T15:55:54.4436880Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-11-03T15:55:54.4437830Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-11-03T15:55:54.4438880Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4439720Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-11-03T15:55:54.4440690Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-11-03T15:55:54.4441700Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4442530Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-11-03T15:55:54.4443580Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-11-03T15:55:54.4444600Z adding 'torch/include/ATen/ops/roll.h' 2025-11-03T15:55:54.4445660Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4446480Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-11-03T15:55:54.4447320Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-11-03T15:55:54.4448130Z adding 'torch/include/ATen/ops/roll_mps_dispatch.h' 2025-11-03T15:55:54.4448960Z adding 'torch/include/ATen/ops/roll_native.h' 2025-11-03T15:55:54.4449940Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-11-03T15:55:54.4451020Z adding 'torch/include/ATen/ops/rot90.h' 2025-11-03T15:55:54.4452120Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4453030Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-11-03T15:55:54.4454020Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-11-03T15:55:54.4454950Z adding 'torch/include/ATen/ops/round.h' 2025-11-03T15:55:54.4455980Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4456760Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-11-03T15:55:54.4457590Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-11-03T15:55:54.4458420Z adding 'torch/include/ATen/ops/round_meta.h' 2025-11-03T15:55:54.4459290Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-11-03T15:55:54.4460130Z adding 'torch/include/ATen/ops/round_mps_dispatch.h' 2025-11-03T15:55:54.4461000Z adding 'torch/include/ATen/ops/round_native.h' 2025-11-03T15:55:54.4462130Z adding 'torch/include/ATen/ops/round_ops.h' 2025-11-03T15:55:54.4463070Z adding 'torch/include/ATen/ops/round_sparsemps_dispatch.h' 2025-11-03T15:55:54.4463880Z adding 'torch/include/ATen/ops/row_indices.h' 2025-11-03T15:55:54.4464840Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4465640Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-11-03T15:55:54.4466610Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4467520Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4468240Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-11-03T15:55:54.4469180Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-11-03T15:55:54.4470010Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-11-03T15:55:54.4470880Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-11-03T15:55:54.4471770Z adding 'torch/include/ATen/ops/row_stack.h' 2025-11-03T15:55:54.4472750Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4473520Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-11-03T15:55:54.4474480Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-11-03T15:55:54.4475400Z adding 'torch/include/ATen/ops/rrelu.h' 2025-11-03T15:55:54.4476410Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4477190Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-11-03T15:55:54.4478180Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-11-03T15:55:54.4479210Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-11-03T15:55:54.4480250Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-11-03T15:55:54.4481240Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4482040Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-11-03T15:55:54.4483020Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-11-03T15:55:54.4484000Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4484860Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-11-03T15:55:54.4485750Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-11-03T15:55:54.4486660Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-11-03T15:55:54.4487580Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-11-03T15:55:54.4488720Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-11-03T15:55:54.4489670Z adding 'torch/include/ATen/ops/rshift.h' 2025-11-03T15:55:54.4490660Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4491440Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-11-03T15:55:54.4492290Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-11-03T15:55:54.4493160Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-11-03T15:55:54.4494020Z adding 'torch/include/ATen/ops/rshift_mps_dispatch.h' 2025-11-03T15:55:54.4494830Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-11-03T15:55:54.4495970Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-11-03T15:55:54.4496880Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-11-03T15:55:54.4497860Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4498620Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-11-03T15:55:54.4499450Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-11-03T15:55:54.4500290Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-11-03T15:55:54.4501130Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-11-03T15:55:54.4501960Z adding 'torch/include/ATen/ops/rsqrt_mps_dispatch.h' 2025-11-03T15:55:54.4502790Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-11-03T15:55:54.4503760Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-11-03T15:55:54.4504750Z adding 'torch/include/ATen/ops/rsub.h' 2025-11-03T15:55:54.4505750Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4506530Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-11-03T15:55:54.4507350Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-11-03T15:55:54.4508180Z adding 'torch/include/ATen/ops/rsub_mps_dispatch.h' 2025-11-03T15:55:54.4509020Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-11-03T15:55:54.4510080Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-11-03T15:55:54.4511090Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-11-03T15:55:54.4512110Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4512910Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-11-03T15:55:54.4513900Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-11-03T15:55:54.4514880Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-11-03T15:55:54.4515880Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4516680Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-11-03T15:55:54.4517660Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-11-03T15:55:54.4518760Z adding 'torch/include/ATen/ops/scatter.h' 2025-11-03T15:55:54.4519720Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-11-03T15:55:54.4520760Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4521590Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4522490Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-11-03T15:55:54.4523300Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-11-03T15:55:54.4524130Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-11-03T15:55:54.4525010Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-11-03T15:55:54.4525860Z adding 'torch/include/ATen/ops/scatter_add_mps_dispatch.h' 2025-11-03T15:55:54.4526710Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-11-03T15:55:54.4527790Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-11-03T15:55:54.4528880Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4529710Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4530620Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-11-03T15:55:54.4531570Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-11-03T15:55:54.4532450Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-11-03T15:55:54.4533400Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-11-03T15:55:54.4534300Z adding 'torch/include/ATen/ops/scatter_mps_dispatch.h' 2025-11-03T15:55:54.4535260Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-11-03T15:55:54.4537190Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-11-03T15:55:54.4537870Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-11-03T15:55:54.4538840Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4539640Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-11-03T15:55:54.4540510Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-11-03T15:55:54.4541370Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-11-03T15:55:54.4542250Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-11-03T15:55:54.4543480Z adding 'torch/include/ATen/ops/scatter_reduce_mps_dispatch.h' 2025-11-03T15:55:54.4544350Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-11-03T15:55:54.4545410Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-11-03T15:55:54.4546500Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-11-03T15:55:54.4547490Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-11-03T15:55:54.4548420Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-11-03T15:55:54.4549340Z adding 'torch/include/ATen/ops/searchsorted_mps_dispatch.h' 2025-11-03T15:55:54.4550300Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-11-03T15:55:54.4551460Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-11-03T15:55:54.4552500Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-11-03T15:55:54.4553580Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4554400Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-11-03T15:55:54.4555210Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-11-03T15:55:54.4556110Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-11-03T15:55:54.4557160Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-11-03T15:55:54.4558110Z adding 'torch/include/ATen/ops/select.h' 2025-11-03T15:55:54.4559240Z adding 'torch/include/ATen/ops/select_backward.h' 2025-11-03T15:55:54.4560290Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4561240Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4562010Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-11-03T15:55:54.4563000Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-11-03T15:55:54.4563950Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4564850Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4565780Z adding 'torch/include/ATen/ops/select_copy.h' 2025-11-03T15:55:54.4566840Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4567730Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4568470Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-11-03T15:55:54.4569410Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-11-03T15:55:54.4570290Z adding 'torch/include/ATen/ops/select_native.h' 2025-11-03T15:55:54.4571250Z adding 'torch/include/ATen/ops/select_ops.h' 2025-11-03T15:55:54.4572330Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-11-03T15:55:54.4573360Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4574280Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4575030Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-11-03T15:55:54.4575970Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-11-03T15:55:54.4576820Z adding 'torch/include/ATen/ops/selu.h' 2025-11-03T15:55:54.4577770Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4578530Z adding 'torch/include/ATen/ops/selu_native.h' 2025-11-03T15:55:54.4579500Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-11-03T15:55:54.4580890Z adding 'torch/include/ATen/ops/set.h' 2025-11-03T15:55:54.4582090Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4582970Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4583860Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-11-03T15:55:54.4584740Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-11-03T15:55:54.4585620Z adding 'torch/include/ATen/ops/set_data.h' 2025-11-03T15:55:54.4586680Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4587500Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-11-03T15:55:54.4588450Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-11-03T15:55:54.4589360Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-11-03T15:55:54.4590290Z adding 'torch/include/ATen/ops/set_mps_dispatch.h' 2025-11-03T15:55:54.4591280Z adding 'torch/include/ATen/ops/set_native.h' 2025-11-03T15:55:54.4592900Z adding 'torch/include/ATen/ops/set_ops.h' 2025-11-03T15:55:54.4593710Z adding 'torch/include/ATen/ops/sgn.h' 2025-11-03T15:55:54.4594800Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4595670Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-11-03T15:55:54.4596560Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-11-03T15:55:54.4597430Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-11-03T15:55:54.4598320Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-11-03T15:55:54.4599210Z adding 'torch/include/ATen/ops/sgn_mps_dispatch.h' 2025-11-03T15:55:54.4600160Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-11-03T15:55:54.4601170Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-11-03T15:55:54.4602180Z adding 'torch/include/ATen/ops/sgn_sparsemps_dispatch.h' 2025-11-03T15:55:54.4603060Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-11-03T15:55:54.4603990Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-11-03T15:55:54.4605100Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4605930Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-11-03T15:55:54.4606830Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-11-03T15:55:54.4607760Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-11-03T15:55:54.4608730Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-11-03T15:55:54.4609650Z adding 'torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h' 2025-11-03T15:55:54.4610560Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-11-03T15:55:54.4611620Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-11-03T15:55:54.4612700Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4613460Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-11-03T15:55:54.4614350Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-11-03T15:55:54.4615290Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-11-03T15:55:54.4616230Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-11-03T15:55:54.4617120Z adding 'torch/include/ATen/ops/sigmoid_mps_dispatch.h' 2025-11-03T15:55:54.4618040Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-11-03T15:55:54.4619080Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-11-03T15:55:54.4620040Z adding 'torch/include/ATen/ops/sign.h' 2025-11-03T15:55:54.4621120Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4621940Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-11-03T15:55:54.4622880Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-11-03T15:55:54.4623760Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-11-03T15:55:54.4624630Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-11-03T15:55:54.4625440Z adding 'torch/include/ATen/ops/sign_mps_dispatch.h' 2025-11-03T15:55:54.4626350Z adding 'torch/include/ATen/ops/sign_native.h' 2025-11-03T15:55:54.4627390Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-11-03T15:55:54.4628290Z adding 'torch/include/ATen/ops/sign_sparsemps_dispatch.h' 2025-11-03T15:55:54.4629190Z adding 'torch/include/ATen/ops/signbit.h' 2025-11-03T15:55:54.4630270Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4631090Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-11-03T15:55:54.4632030Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-11-03T15:55:54.4632900Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-11-03T15:55:54.4633780Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-11-03T15:55:54.4634630Z adding 'torch/include/ATen/ops/signbit_mps_dispatch.h' 2025-11-03T15:55:54.4635510Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-11-03T15:55:54.4636540Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-11-03T15:55:54.4637470Z adding 'torch/include/ATen/ops/signbit_sparsemps_dispatch.h' 2025-11-03T15:55:54.4638370Z adding 'torch/include/ATen/ops/silu.h' 2025-11-03T15:55:54.4639360Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-11-03T15:55:54.4640430Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4641320Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4642190Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-11-03T15:55:54.4643070Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-11-03T15:55:54.4643980Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-11-03T15:55:54.4644900Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-11-03T15:55:54.4645810Z adding 'torch/include/ATen/ops/silu_backward_mps_dispatch.h' 2025-11-03T15:55:54.4646750Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-11-03T15:55:54.4647680Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-11-03T15:55:54.4648700Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4649420Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-11-03T15:55:54.4650240Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-11-03T15:55:54.4651060Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-11-03T15:55:54.4651880Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-11-03T15:55:54.4652720Z adding 'torch/include/ATen/ops/silu_mps_dispatch.h' 2025-11-03T15:55:54.4653640Z adding 'torch/include/ATen/ops/silu_native.h' 2025-11-03T15:55:54.4654760Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-11-03T15:55:54.4655710Z adding 'torch/include/ATen/ops/sin.h' 2025-11-03T15:55:54.4656850Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4657540Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-11-03T15:55:54.4658360Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-11-03T15:55:54.4659250Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-11-03T15:55:54.4660150Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-11-03T15:55:54.4661050Z adding 'torch/include/ATen/ops/sin_mps_dispatch.h' 2025-11-03T15:55:54.4662030Z adding 'torch/include/ATen/ops/sin_native.h' 2025-11-03T15:55:54.4663040Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-11-03T15:55:54.4664000Z adding 'torch/include/ATen/ops/sin_sparsemps_dispatch.h' 2025-11-03T15:55:54.4664840Z adding 'torch/include/ATen/ops/sinc.h' 2025-11-03T15:55:54.4665830Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4666540Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-11-03T15:55:54.4667360Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-11-03T15:55:54.4668190Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-11-03T15:55:54.4669020Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-11-03T15:55:54.4669820Z adding 'torch/include/ATen/ops/sinc_mps_dispatch.h' 2025-11-03T15:55:54.4670630Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-11-03T15:55:54.4671660Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-11-03T15:55:54.4672490Z adding 'torch/include/ATen/ops/sinh.h' 2025-11-03T15:55:54.4673460Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4674180Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-11-03T15:55:54.4675010Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-11-03T15:55:54.4675800Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-11-03T15:55:54.4676620Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-11-03T15:55:54.4677410Z adding 'torch/include/ATen/ops/sinh_mps_dispatch.h' 2025-11-03T15:55:54.4678290Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-11-03T15:55:54.4679230Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-11-03T15:55:54.4680110Z adding 'torch/include/ATen/ops/sinh_sparsemps_dispatch.h' 2025-11-03T15:55:54.4680930Z adding 'torch/include/ATen/ops/size.h' 2025-11-03T15:55:54.4681910Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4682660Z adding 'torch/include/ATen/ops/size_native.h' 2025-11-03T15:55:54.4683630Z adding 'torch/include/ATen/ops/size_ops.h' 2025-11-03T15:55:54.4684610Z adding 'torch/include/ATen/ops/slice.h' 2025-11-03T15:55:54.4685760Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-11-03T15:55:54.4686840Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4687620Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-11-03T15:55:54.4688600Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-11-03T15:55:54.4689560Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4690670Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-11-03T15:55:54.4691720Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4692660Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4693400Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-11-03T15:55:54.4694430Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-11-03T15:55:54.4695380Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-11-03T15:55:54.4696410Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4697180Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-11-03T15:55:54.4698110Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-11-03T15:55:54.4698950Z adding 'torch/include/ATen/ops/slice_native.h' 2025-11-03T15:55:54.4699880Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-11-03T15:55:54.4701080Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-11-03T15:55:54.4702110Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4703040Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4703800Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-11-03T15:55:54.4704790Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-11-03T15:55:54.4705710Z adding 'torch/include/ATen/ops/slogdet.h' 2025-11-03T15:55:54.4706700Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4707460Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-11-03T15:55:54.4708410Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-11-03T15:55:54.4709600Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-11-03T15:55:54.4710710Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4711810Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-11-03T15:55:54.4712820Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-11-03T15:55:54.4713680Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-11-03T15:55:54.4714670Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-11-03T15:55:54.4715580Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-11-03T15:55:54.4716530Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-11-03T15:55:54.4717780Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-11-03T15:55:54.4718860Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4719730Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-11-03T15:55:54.4720580Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-11-03T15:55:54.4721470Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-11-03T15:55:54.4722470Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-11-03T15:55:54.4723690Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-11-03T15:55:54.4724840Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4725660Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-11-03T15:55:54.4726530Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-11-03T15:55:54.4727400Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-11-03T15:55:54.4728430Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-11-03T15:55:54.4729750Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-11-03T15:55:54.4730840Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4731730Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-11-03T15:55:54.4732680Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-11-03T15:55:54.4733560Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-11-03T15:55:54.4734540Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-11-03T15:55:54.4735420Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-11-03T15:55:54.4736430Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-11-03T15:55:54.4737760Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-11-03T15:55:54.4738760Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-11-03T15:55:54.4739720Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-11-03T15:55:54.4740590Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-11-03T15:55:54.4741590Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-11-03T15:55:54.4742430Z adding 'torch/include/ATen/ops/smm.h' 2025-11-03T15:55:54.4743400Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4744150Z adding 'torch/include/ATen/ops/smm_native.h' 2025-11-03T15:55:54.4745130Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-11-03T15:55:54.4746010Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-11-03T15:55:54.4746960Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-11-03T15:55:54.4747940Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4748760Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-11-03T15:55:54.4749610Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-11-03T15:55:54.4750450Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h' 2025-11-03T15:55:54.4751310Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-11-03T15:55:54.4752280Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-11-03T15:55:54.4753270Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4754030Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-11-03T15:55:54.4754880Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-11-03T15:55:54.4755710Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-11-03T15:55:54.4756580Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-11-03T15:55:54.4757450Z adding 'torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h' 2025-11-03T15:55:54.4758270Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-11-03T15:55:54.4763050Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-11-03T15:55:54.4763880Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-11-03T15:55:54.4764860Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-11-03T15:55:54.4765860Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4766660Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-11-03T15:55:54.4767660Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-11-03T15:55:54.4768710Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4769600Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-11-03T15:55:54.4770590Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-11-03T15:55:54.4771560Z adding 'torch/include/ATen/ops/softmax.h' 2025-11-03T15:55:54.4772580Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4773450Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4774260Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-11-03T15:55:54.4775300Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-11-03T15:55:54.4776240Z adding 'torch/include/ATen/ops/softplus.h' 2025-11-03T15:55:54.4777230Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-11-03T15:55:54.4778270Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4779070Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-11-03T15:55:54.4780130Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-11-03T15:55:54.4781020Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-11-03T15:55:54.4781950Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-11-03T15:55:54.4782810Z adding 'torch/include/ATen/ops/softplus_backward_mps_dispatch.h' 2025-11-03T15:55:54.4783670Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-11-03T15:55:54.4784660Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-11-03T15:55:54.4785670Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4786500Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-11-03T15:55:54.4787350Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-11-03T15:55:54.4788230Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-11-03T15:55:54.4789240Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-11-03T15:55:54.4791000Z adding 'torch/include/ATen/ops/softplus_mps_dispatch.h' 2025-11-03T15:55:54.4791770Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-11-03T15:55:54.4792860Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-11-03T15:55:54.4793880Z adding 'torch/include/ATen/ops/softshrink.h' 2025-11-03T15:55:54.4794860Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-11-03T15:55:54.4795920Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4796750Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-11-03T15:55:54.4797640Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-11-03T15:55:54.4798520Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-11-03T15:55:54.4799410Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-11-03T15:55:54.4800240Z adding 'torch/include/ATen/ops/softshrink_backward_mps_dispatch.h' 2025-11-03T15:55:54.4801110Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-11-03T15:55:54.4802070Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-11-03T15:55:54.4803100Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4806070Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-11-03T15:55:54.4806180Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-11-03T15:55:54.4806260Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-11-03T15:55:54.4806530Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-11-03T15:55:54.4807340Z adding 'torch/include/ATen/ops/softshrink_mps_dispatch.h' 2025-11-03T15:55:54.4808170Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-11-03T15:55:54.4809130Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-11-03T15:55:54.4810260Z adding 'torch/include/ATen/ops/sort.h' 2025-11-03T15:55:54.4811300Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4812250Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4813200Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4814030Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-11-03T15:55:54.4814920Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-11-03T15:55:54.4815760Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-11-03T15:55:54.4816680Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-11-03T15:55:54.4817550Z adding 'torch/include/ATen/ops/sort_mps_dispatch.h' 2025-11-03T15:55:54.4818510Z adding 'torch/include/ATen/ops/sort_native.h' 2025-11-03T15:55:54.4819820Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-11-03T15:55:54.4820910Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-11-03T15:55:54.4822010Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4822810Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-11-03T15:55:54.4823870Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-11-03T15:55:54.4824870Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-11-03T15:55:54.4825910Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4826720Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-11-03T15:55:54.4827770Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-11-03T15:55:54.4829020Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-11-03T15:55:54.4830120Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4830950Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-11-03T15:55:54.4831980Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-11-03T15:55:54.4833170Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-11-03T15:55:54.4834240Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4835190Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4836000Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-11-03T15:55:54.4837150Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-11-03T15:55:54.4838180Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-11-03T15:55:54.4839230Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4840050Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-11-03T15:55:54.4841110Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-11-03T15:55:54.4842130Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-11-03T15:55:54.4843190Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4844040Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-11-03T15:55:54.4845080Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-11-03T15:55:54.4845960Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-11-03T15:55:54.4847000Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4847870Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-11-03T15:55:54.4848720Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-11-03T15:55:54.4849660Z adding 'torch/include/ATen/ops/sparse_dim_sparsecsrmps_dispatch.h' 2025-11-03T15:55:54.4850500Z adding 'torch/include/ATen/ops/sparse_dim_sparsemps_dispatch.h' 2025-11-03T15:55:54.4851360Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-11-03T15:55:54.4852330Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4853120Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-11-03T15:55:54.4854070Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-11-03T15:55:54.4855030Z adding 'torch/include/ATen/ops/sparse_mask_sparsemps_dispatch.h' 2025-11-03T15:55:54.4855950Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-11-03T15:55:54.4857000Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-11-03T15:55:54.4858050Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4858910Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-11-03T15:55:54.4859760Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-11-03T15:55:54.4860850Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-11-03T15:55:54.4861860Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_sparsemps_dispatch.h' 2025-11-03T15:55:54.4862790Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4863660Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-11-03T15:55:54.4864520Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-11-03T15:55:54.4865540Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-11-03T15:55:54.4866500Z adding 'torch/include/ATen/ops/sparse_resize_sparsemps_dispatch.h' 2025-11-03T15:55:54.4867410Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-11-03T15:55:54.4868410Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-11-03T15:55:54.4869550Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-11-03T15:55:54.4870380Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-11-03T15:55:54.4871450Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4872250Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-11-03T15:55:54.4873080Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-11-03T15:55:54.4873950Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-11-03T15:55:54.4874940Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-11-03T15:55:54.4875810Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-11-03T15:55:54.4876740Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-11-03T15:55:54.4877630Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-11-03T15:55:54.4878680Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4879510Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-11-03T15:55:54.4880370Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-11-03T15:55:54.4881280Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-11-03T15:55:54.4882190Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-11-03T15:55:54.4882990Z adding 'torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h' 2025-11-03T15:55:54.4883830Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-11-03T15:55:54.4884800Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-11-03T15:55:54.4889000Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-11-03T15:55:54.4889350Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4889480Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-11-03T15:55:54.4889650Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-11-03T15:55:54.4889820Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-11-03T15:55:54.4889950Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-11-03T15:55:54.4890660Z adding 'torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h' 2025-11-03T15:55:54.4891520Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-11-03T15:55:54.4892450Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-11-03T15:55:54.4893410Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-11-03T15:55:54.4894430Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4895200Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-11-03T15:55:54.4896020Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-11-03T15:55:54.4896850Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-11-03T15:55:54.4897720Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-11-03T15:55:54.4898520Z adding 'torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h' 2025-11-03T15:55:54.4899340Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-11-03T15:55:54.4900350Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-11-03T15:55:54.4901230Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-11-03T15:55:54.4902270Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4903000Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-11-03T15:55:54.4903840Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-11-03T15:55:54.4904720Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-11-03T15:55:54.4905550Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-11-03T15:55:54.4906360Z adding 'torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h' 2025-11-03T15:55:54.4907220Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-11-03T15:55:54.4908160Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-11-03T15:55:54.4909210Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-11-03T15:55:54.4910270Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4911210Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4911970Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-11-03T15:55:54.4912880Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-11-03T15:55:54.4913690Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-11-03T15:55:54.4914520Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-11-03T15:55:54.4915360Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_mps_dispatch.h' 2025-11-03T15:55:54.4916250Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-11-03T15:55:54.4917370Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-11-03T15:55:54.4918380Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-11-03T15:55:54.4919400Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4920300Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4921040Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-11-03T15:55:54.4921940Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-11-03T15:55:54.4922720Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-11-03T15:55:54.4923590Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-11-03T15:55:54.4924450Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_mps_dispatch.h' 2025-11-03T15:55:54.4925240Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-11-03T15:55:54.4926360Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-11-03T15:55:54.4927400Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-11-03T15:55:54.4928410Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4929320Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4930100Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-11-03T15:55:54.4930930Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-11-03T15:55:54.4931790Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-11-03T15:55:54.4932630Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-11-03T15:55:54.4933450Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_mps_dispatch.h' 2025-11-03T15:55:54.4934320Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-11-03T15:55:54.4935430Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-11-03T15:55:54.4936440Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-11-03T15:55:54.4937490Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4938390Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4939140Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-11-03T15:55:54.4939970Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-11-03T15:55:54.4940800Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-11-03T15:55:54.4941640Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-11-03T15:55:54.4942470Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_mps_dispatch.h' 2025-11-03T15:55:54.4943350Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-11-03T15:55:54.4944460Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-11-03T15:55:54.4945320Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-11-03T15:55:54.4946340Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4947140Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-11-03T15:55:54.4948060Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-11-03T15:55:54.4948940Z adding 'torch/include/ATen/ops/special_entr.h' 2025-11-03T15:55:54.4949940Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4950690Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-11-03T15:55:54.4951530Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-11-03T15:55:54.4952360Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-11-03T15:55:54.4953220Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-11-03T15:55:54.4954030Z adding 'torch/include/ATen/ops/special_entr_mps_dispatch.h' 2025-11-03T15:55:54.4954840Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-11-03T15:55:54.4955790Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-11-03T15:55:54.4956660Z adding 'torch/include/ATen/ops/special_erf.h' 2025-11-03T15:55:54.4957630Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4958390Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-11-03T15:55:54.4959330Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-11-03T15:55:54.4960200Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-11-03T15:55:54.4961210Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4961930Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-11-03T15:55:54.4962880Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-11-03T15:55:54.4963770Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-11-03T15:55:54.4964790Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4965530Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-11-03T15:55:54.4966370Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-11-03T15:55:54.4967180Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-11-03T15:55:54.4968040Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-11-03T15:55:54.4968850Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-11-03T15:55:54.4969780Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-11-03T15:55:54.4970690Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-11-03T15:55:54.4971610Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4972370Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-11-03T15:55:54.4973300Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-11-03T15:55:54.4974190Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-11-03T15:55:54.4975510Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4976330Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-11-03T15:55:54.4977280Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-11-03T15:55:54.4978190Z adding 'torch/include/ATen/ops/special_expit.h' 2025-11-03T15:55:54.4979310Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4980240Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-11-03T15:55:54.4981170Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-11-03T15:55:54.4982070Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-11-03T15:55:54.4983010Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4983760Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-11-03T15:55:54.4984680Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-11-03T15:55:54.4985590Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-11-03T15:55:54.4986620Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4987440Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-11-03T15:55:54.4988380Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-11-03T15:55:54.4989330Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-11-03T15:55:54.4990280Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4991030Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-11-03T15:55:54.4991960Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-11-03T15:55:54.4992810Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-11-03T15:55:54.4993760Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.4994510Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-11-03T15:55:54.4995430Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-11-03T15:55:54.4996490Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-11-03T15:55:54.4997510Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.4998430Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.4999190Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-11-03T15:55:54.5000030Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-11-03T15:55:54.5000920Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-11-03T15:55:54.5001760Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-11-03T15:55:54.5002590Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_mps_dispatch.h' 2025-11-03T15:55:54.5003470Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-11-03T15:55:54.5004590Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-11-03T15:55:54.5005590Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-11-03T15:55:54.5006600Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5007530Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5008310Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-11-03T15:55:54.5009130Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-11-03T15:55:54.5009980Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-11-03T15:55:54.5010800Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-11-03T15:55:54.5011600Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_mps_dispatch.h' 2025-11-03T15:55:54.5012480Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-11-03T15:55:54.5013580Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-11-03T15:55:54.5014420Z adding 'torch/include/ATen/ops/special_i0.h' 2025-11-03T15:55:54.5015390Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5016140Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-11-03T15:55:54.5017070Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-11-03T15:55:54.5017960Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-11-03T15:55:54.5018960Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5019710Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-11-03T15:55:54.5020570Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-11-03T15:55:54.5021410Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-11-03T15:55:54.5022250Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-11-03T15:55:54.5023080Z adding 'torch/include/ATen/ops/special_i0e_mps_dispatch.h' 2025-11-03T15:55:54.5023890Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-11-03T15:55:54.5024820Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-11-03T15:55:54.5025670Z adding 'torch/include/ATen/ops/special_i1.h' 2025-11-03T15:55:54.5026710Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5027400Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-11-03T15:55:54.5028210Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-11-03T15:55:54.5029020Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-11-03T15:55:54.5029840Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-11-03T15:55:54.5030680Z adding 'torch/include/ATen/ops/special_i1_mps_dispatch.h' 2025-11-03T15:55:54.5031500Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-11-03T15:55:54.5032430Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-11-03T15:55:54.5033340Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-11-03T15:55:54.5034340Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5035090Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-11-03T15:55:54.5035950Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-11-03T15:55:54.5036860Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-11-03T15:55:54.5037680Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-11-03T15:55:54.5038520Z adding 'torch/include/ATen/ops/special_i1e_mps_dispatch.h' 2025-11-03T15:55:54.5039400Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-11-03T15:55:54.5040260Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-11-03T15:55:54.5041300Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-11-03T15:55:54.5042320Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5043220Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5043990Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-11-03T15:55:54.5044810Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-11-03T15:55:54.5045650Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-11-03T15:55:54.5046500Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-11-03T15:55:54.5047380Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-11-03T15:55:54.5048490Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-11-03T15:55:54.5049490Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-11-03T15:55:54.5050510Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5051410Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5052170Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-11-03T15:55:54.5052980Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-11-03T15:55:54.5053810Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-11-03T15:55:54.5054670Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-11-03T15:55:54.5055510Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-11-03T15:55:54.5056660Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-11-03T15:55:54.5057500Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-11-03T15:55:54.5058470Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5059250Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-11-03T15:55:54.5060150Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-11-03T15:55:54.5061040Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-11-03T15:55:54.5062060Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5062830Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-11-03T15:55:54.5063620Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-11-03T15:55:54.5064440Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-11-03T15:55:54.5065310Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-11-03T15:55:54.5066110Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-11-03T15:55:54.5067040Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-11-03T15:55:54.5067910Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-11-03T15:55:54.5068900Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5069670Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-11-03T15:55:54.5070600Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-11-03T15:55:54.5071460Z adding 'torch/include/ATen/ops/special_logit.h' 2025-11-03T15:55:54.5072450Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5073200Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-11-03T15:55:54.5074260Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-11-03T15:55:54.5075140Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-11-03T15:55:54.5076200Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5076990Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-11-03T15:55:54.5077940Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-11-03T15:55:54.5078850Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-11-03T15:55:54.5079850Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5080620Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-11-03T15:55:54.5081440Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-11-03T15:55:54.5082260Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-11-03T15:55:54.5083090Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-11-03T15:55:54.5083890Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_mps_dispatch.h' 2025-11-03T15:55:54.5084710Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-11-03T15:55:54.5085620Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-11-03T15:55:54.5086490Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-11-03T15:55:54.5087500Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5088210Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-11-03T15:55:54.5089030Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-11-03T15:55:54.5089860Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-11-03T15:55:54.5090700Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-11-03T15:55:54.5091510Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_mps_dispatch.h' 2025-11-03T15:55:54.5092320Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-11-03T15:55:54.5093230Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-11-03T15:55:54.5094110Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-11-03T15:55:54.5095130Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5095880Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-11-03T15:55:54.5096710Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-11-03T15:55:54.5097530Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-11-03T15:55:54.5098400Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-11-03T15:55:54.5099240Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_mps_dispatch.h' 2025-11-03T15:55:54.5100040Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-11-03T15:55:54.5100990Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-11-03T15:55:54.5101890Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-11-03T15:55:54.5102900Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5103670Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-11-03T15:55:54.5104520Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-11-03T15:55:54.5105340Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-11-03T15:55:54.5106180Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-11-03T15:55:54.5106980Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_mps_dispatch.h' 2025-11-03T15:55:54.5107810Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-11-03T15:55:54.5108730Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-11-03T15:55:54.5109610Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-11-03T15:55:54.5110640Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5111370Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-11-03T15:55:54.5112300Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-11-03T15:55:54.5113170Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-11-03T15:55:54.5114130Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5114890Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-11-03T15:55:54.5115780Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-11-03T15:55:54.5116670Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-11-03T15:55:54.5117670Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5118430Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-11-03T15:55:54.5119260Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-11-03T15:55:54.5120080Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-11-03T15:55:54.5120990Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-11-03T15:55:54.5121800Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-11-03T15:55:54.5122710Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-11-03T15:55:54.5123590Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-11-03T15:55:54.5124570Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5125350Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-11-03T15:55:54.5126290Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-11-03T15:55:54.5127120Z adding 'torch/include/ATen/ops/special_psi.h' 2025-11-03T15:55:54.5128090Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5128840Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-11-03T15:55:54.5129740Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-11-03T15:55:54.5130650Z adding 'torch/include/ATen/ops/special_round.h' 2025-11-03T15:55:54.5131620Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5132380Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-11-03T15:55:54.5133320Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-11-03T15:55:54.5134250Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-11-03T15:55:54.5135280Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5136050Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-11-03T15:55:54.5136940Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-11-03T15:55:54.5137730Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-11-03T15:55:54.5138580Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-11-03T15:55:54.5139400Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_mps_dispatch.h' 2025-11-03T15:55:54.5140220Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-11-03T15:55:54.5141180Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-11-03T15:55:54.5142040Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-11-03T15:55:54.5143120Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5143810Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-11-03T15:55:54.5144630Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-11-03T15:55:54.5145510Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-11-03T15:55:54.5146400Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-11-03T15:55:54.5147450Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_mps_dispatch.h' 2025-11-03T15:55:54.5148230Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-11-03T15:55:54.5149300Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-11-03T15:55:54.5150430Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-11-03T15:55:54.5151480Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5152440Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5153190Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-11-03T15:55:54.5154030Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-11-03T15:55:54.5154880Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-11-03T15:55:54.5155770Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-11-03T15:55:54.5156650Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_mps_dispatch.h' 2025-11-03T15:55:54.5157500Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-11-03T15:55:54.5158590Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-11-03T15:55:54.5159620Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-11-03T15:55:54.5160650Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5161560Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5162300Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-11-03T15:55:54.5163140Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-11-03T15:55:54.5164070Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-11-03T15:55:54.5165120Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-11-03T15:55:54.5166280Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_mps_dispatch.h' 2025-11-03T15:55:54.5166890Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-11-03T15:55:54.5168010Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-11-03T15:55:54.5169050Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-11-03T15:55:54.5170120Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5171030Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5171800Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-11-03T15:55:54.5172620Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-11-03T15:55:54.5173460Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-11-03T15:55:54.5174370Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-11-03T15:55:54.5175200Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_mps_dispatch.h' 2025-11-03T15:55:54.5176090Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-11-03T15:55:54.5177180Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-11-03T15:55:54.5178220Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-11-03T15:55:54.5179230Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5180670Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5181360Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-11-03T15:55:54.5182200Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-11-03T15:55:54.5183000Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-11-03T15:55:54.5183860Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-11-03T15:55:54.5184670Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_mps_dispatch.h' 2025-11-03T15:55:54.5185550Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-11-03T15:55:54.5186650Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-11-03T15:55:54.5187490Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-11-03T15:55:54.5188450Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5189210Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-11-03T15:55:54.5190130Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-11-03T15:55:54.5191020Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-11-03T15:55:54.5191990Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5192750Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-11-03T15:55:54.5193660Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-11-03T15:55:54.5194590Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-11-03T15:55:54.5195610Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5196370Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-11-03T15:55:54.5197200Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-11-03T15:55:54.5198030Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-11-03T15:55:54.5198880Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-11-03T15:55:54.5199690Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_mps_dispatch.h' 2025-11-03T15:55:54.5200540Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-11-03T15:55:54.5201490Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-11-03T15:55:54.5202470Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-11-03T15:55:54.5203490Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5204450Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5205170Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-11-03T15:55:54.5206020Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-11-03T15:55:54.5206840Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-11-03T15:55:54.5207700Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-11-03T15:55:54.5208490Z adding 'torch/include/ATen/ops/special_xlog1py_mps_dispatch.h' 2025-11-03T15:55:54.5209390Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-11-03T15:55:54.5210500Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-11-03T15:55:54.5211520Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-11-03T15:55:54.5212540Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5213330Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-11-03T15:55:54.5214450Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-11-03T15:55:54.5215450Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-11-03T15:55:54.5216450Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5217360Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5218170Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-11-03T15:55:54.5218960Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-11-03T15:55:54.5219790Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-11-03T15:55:54.5220700Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-11-03T15:55:54.5221520Z adding 'torch/include/ATen/ops/special_zeta_mps_dispatch.h' 2025-11-03T15:55:54.5222400Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-11-03T15:55:54.5223520Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-11-03T15:55:54.5224510Z adding 'torch/include/ATen/ops/split.h' 2025-11-03T15:55:54.5225570Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5226460Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5227400Z adding 'torch/include/ATen/ops/split_copy.h' 2025-11-03T15:55:54.5228400Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5229340Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5230100Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-11-03T15:55:54.5231080Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-11-03T15:55:54.5231970Z adding 'torch/include/ATen/ops/split_native.h' 2025-11-03T15:55:54.5232930Z adding 'torch/include/ATen/ops/split_ops.h' 2025-11-03T15:55:54.5233920Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-11-03T15:55:54.5234950Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5235930Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-11-03T15:55:54.5236960Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5237910Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5238800Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-11-03T15:55:54.5239700Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-11-03T15:55:54.5240710Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-11-03T15:55:54.5241560Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-11-03T15:55:54.5242520Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-11-03T15:55:54.5243390Z adding 'torch/include/ATen/ops/sqrt.h' 2025-11-03T15:55:54.5244400Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5245190Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-11-03T15:55:54.5246100Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-11-03T15:55:54.5246930Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-11-03T15:55:54.5247790Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-11-03T15:55:54.5248670Z adding 'torch/include/ATen/ops/sqrt_mps_dispatch.h' 2025-11-03T15:55:54.5249550Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-11-03T15:55:54.5250570Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-11-03T15:55:54.5251480Z adding 'torch/include/ATen/ops/sqrt_sparsemps_dispatch.h' 2025-11-03T15:55:54.5252340Z adding 'torch/include/ATen/ops/square.h' 2025-11-03T15:55:54.5253310Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5254080Z adding 'torch/include/ATen/ops/square_native.h' 2025-11-03T15:55:54.5255040Z adding 'torch/include/ATen/ops/square_ops.h' 2025-11-03T15:55:54.5255940Z adding 'torch/include/ATen/ops/squeeze.h' 2025-11-03T15:55:54.5256920Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5257770Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5258690Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-11-03T15:55:54.5259700Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5260650Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5261360Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-11-03T15:55:54.5262470Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-11-03T15:55:54.5263390Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-11-03T15:55:54.5264550Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-11-03T15:55:54.5265480Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-11-03T15:55:54.5266460Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5267270Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-11-03T15:55:54.5268130Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-11-03T15:55:54.5268970Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-11-03T15:55:54.5269970Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-11-03T15:55:54.5270840Z adding 'torch/include/ATen/ops/stack.h' 2025-11-03T15:55:54.5271820Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5272590Z adding 'torch/include/ATen/ops/stack_native.h' 2025-11-03T15:55:54.5273540Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-11-03T15:55:54.5274680Z adding 'torch/include/ATen/ops/std.h' 2025-11-03T15:55:54.5275730Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5276570Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-11-03T15:55:54.5277430Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-11-03T15:55:54.5278470Z adding 'torch/include/ATen/ops/std_mean.h' 2025-11-03T15:55:54.5279510Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5280420Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5281230Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-11-03T15:55:54.5282060Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-11-03T15:55:54.5282870Z adding 'torch/include/ATen/ops/std_mean_mps_dispatch.h' 2025-11-03T15:55:54.5283770Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-11-03T15:55:54.5284980Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-11-03T15:55:54.5285860Z adding 'torch/include/ATen/ops/std_mps_dispatch.h' 2025-11-03T15:55:54.5286790Z adding 'torch/include/ATen/ops/std_native.h' 2025-11-03T15:55:54.5288090Z adding 'torch/include/ATen/ops/std_ops.h' 2025-11-03T15:55:54.5289080Z adding 'torch/include/ATen/ops/stft.h' 2025-11-03T15:55:54.5290110Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5290970Z adding 'torch/include/ATen/ops/stft_native.h' 2025-11-03T15:55:54.5291990Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-11-03T15:55:54.5292870Z adding 'torch/include/ATen/ops/stride.h' 2025-11-03T15:55:54.5293850Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5294600Z adding 'torch/include/ATen/ops/stride_native.h' 2025-11-03T15:55:54.5295550Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-11-03T15:55:54.5296500Z adding 'torch/include/ATen/ops/sub.h' 2025-11-03T15:55:54.5297480Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5298460Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5299250Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-11-03T15:55:54.5300090Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-11-03T15:55:54.5300940Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-11-03T15:55:54.5301860Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-11-03T15:55:54.5302700Z adding 'torch/include/ATen/ops/sub_mps_dispatch.h' 2025-11-03T15:55:54.5303630Z adding 'torch/include/ATen/ops/sub_native.h' 2025-11-03T15:55:54.5304800Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-11-03T15:55:54.5305740Z adding 'torch/include/ATen/ops/sub_sparsemps_dispatch.h' 2025-11-03T15:55:54.5306690Z adding 'torch/include/ATen/ops/subtract.h' 2025-11-03T15:55:54.5307630Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5308410Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-11-03T15:55:54.5309510Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-11-03T15:55:54.5310560Z adding 'torch/include/ATen/ops/sum.h' 2025-11-03T15:55:54.5311540Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5312470Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5313380Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5314180Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-11-03T15:55:54.5315020Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-11-03T15:55:54.5315930Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-11-03T15:55:54.5316830Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-11-03T15:55:54.5317850Z adding 'torch/include/ATen/ops/sum_mps_dispatch.h' 2025-11-03T15:55:54.5318670Z adding 'torch/include/ATen/ops/sum_native.h' 2025-11-03T15:55:54.5319850Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-11-03T15:55:54.5320810Z adding 'torch/include/ATen/ops/sum_sparsemps_dispatch.h' 2025-11-03T15:55:54.5321800Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-11-03T15:55:54.5322850Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5323670Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-11-03T15:55:54.5324550Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-11-03T15:55:54.5325470Z adding 'torch/include/ATen/ops/svd.h' 2025-11-03T15:55:54.5326450Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5327220Z adding 'torch/include/ATen/ops/svd_native.h' 2025-11-03T15:55:54.5328190Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-11-03T15:55:54.5329100Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-11-03T15:55:54.5330090Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5330870Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-11-03T15:55:54.5331850Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-11-03T15:55:54.5332740Z adding 'torch/include/ATen/ops/swapdims.h' 2025-11-03T15:55:54.5333690Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5334450Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-11-03T15:55:54.5335400Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-11-03T15:55:54.5336340Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-11-03T15:55:54.5337400Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5338230Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-11-03T15:55:54.5339240Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5340060Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-11-03T15:55:54.5341040Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-11-03T15:55:54.5341900Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-11-03T15:55:54.5342870Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-11-03T15:55:54.5343760Z adding 'torch/include/ATen/ops/sym_is_contiguous.h' 2025-11-03T15:55:54.5344800Z adding 'torch/include/ATen/ops/sym_is_contiguous_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5345610Z adding 'torch/include/ATen/ops/sym_is_contiguous_native.h' 2025-11-03T15:55:54.5346580Z adding 'torch/include/ATen/ops/sym_is_contiguous_ops.h' 2025-11-03T15:55:54.5347410Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-11-03T15:55:54.5348390Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5349160Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-11-03T15:55:54.5350070Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-11-03T15:55:54.5350880Z adding 'torch/include/ATen/ops/sym_size.h' 2025-11-03T15:55:54.5351830Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5352590Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-11-03T15:55:54.5353500Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-11-03T15:55:54.5354380Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-11-03T15:55:54.5355350Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5356120Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-11-03T15:55:54.5357040Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-11-03T15:55:54.5357920Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-11-03T15:55:54.5358880Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5359630Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-11-03T15:55:54.5360590Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-11-03T15:55:54.5361420Z adding 'torch/include/ATen/ops/t.h' 2025-11-03T15:55:54.5362370Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5363170Z adding 'torch/include/ATen/ops/t_copy.h' 2025-11-03T15:55:54.5364140Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5365050Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5365770Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-11-03T15:55:54.5366690Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-11-03T15:55:54.5367520Z adding 'torch/include/ATen/ops/t_native.h' 2025-11-03T15:55:54.5368440Z adding 'torch/include/ATen/ops/t_ops.h' 2025-11-03T15:55:54.5369350Z adding 'torch/include/ATen/ops/take.h' 2025-11-03T15:55:54.5370350Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-11-03T15:55:54.5371410Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5372270Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-11-03T15:55:54.5373230Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-11-03T15:55:54.5374120Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-11-03T15:55:54.5375020Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-11-03T15:55:54.5375840Z adding 'torch/include/ATen/ops/take_native.h' 2025-11-03T15:55:54.5376790Z adding 'torch/include/ATen/ops/take_ops.h' 2025-11-03T15:55:54.5377680Z adding 'torch/include/ATen/ops/tan.h' 2025-11-03T15:55:54.5378750Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5379440Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-11-03T15:55:54.5380250Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-11-03T15:55:54.5381080Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-11-03T15:55:54.5381930Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-11-03T15:55:54.5382730Z adding 'torch/include/ATen/ops/tan_mps_dispatch.h' 2025-11-03T15:55:54.5383620Z adding 'torch/include/ATen/ops/tan_native.h' 2025-11-03T15:55:54.5384580Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-11-03T15:55:54.5385580Z adding 'torch/include/ATen/ops/tan_sparsemps_dispatch.h' 2025-11-03T15:55:54.5386540Z adding 'torch/include/ATen/ops/tanh.h' 2025-11-03T15:55:54.5387520Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-11-03T15:55:54.5391130Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5391250Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-11-03T15:55:54.5391360Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-11-03T15:55:54.5391450Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-11-03T15:55:54.5392260Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-11-03T15:55:54.5393070Z adding 'torch/include/ATen/ops/tanh_backward_mps_dispatch.h' 2025-11-03T15:55:54.5394130Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-11-03T15:55:54.5394890Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-11-03T15:55:54.5395830Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5396560Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-11-03T15:55:54.5397390Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-11-03T15:55:54.5398210Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-11-03T15:55:54.5399050Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-11-03T15:55:54.5399850Z adding 'torch/include/ATen/ops/tanh_mps_dispatch.h' 2025-11-03T15:55:54.5400750Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-11-03T15:55:54.5401690Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-11-03T15:55:54.5402580Z adding 'torch/include/ATen/ops/tanh_sparsemps_dispatch.h' 2025-11-03T15:55:54.5403530Z adding 'torch/include/ATen/ops/tensor.h' 2025-11-03T15:55:54.5404600Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-11-03T15:55:54.5405630Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5406450Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-11-03T15:55:54.5407440Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-11-03T15:55:54.5408360Z adding 'torch/include/ATen/ops/tensordot.h' 2025-11-03T15:55:54.5409350Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5410120Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-11-03T15:55:54.5411110Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-11-03T15:55:54.5412300Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-11-03T15:55:54.5413400Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5414210Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-11-03T15:55:54.5415190Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-11-03T15:55:54.5416130Z adding 'torch/include/ATen/ops/threshold.h' 2025-11-03T15:55:54.5417050Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-11-03T15:55:54.5418130Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5418890Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-11-03T15:55:54.5419750Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-11-03T15:55:54.5420580Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-11-03T15:55:54.5421450Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-11-03T15:55:54.5422330Z adding 'torch/include/ATen/ops/threshold_backward_mps_dispatch.h' 2025-11-03T15:55:54.5423200Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-11-03T15:55:54.5424180Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-11-03T15:55:54.5425160Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5425940Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-11-03T15:55:54.5426780Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-11-03T15:55:54.5427600Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-11-03T15:55:54.5428470Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-11-03T15:55:54.5429280Z adding 'torch/include/ATen/ops/threshold_mps_dispatch.h' 2025-11-03T15:55:54.5430150Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-11-03T15:55:54.5431150Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-11-03T15:55:54.5432070Z adding 'torch/include/ATen/ops/tile.h' 2025-11-03T15:55:54.5433030Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5433780Z adding 'torch/include/ATen/ops/tile_native.h' 2025-11-03T15:55:54.5434700Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-11-03T15:55:54.5435560Z adding 'torch/include/ATen/ops/to.h' 2025-11-03T15:55:54.5436650Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5437370Z adding 'torch/include/ATen/ops/to_dense.h' 2025-11-03T15:55:54.5438250Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-11-03T15:55:54.5439230Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5439980Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-11-03T15:55:54.5440910Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-11-03T15:55:54.5441840Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5442610Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-11-03T15:55:54.5443530Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-11-03T15:55:54.5444400Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-11-03T15:55:54.5445280Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-11-03T15:55:54.5446220Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5446990Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-11-03T15:55:54.5447880Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-11-03T15:55:54.5448840Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5449620Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-11-03T15:55:54.5450470Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-11-03T15:55:54.5451410Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-11-03T15:55:54.5452280Z adding 'torch/include/ATen/ops/to_native.h' 2025-11-03T15:55:54.5453420Z adding 'torch/include/ATen/ops/to_ops.h' 2025-11-03T15:55:54.5454530Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-11-03T15:55:54.5455560Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5456380Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-11-03T15:55:54.5457350Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-11-03T15:55:54.5458150Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-11-03T15:55:54.5458970Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-11-03T15:55:54.5459940Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5460700Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-11-03T15:55:54.5461600Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-11-03T15:55:54.5462400Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-11-03T15:55:54.5463360Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5464160Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-11-03T15:55:54.5465020Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-11-03T15:55:54.5465990Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5466730Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-11-03T15:55:54.5467680Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5468420Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-11-03T15:55:54.5469320Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-11-03T15:55:54.5470100Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-11-03T15:55:54.5471060Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5471810Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-11-03T15:55:54.5472680Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-11-03T15:55:54.5473520Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-11-03T15:55:54.5474510Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-11-03T15:55:54.5475610Z adding 'torch/include/ATen/ops/topk.h' 2025-11-03T15:55:54.5476660Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5477510Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-11-03T15:55:54.5478440Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-11-03T15:55:54.5479230Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-11-03T15:55:54.5480110Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-11-03T15:55:54.5480950Z adding 'torch/include/ATen/ops/topk_mps_dispatch.h' 2025-11-03T15:55:54.5481850Z adding 'torch/include/ATen/ops/topk_native.h' 2025-11-03T15:55:54.5482860Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-11-03T15:55:54.5483970Z adding 'torch/include/ATen/ops/trace.h' 2025-11-03T15:55:54.5484700Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-11-03T15:55:54.5485660Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5486420Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-11-03T15:55:54.5487350Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-11-03T15:55:54.5488270Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5489070Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-11-03T15:55:54.5489890Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-11-03T15:55:54.5490700Z adding 'torch/include/ATen/ops/trace_mps_dispatch.h' 2025-11-03T15:55:54.5491530Z adding 'torch/include/ATen/ops/trace_native.h' 2025-11-03T15:55:54.5492480Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-11-03T15:55:54.5493340Z adding 'torch/include/ATen/ops/transpose.h' 2025-11-03T15:55:54.5494320Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5495190Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5496010Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-11-03T15:55:54.5497000Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5497890Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5498620Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-11-03T15:55:54.5499560Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-11-03T15:55:54.5500410Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-11-03T15:55:54.5501430Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-11-03T15:55:54.5502310Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-11-03T15:55:54.5503280Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5504050Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-11-03T15:55:54.5504980Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-11-03T15:55:54.5505840Z adding 'torch/include/ATen/ops/trapz.h' 2025-11-03T15:55:54.5506840Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5507550Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-11-03T15:55:54.5508490Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-11-03T15:55:54.5509440Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-11-03T15:55:54.5510490Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5511270Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-11-03T15:55:54.5512140Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-11-03T15:55:54.5512990Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-11-03T15:55:54.5513880Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-11-03T15:55:54.5514740Z adding 'torch/include/ATen/ops/triangular_solve_mps_dispatch.h' 2025-11-03T15:55:54.5515620Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-11-03T15:55:54.5516630Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-11-03T15:55:54.5517640Z adding 'torch/include/ATen/ops/tril.h' 2025-11-03T15:55:54.5518680Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5519500Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-11-03T15:55:54.5520400Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-11-03T15:55:54.5521340Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-11-03T15:55:54.5522330Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5523160Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-11-03T15:55:54.5524000Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-11-03T15:55:54.5524860Z adding 'torch/include/ATen/ops/tril_indices_mps_dispatch.h' 2025-11-03T15:55:54.5525730Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-11-03T15:55:54.5526730Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-11-03T15:55:54.5527580Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-11-03T15:55:54.5528460Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-11-03T15:55:54.5529300Z adding 'torch/include/ATen/ops/tril_mps_dispatch.h' 2025-11-03T15:55:54.5530150Z adding 'torch/include/ATen/ops/tril_native.h' 2025-11-03T15:55:54.5531140Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-11-03T15:55:54.5532080Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-11-03T15:55:54.5533080Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5533910Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-11-03T15:55:54.5534840Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-11-03T15:55:54.5535870Z adding 'torch/include/ATen/ops/triu.h' 2025-11-03T15:55:54.5536870Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5537640Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-11-03T15:55:54.5538490Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-11-03T15:55:54.5539470Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-11-03T15:55:54.5540440Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5541260Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-11-03T15:55:54.5542100Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-11-03T15:55:54.5542940Z adding 'torch/include/ATen/ops/triu_indices_mps_dispatch.h' 2025-11-03T15:55:54.5543820Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-11-03T15:55:54.5544820Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-11-03T15:55:54.5545660Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-11-03T15:55:54.5546560Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-11-03T15:55:54.5547430Z adding 'torch/include/ATen/ops/triu_mps_dispatch.h' 2025-11-03T15:55:54.5548280Z adding 'torch/include/ATen/ops/triu_native.h' 2025-11-03T15:55:54.5549300Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-11-03T15:55:54.5550200Z adding 'torch/include/ATen/ops/true_divide.h' 2025-11-03T15:55:54.5551210Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5551980Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-11-03T15:55:54.5553060Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-11-03T15:55:54.5553950Z adding 'torch/include/ATen/ops/trunc.h' 2025-11-03T15:55:54.5554970Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5555740Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-11-03T15:55:54.5556600Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-11-03T15:55:54.5557420Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-11-03T15:55:54.5558280Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-11-03T15:55:54.5559120Z adding 'torch/include/ATen/ops/trunc_mps_dispatch.h' 2025-11-03T15:55:54.5559980Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-11-03T15:55:54.5560950Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-11-03T15:55:54.5561860Z adding 'torch/include/ATen/ops/trunc_sparsecsrmps_dispatch.h' 2025-11-03T15:55:54.5562670Z adding 'torch/include/ATen/ops/trunc_sparsemps_dispatch.h' 2025-11-03T15:55:54.5563480Z adding 'torch/include/ATen/ops/type_as.h' 2025-11-03T15:55:54.5564470Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5565180Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-11-03T15:55:54.5566070Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-11-03T15:55:54.5566970Z adding 'torch/include/ATen/ops/unbind.h' 2025-11-03T15:55:54.5567950Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5568820Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5569650Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-11-03T15:55:54.5570630Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5571530Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5572250Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-11-03T15:55:54.5573220Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-11-03T15:55:54.5574060Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-11-03T15:55:54.5575000Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-11-03T15:55:54.5576000Z adding 'torch/include/ATen/ops/unflatten.h' 2025-11-03T15:55:54.5577010Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5577840Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-11-03T15:55:54.5578810Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5579580Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-11-03T15:55:54.5580510Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-11-03T15:55:54.5581320Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-11-03T15:55:54.5582290Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-11-03T15:55:54.5583090Z adding 'torch/include/ATen/ops/unfold.h' 2025-11-03T15:55:54.5584200Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-11-03T15:55:54.5585240Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5586050Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-11-03T15:55:54.5586900Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-11-03T15:55:54.5587720Z adding 'torch/include/ATen/ops/unfold_backward_mps_dispatch.h' 2025-11-03T15:55:54.5588570Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-11-03T15:55:54.5589540Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-11-03T15:55:54.5590440Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-11-03T15:55:54.5591460Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5592350Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5593070Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-11-03T15:55:54.5594020Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-11-03T15:55:54.5594890Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-11-03T15:55:54.5595720Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-11-03T15:55:54.5596530Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-11-03T15:55:54.5597660Z adding 'torch/include/ATen/ops/unfold_mps_dispatch.h' 2025-11-03T15:55:54.5598500Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-11-03T15:55:54.5599410Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-11-03T15:55:54.5600330Z adding 'torch/include/ATen/ops/uniform.h' 2025-11-03T15:55:54.5601330Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5602150Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-11-03T15:55:54.5602960Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-11-03T15:55:54.5603770Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-11-03T15:55:54.5604560Z adding 'torch/include/ATen/ops/uniform_mps_dispatch.h' 2025-11-03T15:55:54.5605460Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-11-03T15:55:54.5606440Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-11-03T15:55:54.5607450Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-11-03T15:55:54.5608460Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5609280Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-11-03T15:55:54.5610120Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-11-03T15:55:54.5610940Z adding 'torch/include/ATen/ops/unique_consecutive_mps_dispatch.h' 2025-11-03T15:55:54.5611820Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-11-03T15:55:54.5612830Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-11-03T15:55:54.5613780Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-11-03T15:55:54.5614780Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5615690Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-11-03T15:55:54.5616690Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5617490Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-11-03T15:55:54.5618360Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-11-03T15:55:54.5619170Z adding 'torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h' 2025-11-03T15:55:54.5620020Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-11-03T15:55:54.5621040Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-11-03T15:55:54.5621900Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-11-03T15:55:54.5622750Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-11-03T15:55:54.5623570Z adding 'torch/include/ATen/ops/unique_dim_mps_dispatch.h' 2025-11-03T15:55:54.5624430Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-11-03T15:55:54.5625420Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-11-03T15:55:54.5626310Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-11-03T15:55:54.5627280Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5628040Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-11-03T15:55:54.5628940Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-11-03T15:55:54.5629980Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-11-03T15:55:54.5631030Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5631800Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-11-03T15:55:54.5632820Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-11-03T15:55:54.5633860Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-11-03T15:55:54.5634920Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5635710Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-11-03T15:55:54.5636660Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-11-03T15:55:54.5637500Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-11-03T15:55:54.5638500Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5639320Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-11-03T15:55:54.5640330Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5641240Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5641990Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-11-03T15:55:54.5642960Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-11-03T15:55:54.5643810Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-11-03T15:55:54.5644750Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-11-03T15:55:54.5645680Z adding 'torch/include/ATen/ops/unsqueeze_sparsemps_dispatch.h' 2025-11-03T15:55:54.5646990Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-11-03T15:55:54.5648240Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-11-03T15:55:54.5649330Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5650210Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.5651160Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.5652060Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-11-03T15:55:54.5653010Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-11-03T15:55:54.5653920Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h' 2025-11-03T15:55:54.5654830Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-11-03T15:55:54.5655870Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-11-03T15:55:54.5656880Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5657710Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5658590Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-11-03T15:55:54.5659480Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-11-03T15:55:54.5660340Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-11-03T15:55:54.5661250Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-11-03T15:55:54.5662110Z adding 'torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h' 2025-11-03T15:55:54.5663020Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-11-03T15:55:54.5664060Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-11-03T15:55:54.5665670Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-11-03T15:55:54.5666890Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-11-03T15:55:54.5667970Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5668830Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.5669720Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.5670580Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-11-03T15:55:54.5671520Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-11-03T15:55:54.5672410Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h' 2025-11-03T15:55:54.5673340Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-11-03T15:55:54.5674320Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-11-03T15:55:54.5675310Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5676250Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5677100Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5677960Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-11-03T15:55:54.5678840Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-11-03T15:55:54.5679680Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-11-03T15:55:54.5680580Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-11-03T15:55:54.5681460Z adding 'torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h' 2025-11-03T15:55:54.5682390Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-11-03T15:55:54.5683500Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-11-03T15:55:54.5684730Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-11-03T15:55:54.5686010Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-11-03T15:55:54.5687060Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5687900Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.5688810Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.5689670Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-11-03T15:55:54.5690550Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-11-03T15:55:54.5691430Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h' 2025-11-03T15:55:54.5692340Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-11-03T15:55:54.5693320Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-11-03T15:55:54.5694340Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5695160Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5696030Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-11-03T15:55:54.5696900Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-11-03T15:55:54.5697740Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-11-03T15:55:54.5698640Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-11-03T15:55:54.5699500Z adding 'torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h' 2025-11-03T15:55:54.5700400Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-11-03T15:55:54.5701440Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-11-03T15:55:54.5702630Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-11-03T15:55:54.5703850Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-11-03T15:55:54.5704910Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5705720Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.5706610Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.5707460Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-11-03T15:55:54.5708390Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-11-03T15:55:54.5709250Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h' 2025-11-03T15:55:54.5710140Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-11-03T15:55:54.5711170Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-11-03T15:55:54.5712140Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5712970Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5713820Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-11-03T15:55:54.5714670Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-11-03T15:55:54.5715520Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-11-03T15:55:54.5716400Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-11-03T15:55:54.5717270Z adding 'torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h' 2025-11-03T15:55:54.5718160Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-11-03T15:55:54.5719180Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-11-03T15:55:54.5720580Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-11-03T15:55:54.5721830Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-11-03T15:55:54.5722900Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5723730Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.5724680Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.5725500Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-11-03T15:55:54.5726400Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-11-03T15:55:54.5727290Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h' 2025-11-03T15:55:54.5728200Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-11-03T15:55:54.5729190Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-11-03T15:55:54.5730160Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5731100Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5731950Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5732800Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-11-03T15:55:54.5733690Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-11-03T15:55:54.5734520Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-11-03T15:55:54.5735420Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-11-03T15:55:54.5736260Z adding 'torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h' 2025-11-03T15:55:54.5737200Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-11-03T15:55:54.5738290Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-11-03T15:55:54.5739560Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-11-03T15:55:54.5740830Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-11-03T15:55:54.5741920Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5742780Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.5743700Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.5744560Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-11-03T15:55:54.5745490Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-11-03T15:55:54.5746390Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h' 2025-11-03T15:55:54.5747290Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-11-03T15:55:54.5748290Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-11-03T15:55:54.5749310Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5750190Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5751020Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-11-03T15:55:54.5751910Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-11-03T15:55:54.5752760Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-11-03T15:55:54.5753690Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-11-03T15:55:54.5754540Z adding 'torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h' 2025-11-03T15:55:54.5755480Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-11-03T15:55:54.5756510Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-11-03T15:55:54.5757840Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-11-03T15:55:54.5759110Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-11-03T15:55:54.5760220Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5761100Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-11-03T15:55:54.5762000Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-11-03T15:55:54.5762900Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-11-03T15:55:54.5763810Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-11-03T15:55:54.5764710Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h' 2025-11-03T15:55:54.5765620Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-11-03T15:55:54.5766680Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-11-03T15:55:54.5767680Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5768540Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5769410Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-11-03T15:55:54.5770320Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-11-03T15:55:54.5771170Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-11-03T15:55:54.5772110Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-11-03T15:55:54.5772990Z adding 'torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h' 2025-11-03T15:55:54.5773890Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-11-03T15:55:54.5774970Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-11-03T15:55:54.5775970Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-11-03T15:55:54.5776990Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5777770Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-11-03T15:55:54.5778710Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-11-03T15:55:54.5779480Z adding 'torch/include/ATen/ops/values.h' 2025-11-03T15:55:54.5780440Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5781240Z adding 'torch/include/ATen/ops/values_copy.h' 2025-11-03T15:55:54.5782210Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5783110Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5783840Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-11-03T15:55:54.5784760Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-11-03T15:55:54.5785600Z adding 'torch/include/ATen/ops/values_native.h' 2025-11-03T15:55:54.5786510Z adding 'torch/include/ATen/ops/values_ops.h' 2025-11-03T15:55:54.5787400Z adding 'torch/include/ATen/ops/values_sparsemps_dispatch.h' 2025-11-03T15:55:54.5788240Z adding 'torch/include/ATen/ops/vander.h' 2025-11-03T15:55:54.5789240Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5789980Z adding 'torch/include/ATen/ops/vander_native.h' 2025-11-03T15:55:54.5790900Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-11-03T15:55:54.5792020Z adding 'torch/include/ATen/ops/var.h' 2025-11-03T15:55:54.5793100Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5793940Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-11-03T15:55:54.5794810Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-11-03T15:55:54.5795830Z adding 'torch/include/ATen/ops/var_mean.h' 2025-11-03T15:55:54.5796850Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5797760Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5798570Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-11-03T15:55:54.5799410Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-11-03T15:55:54.5800240Z adding 'torch/include/ATen/ops/var_mean_mps_dispatch.h' 2025-11-03T15:55:54.5801150Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-11-03T15:55:54.5802330Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-11-03T15:55:54.5803290Z adding 'torch/include/ATen/ops/var_mps_dispatch.h' 2025-11-03T15:55:54.5804160Z adding 'torch/include/ATen/ops/var_native.h' 2025-11-03T15:55:54.5805490Z adding 'torch/include/ATen/ops/var_ops.h' 2025-11-03T15:55:54.5806360Z adding 'torch/include/ATen/ops/vdot.h' 2025-11-03T15:55:54.5807330Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5808120Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-11-03T15:55:54.5808940Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-11-03T15:55:54.5809760Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-11-03T15:55:54.5810690Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-11-03T15:55:54.5811570Z adding 'torch/include/ATen/ops/view.h' 2025-11-03T15:55:54.5812410Z adding 'torch/include/ATen/ops/view_as.h' 2025-11-03T15:55:54.5813590Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-11-03T15:55:54.5814500Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-11-03T15:55:54.5815460Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5816390Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5817100Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-11-03T15:55:54.5818050Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-11-03T15:55:54.5818930Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-11-03T15:55:54.5819750Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-11-03T15:55:54.5820570Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-11-03T15:55:54.5821400Z adding 'torch/include/ATen/ops/view_as_complex_mps_dispatch.h' 2025-11-03T15:55:54.5822240Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-11-03T15:55:54.5823160Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-11-03T15:55:54.5824080Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5824820Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-11-03T15:55:54.5825720Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-11-03T15:55:54.5826600Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-11-03T15:55:54.5827480Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-11-03T15:55:54.5828450Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5829390Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5830130Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-11-03T15:55:54.5831080Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-11-03T15:55:54.5831980Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-11-03T15:55:54.5832750Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-11-03T15:55:54.5833590Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-11-03T15:55:54.5834360Z adding 'torch/include/ATen/ops/view_as_real_mps_dispatch.h' 2025-11-03T15:55:54.5835200Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-11-03T15:55:54.5836070Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-11-03T15:55:54.5837040Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5838150Z adding 'torch/include/ATen/ops/view_copy.h' 2025-11-03T15:55:54.5839240Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5840180Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5840920Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-11-03T15:55:54.5841930Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-11-03T15:55:54.5842800Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-11-03T15:55:54.5843630Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-11-03T15:55:54.5844440Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-11-03T15:55:54.5845290Z adding 'torch/include/ATen/ops/view_mps_dispatch.h' 2025-11-03T15:55:54.5846110Z adding 'torch/include/ATen/ops/view_native.h' 2025-11-03T15:55:54.5847050Z adding 'torch/include/ATen/ops/view_ops.h' 2025-11-03T15:55:54.5847920Z adding 'torch/include/ATen/ops/vsplit.h' 2025-11-03T15:55:54.5848920Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5849770Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-11-03T15:55:54.5850750Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-11-03T15:55:54.5851630Z adding 'torch/include/ATen/ops/vstack.h' 2025-11-03T15:55:54.5852630Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5853380Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-11-03T15:55:54.5854320Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-11-03T15:55:54.5855290Z adding 'torch/include/ATen/ops/where.h' 2025-11-03T15:55:54.5856330Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5857160Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-11-03T15:55:54.5858010Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-11-03T15:55:54.5858840Z adding 'torch/include/ATen/ops/where_mps_dispatch.h' 2025-11-03T15:55:54.5859770Z adding 'torch/include/ATen/ops/where_native.h' 2025-11-03T15:55:54.5860910Z adding 'torch/include/ATen/ops/where_ops.h' 2025-11-03T15:55:54.5861980Z adding 'torch/include/ATen/ops/xlogy.h' 2025-11-03T15:55:54.5863020Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5863940Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-11-03T15:55:54.5864710Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-11-03T15:55:54.5865540Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-11-03T15:55:54.5866390Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-11-03T15:55:54.5867260Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-11-03T15:55:54.5868070Z adding 'torch/include/ATen/ops/xlogy_mps_dispatch.h' 2025-11-03T15:55:54.5868960Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-11-03T15:55:54.5870140Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-11-03T15:55:54.5871060Z adding 'torch/include/ATen/ops/xor.h' 2025-11-03T15:55:54.5872030Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-11-03T15:55:54.5872800Z adding 'torch/include/ATen/ops/xor_native.h' 2025-11-03T15:55:54.5873840Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-11-03T15:55:54.5874740Z adding 'torch/include/ATen/ops/zero.h' 2025-11-03T15:55:54.5875750Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5876510Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-11-03T15:55:54.5877370Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-11-03T15:55:54.5878170Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-11-03T15:55:54.5878970Z adding 'torch/include/ATen/ops/zero_mps_dispatch.h' 2025-11-03T15:55:54.5879820Z adding 'torch/include/ATen/ops/zero_native.h' 2025-11-03T15:55:54.5880790Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-11-03T15:55:54.5881740Z adding 'torch/include/ATen/ops/zero_sparsemps_dispatch.h' 2025-11-03T15:55:54.5882960Z adding 'torch/include/ATen/ops/zeros.h' 2025-11-03T15:55:54.5884050Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5884990Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-11-03T15:55:54.5886020Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-11-03T15:55:54.5886960Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-11-03T15:55:54.5887860Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-11-03T15:55:54.5888900Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-11-03T15:55:54.5889780Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-11-03T15:55:54.5890880Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-11-03T15:55:54.5891860Z adding 'torch/include/ATen/ops/zeros_sparsemps_dispatch.h' 2025-11-03T15:55:54.5894860Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-11-03T15:55:54.5896940Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-11-03T15:55:54.5898100Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-11-03T15:55:54.5899250Z adding 'torch/include/ATen/xpu/PhiloxXpuState.h' 2025-11-03T15:55:54.5899900Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-11-03T15:55:54.5900730Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-11-03T15:55:54.5901530Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-11-03T15:55:54.5903460Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-11-03T15:55:54.5904280Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-11-03T15:55:54.5908380Z adding 'torch/include/ATen/xpu/XPUGraphsUtils.h' 2025-11-03T15:55:54.5908620Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-11-03T15:55:54.5911270Z adding 'torch/include/c10/core/Allocator.h' 2025-11-03T15:55:54.5914530Z adding 'torch/include/c10/core/AllocatorConfig.h' 2025-11-03T15:55:54.5915410Z adding 'torch/include/c10/core/AutogradState.h' 2025-11-03T15:55:54.5917670Z adding 'torch/include/c10/core/Backend.h' 2025-11-03T15:55:54.5918600Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-11-03T15:55:54.5920250Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-11-03T15:55:54.5921170Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-11-03T15:55:54.5922320Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-11-03T15:55:54.5924610Z adding 'torch/include/c10/core/Contiguity.h' 2025-11-03T15:55:54.5925400Z adding 'torch/include/c10/core/CopyBytes.h' 2025-11-03T15:55:54.5926210Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-11-03T15:55:54.5927150Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-11-03T15:55:54.5929260Z adding 'torch/include/c10/core/Device.h' 2025-11-03T15:55:54.5929900Z adding 'torch/include/c10/core/DeviceArray.h' 2025-11-03T15:55:54.5932170Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-11-03T15:55:54.5932830Z adding 'torch/include/c10/core/DeviceType.h' 2025-11-03T15:55:54.5940620Z adding 'torch/include/c10/core/DispatchKey.h' 2025-11-03T15:55:54.5950130Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-11-03T15:55:54.5951860Z adding 'torch/include/c10/core/DynamicCast.h' 2025-11-03T15:55:54.5953320Z adding 'torch/include/c10/core/Event.h' 2025-11-03T15:55:54.5954970Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-11-03T15:55:54.5955780Z adding 'torch/include/c10/core/GradMode.h' 2025-11-03T15:55:54.5957180Z adding 'torch/include/c10/core/InferenceMode.h' 2025-11-03T15:55:54.5958230Z adding 'torch/include/c10/core/Layout.h' 2025-11-03T15:55:54.5960660Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-11-03T15:55:54.5961410Z adding 'torch/include/c10/core/OptionalRef.h' 2025-11-03T15:55:54.5962690Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-11-03T15:55:54.5963640Z adding 'torch/include/c10/core/QEngine.h' 2025-11-03T15:55:54.5964670Z adding 'torch/include/c10/core/QScheme.h' 2025-11-03T15:55:54.5965810Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-11-03T15:55:54.5967090Z adding 'torch/include/c10/core/SafePyObject.h' 2025-11-03T15:55:54.5970200Z adding 'torch/include/c10/core/Scalar.h' 2025-11-03T15:55:54.5972440Z adding 'torch/include/c10/core/ScalarType.h' 2025-11-03T15:55:54.5973320Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-11-03T15:55:54.5975250Z adding 'torch/include/c10/core/Storage.h' 2025-11-03T15:55:54.5977970Z adding 'torch/include/c10/core/StorageImpl.h' 2025-11-03T15:55:54.5980060Z adding 'torch/include/c10/core/Stream.h' 2025-11-03T15:55:54.5982150Z adding 'torch/include/c10/core/StreamGuard.h' 2025-11-03T15:55:54.5983480Z adding 'torch/include/c10/core/SymBool.h' 2025-11-03T15:55:54.5985120Z adding 'torch/include/c10/core/SymFloat.h' 2025-11-03T15:55:54.5988670Z adding 'torch/include/c10/core/SymInt.h' 2025-11-03T15:55:54.5989930Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-11-03T15:55:54.5991450Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-11-03T15:55:54.5993310Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-11-03T15:55:54.6020130Z adding 'torch/include/c10/core/TensorImpl.h' 2025-11-03T15:55:54.6026310Z adding 'torch/include/c10/core/TensorOptions.h' 2025-11-03T15:55:54.6027520Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-11-03T15:55:54.6028570Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-11-03T15:55:54.6029590Z adding 'torch/include/c10/core/alignment.h' 2025-11-03T15:55:54.6030930Z adding 'torch/include/c10/core/thread_pool.h' 2025-11-03T15:55:54.6032690Z adding 'torch/include/c10/core/impl/COW.h' 2025-11-03T15:55:54.6033720Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-11-03T15:55:54.6037250Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-11-03T15:55:54.6038400Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-11-03T15:55:54.6039390Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-11-03T15:55:54.6040660Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-11-03T15:55:54.6044260Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-11-03T15:55:54.6045550Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-11-03T15:55:54.6048170Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-11-03T15:55:54.6049940Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-11-03T15:55:54.6052600Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-11-03T15:55:54.6053450Z adding 'torch/include/c10/core/impl/PyInterpreterHooks.h' 2025-11-03T15:55:54.6055400Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-11-03T15:55:54.6056150Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-11-03T15:55:54.6058270Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-11-03T15:55:54.6059250Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-11-03T15:55:54.6060440Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-11-03T15:55:54.6061310Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-11-03T15:55:54.6063060Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-11-03T15:55:54.6064850Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-11-03T15:55:54.6068750Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-11-03T15:55:54.6070180Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-11-03T15:55:54.6072320Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-11-03T15:55:54.6073680Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-11-03T15:55:54.6075330Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-11-03T15:55:54.6076470Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-11-03T15:55:54.6078900Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-11-03T15:55:54.6079780Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-11-03T15:55:54.6080980Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-11-03T15:55:54.6081890Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-11-03T15:55:54.6084780Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-11-03T15:55:54.6086120Z adding 'torch/include/c10/cuda/driver_api.h' 2025-11-03T15:55:54.6088920Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-11-03T15:55:54.6089650Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-11-03T15:55:54.6090730Z adding 'torch/include/c10/macros/Export.h' 2025-11-03T15:55:54.6091500Z adding 'torch/include/c10/macros/Macros.h' 2025-11-03T15:55:54.6092380Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-11-03T15:55:54.6094370Z adding 'torch/include/c10/metal/atomic.h' 2025-11-03T15:55:54.6095190Z adding 'torch/include/c10/metal/common.h' 2025-11-03T15:55:54.6096790Z adding 'torch/include/c10/metal/expm1f.h' 2025-11-03T15:55:54.6104230Z adding 'torch/include/c10/metal/igamma.h' 2025-11-03T15:55:54.6107500Z adding 'torch/include/c10/metal/indexing.h' 2025-11-03T15:55:54.6108580Z adding 'torch/include/c10/metal/random.h' 2025-11-03T15:55:54.6110830Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-11-03T15:55:54.6120220Z adding 'torch/include/c10/metal/special_math.h' 2025-11-03T15:55:54.6122540Z adding 'torch/include/c10/metal/utils.h' 2025-11-03T15:55:54.6124460Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-11-03T15:55:54.6125890Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-11-03T15:55:54.6127260Z adding 'torch/include/c10/test/util/Macros.h' 2025-11-03T15:55:54.6129940Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-11-03T15:55:54.6133180Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-11-03T15:55:54.6135600Z adding 'torch/include/c10/util/AbortHandler.h' 2025-11-03T15:55:54.6137060Z adding 'torch/include/c10/util/AlignOf.h' 2025-11-03T15:55:54.6138680Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-11-03T15:55:54.6139410Z adding 'torch/include/c10/util/Array.h' 2025-11-03T15:55:54.6141960Z adding 'torch/include/c10/util/ArrayRef.h' 2025-11-03T15:55:54.6142730Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-11-03T15:55:54.6144770Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-11-03T15:55:54.6145430Z adding 'torch/include/c10/util/BFloat16.h' 2025-11-03T15:55:54.6146370Z adding 'torch/include/c10/util/Backtrace.h' 2025-11-03T15:55:54.6147790Z adding 'torch/include/c10/util/Bitset.h' 2025-11-03T15:55:54.6148920Z adding 'torch/include/c10/util/C++17.h' 2025-11-03T15:55:54.6150170Z adding 'torch/include/c10/util/CallOnce.h' 2025-11-03T15:55:54.6152680Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-11-03T15:55:54.6153720Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-11-03T15:55:54.6155000Z adding 'torch/include/c10/util/Deprecated.h' 2025-11-03T15:55:54.6155900Z adding 'torch/include/c10/util/DimVector.h' 2025-11-03T15:55:54.6156980Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-11-03T15:55:54.6158590Z adding 'torch/include/c10/util/Enumerate.h' 2025-11-03T15:55:54.6164540Z adding 'torch/include/c10/util/Exception.h' 2025-11-03T15:55:54.6166340Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-11-03T15:55:54.6167370Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-11-03T15:55:54.6168280Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-11-03T15:55:54.6169190Z adding 'torch/include/c10/util/FileSystem.h' 2025-11-03T15:55:54.6171740Z adding 'torch/include/c10/util/Flags.h' 2025-11-03T15:55:54.6172410Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-11-03T15:55:54.6173230Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-11-03T15:55:54.6173990Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-11-03T15:55:54.6174760Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-11-03T15:55:54.6175550Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-11-03T15:55:54.6176260Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-11-03T15:55:54.6177000Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-11-03T15:55:54.6178290Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-11-03T15:55:54.6179240Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-11-03T15:55:54.6180160Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-11-03T15:55:54.6180860Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-11-03T15:55:54.6182000Z adding 'torch/include/c10/util/FunctionRef.h' 2025-11-03T15:55:54.6183020Z adding 'torch/include/c10/util/Gauge.h' 2025-11-03T15:55:54.6183800Z adding 'torch/include/c10/util/Half-inl.h' 2025-11-03T15:55:54.6184730Z adding 'torch/include/c10/util/Half.h' 2025-11-03T15:55:54.6185890Z adding 'torch/include/c10/util/IdWrapper.h' 2025-11-03T15:55:54.6187360Z adding 'torch/include/c10/util/IntrusiveList.h' 2025-11-03T15:55:54.6188540Z adding 'torch/include/c10/util/Lazy.h' 2025-11-03T15:55:54.6190640Z adding 'torch/include/c10/util/LeftRight.h' 2025-11-03T15:55:54.6191500Z adding 'torch/include/c10/util/Load.h' 2025-11-03T15:55:54.6194310Z adding 'torch/include/c10/util/Logging.h' 2025-11-03T15:55:54.6195620Z adding 'torch/include/c10/util/MathConstants.h' 2025-11-03T15:55:54.6197660Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-11-03T15:55:54.6199310Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-11-03T15:55:54.6200320Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-11-03T15:55:54.6201330Z adding 'torch/include/c10/util/Optional.h' 2025-11-03T15:55:54.6203260Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-11-03T15:55:54.6203970Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-11-03T15:55:54.6206700Z adding 'torch/include/c10/util/Registry.h' 2025-11-03T15:55:54.6207590Z adding 'torch/include/c10/util/ScopeExit.h' 2025-11-03T15:55:54.6208570Z adding 'torch/include/c10/util/Semaphore.h' 2025-11-03T15:55:54.6209670Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-11-03T15:55:54.6220170Z adding 'torch/include/c10/util/SmallVector.h' 2025-11-03T15:55:54.6222370Z adding 'torch/include/c10/util/StringUtil.h' 2025-11-03T15:55:54.6223440Z adding 'torch/include/c10/util/Synchronized.h' 2025-11-03T15:55:54.6224900Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-11-03T15:55:54.6226120Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-11-03T15:55:54.6227040Z adding 'torch/include/c10/util/Type.h' 2025-11-03T15:55:54.6228810Z adding 'torch/include/c10/util/TypeCast.h' 2025-11-03T15:55:54.6230300Z adding 'torch/include/c10/util/TypeIndex.h' 2025-11-03T15:55:54.6233410Z adding 'torch/include/c10/util/TypeList.h' 2025-11-03T15:55:54.6234290Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-11-03T15:55:54.6235800Z adding 'torch/include/c10/util/TypeTraits.h' 2025-11-03T15:55:54.6236750Z adding 'torch/include/c10/util/Unicode.h' 2025-11-03T15:55:54.6238380Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-11-03T15:55:54.6239280Z adding 'torch/include/c10/util/Unroll.h' 2025-11-03T15:55:54.6240450Z adding 'torch/include/c10/util/WaitCounter.h' 2025-11-03T15:55:54.6241450Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-11-03T15:55:54.6242650Z adding 'torch/include/c10/util/accumulate.h' 2025-11-03T15:55:54.6243420Z adding 'torch/include/c10/util/bit_cast.h' 2025-11-03T15:55:54.6244150Z adding 'torch/include/c10/util/bits.h' 2025-11-03T15:55:54.6245250Z adding 'torch/include/c10/util/complex.h' 2025-11-03T15:55:54.6247410Z adding 'torch/include/c10/util/complex_math.h' 2025-11-03T15:55:54.6248240Z adding 'torch/include/c10/util/complex_utils.h' 2025-11-03T15:55:54.6249230Z adding 'torch/include/c10/util/copysign.h' 2025-11-03T15:55:54.6250110Z adding 'torch/include/c10/util/env.h' 2025-11-03T15:55:54.6251040Z adding 'torch/include/c10/util/error.h' 2025-11-03T15:55:54.6261150Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-11-03T15:55:54.6262150Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-11-03T15:55:54.6263440Z adding 'torch/include/c10/util/generic_math.h' 2025-11-03T15:55:54.6266180Z adding 'torch/include/c10/util/hash.h' 2025-11-03T15:55:54.6269000Z adding 'torch/include/c10/util/int128.h' 2025-11-03T15:55:54.6277140Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-11-03T15:55:54.6278590Z adding 'torch/include/c10/util/irange.h' 2025-11-03T15:55:54.6284380Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-11-03T15:55:54.6285680Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-11-03T15:55:54.6287840Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-11-03T15:55:54.6288570Z adding 'torch/include/c10/util/numa.h' 2025-11-03T15:55:54.6300160Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-11-03T15:55:54.6301650Z adding 'torch/include/c10/util/overflows.h' 2025-11-03T15:55:54.6302480Z adding 'torch/include/c10/util/overloaded.h' 2025-11-03T15:55:54.6303230Z adding 'torch/include/c10/util/python_stub.h' 2025-11-03T15:55:54.6303950Z adding 'torch/include/c10/util/qint32.h' 2025-11-03T15:55:54.6304670Z adding 'torch/include/c10/util/qint8.h' 2025-11-03T15:55:54.6305400Z adding 'torch/include/c10/util/quint2x4.h' 2025-11-03T15:55:54.6306130Z adding 'torch/include/c10/util/quint4x2.h' 2025-11-03T15:55:54.6306840Z adding 'torch/include/c10/util/quint8.h' 2025-11-03T15:55:54.6308100Z adding 'torch/include/c10/util/safe_numerics.h' 2025-11-03T15:55:54.6309540Z adding 'torch/include/c10/util/signal_handler.h' 2025-11-03T15:55:54.6315470Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-11-03T15:55:54.6316620Z adding 'torch/include/c10/util/ssize.h' 2025-11-03T15:55:54.6317680Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-11-03T15:55:54.6319770Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-11-03T15:55:54.6320480Z adding 'torch/include/c10/util/strides.h' 2025-11-03T15:55:54.6321400Z adding 'torch/include/c10/util/string_utils.h' 2025-11-03T15:55:54.6324900Z adding 'torch/include/c10/util/string_view.h' 2025-11-03T15:55:54.6329890Z adding 'torch/include/c10/util/strong_type.h' 2025-11-03T15:55:54.6331120Z adding 'torch/include/c10/util/tempfile.h' 2025-11-03T15:55:54.6331940Z adding 'torch/include/c10/util/thread_name.h' 2025-11-03T15:55:54.6337120Z adding 'torch/include/c10/util/typeid.h' 2025-11-03T15:55:54.6338060Z adding 'torch/include/c10/util/win32-headers.h' 2025-11-03T15:55:54.6339410Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-11-03T15:55:54.6341830Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-11-03T15:55:54.6342630Z adding 'torch/include/c10/xpu/XPUException.h' 2025-11-03T15:55:54.6343630Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-11-03T15:55:54.6344640Z adding 'torch/include/c10/xpu/XPUGraphsC10Utils.h' 2025-11-03T15:55:54.6345520Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-11-03T15:55:54.6347660Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-11-03T15:55:54.6349880Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-11-03T15:55:54.6351170Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-11-03T15:55:54.6353010Z adding 'torch/include/caffe2/core/common.h' 2025-11-03T15:55:54.6354060Z adding 'torch/include/caffe2/core/macros.h' 2025-11-03T15:55:54.6355040Z adding 'torch/include/caffe2/core/timer.h' 2025-11-03T15:55:54.6357530Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-11-03T15:55:54.6358850Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-11-03T15:55:54.6360000Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-11-03T15:55:54.6385280Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-11-03T15:55:54.6386620Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-11-03T15:55:54.6387580Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-11-03T15:55:54.6390360Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-11-03T15:55:54.6391180Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-11-03T15:55:54.6392160Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-11-03T15:55:54.6394400Z adding 'torch/include/caffe2/serialize/versions.h' 2025-11-03T15:55:54.6395740Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-11-03T15:55:54.6396720Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-11-03T15:55:54.6397660Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-11-03T15:55:54.6399200Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-11-03T15:55:54.6400160Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-11-03T15:55:54.6403350Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-11-03T15:55:54.6404180Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-11-03T15:55:54.6405760Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-11-03T15:55:54.6406670Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-11-03T15:55:54.6409300Z adding 'torch/include/fmt/args.h' 2025-11-03T15:55:54.6431950Z adding 'torch/include/fmt/base.h' 2025-11-03T15:55:54.6446680Z adding 'torch/include/fmt/chrono.h' 2025-11-03T15:55:54.6452340Z adding 'torch/include/fmt/color.h' 2025-11-03T15:55:54.6456450Z adding 'torch/include/fmt/compile.h' 2025-11-03T15:55:54.6457110Z adding 'torch/include/fmt/core.h' 2025-11-03T15:55:54.6476640Z adding 'torch/include/fmt/format-inl.h' 2025-11-03T15:55:54.6513340Z adding 'torch/include/fmt/format.h' 2025-11-03T15:55:54.6517130Z adding 'torch/include/fmt/os.h' 2025-11-03T15:55:54.6518580Z adding 'torch/include/fmt/ostream.h' 2025-11-03T15:55:54.6523160Z adding 'torch/include/fmt/printf.h' 2025-11-03T15:55:54.6528180Z adding 'torch/include/fmt/ranges.h' 2025-11-03T15:55:54.6532370Z adding 'torch/include/fmt/std.h' 2025-11-03T15:55:54.6534810Z adding 'torch/include/fmt/xchar.h' 2025-11-03T15:55:54.6535990Z adding 'torch/include/fp16/bitcasts.h' 2025-11-03T15:55:54.6539540Z adding 'torch/include/fp16/fp16.h' 2025-11-03T15:55:54.6540910Z adding 'torch/include/fp16/psimd.h' 2025-11-03T15:55:54.6543850Z adding 'torch/include/google/protobuf/any.h' 2025-11-03T15:55:54.6546570Z adding 'torch/include/google/protobuf/any.pb.h' 2025-11-03T15:55:54.6553060Z adding 'torch/include/google/protobuf/api.pb.h' 2025-11-03T15:55:54.6560040Z adding 'torch/include/google/protobuf/arena.h' 2025-11-03T15:55:54.6563800Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-11-03T15:55:54.6567000Z adding 'torch/include/google/protobuf/arenastring.h' 2025-11-03T15:55:54.6586750Z adding 'torch/include/google/protobuf/descriptor.h' 2025-11-03T15:55:54.6636960Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-11-03T15:55:54.6643380Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-11-03T15:55:54.6646540Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-11-03T15:55:54.6649080Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-11-03T15:55:54.6650840Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-11-03T15:55:54.6664980Z adding 'torch/include/google/protobuf/extension_set.h' 2025-11-03T15:55:54.6667880Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-11-03T15:55:54.6670120Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-11-03T15:55:54.6671440Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-11-03T15:55:54.6672760Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-11-03T15:55:54.6676050Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-11-03T15:55:54.6679110Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-11-03T15:55:54.6681470Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-11-03T15:55:54.6682540Z adding 'torch/include/google/protobuf/has_bits.h' 2025-11-03T15:55:54.6684710Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-11-03T15:55:54.6686510Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-11-03T15:55:54.6696760Z adding 'torch/include/google/protobuf/map.h' 2025-11-03T15:55:54.6698950Z adding 'torch/include/google/protobuf/map_entry.h' 2025-11-03T15:55:54.6704190Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-11-03T15:55:54.6710140Z adding 'torch/include/google/protobuf/map_field.h' 2025-11-03T15:55:54.6713120Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-11-03T15:55:54.6715230Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-11-03T15:55:54.6720250Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-11-03T15:55:54.6733790Z adding 'torch/include/google/protobuf/message.h' 2025-11-03T15:55:54.6739720Z adding 'torch/include/google/protobuf/message_lite.h' 2025-11-03T15:55:54.6740870Z adding 'torch/include/google/protobuf/metadata.h' 2025-11-03T15:55:54.6743230Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-11-03T15:55:54.6749430Z adding 'torch/include/google/protobuf/parse_context.h' 2025-11-03T15:55:54.6750390Z adding 'torch/include/google/protobuf/port.h' 2025-11-03T15:55:54.6754800Z adding 'torch/include/google/protobuf/reflection.h' 2025-11-03T15:55:54.6756060Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-11-03T15:55:54.6776700Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-11-03T15:55:54.6780400Z adding 'torch/include/google/protobuf/service.h' 2025-11-03T15:55:54.6782760Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-11-03T15:55:54.6788670Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-11-03T15:55:54.6794850Z adding 'torch/include/google/protobuf/text_format.h' 2025-11-03T15:55:54.6797000Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-11-03T15:55:54.6808070Z adding 'torch/include/google/protobuf/type.pb.h' 2025-11-03T15:55:54.6811580Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-11-03T15:55:54.6815140Z adding 'torch/include/google/protobuf/wire_format.h' 2025-11-03T15:55:54.6828010Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-11-03T15:55:54.6833950Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-11-03T15:55:54.6836970Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-11-03T15:55:54.6842020Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-11-03T15:55:54.6845460Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-11-03T15:55:54.6851600Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-11-03T15:55:54.6853090Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-11-03T15:55:54.6861750Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-11-03T15:55:54.6864120Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-11-03T15:55:54.6865400Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-11-03T15:55:54.6866830Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-11-03T15:55:54.6868320Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-11-03T15:55:54.6869560Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-11-03T15:55:54.6872780Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-11-03T15:55:54.6873660Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-11-03T15:55:54.6875200Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-11-03T15:55:54.6878200Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-11-03T15:55:54.6879430Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-11-03T15:55:54.6881730Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-11-03T15:55:54.6882910Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-11-03T15:55:54.6899730Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-11-03T15:55:54.6902050Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-11-03T15:55:54.6903460Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-11-03T15:55:54.6907470Z adding 'torch/include/google/protobuf/io/printer.h' 2025-11-03T15:55:54.6908550Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-11-03T15:55:54.6912980Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-11-03T15:55:54.6915630Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-11-03T15:55:54.6918210Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-11-03T15:55:54.6921780Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-11-03T15:55:54.6924870Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-11-03T15:55:54.6929430Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-11-03T15:55:54.6929690Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-11-03T15:55:54.6931140Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-11-03T15:55:54.6933250Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-11-03T15:55:54.6934330Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-11-03T15:55:54.6936770Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-11-03T15:55:54.6938110Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-11-03T15:55:54.6943750Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-11-03T15:55:54.6945300Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-11-03T15:55:54.6946390Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-11-03T15:55:54.6947920Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-11-03T15:55:54.6950680Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-11-03T15:55:54.6951830Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-11-03T15:55:54.6953180Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-11-03T15:55:54.6957490Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-11-03T15:55:54.6965080Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-11-03T15:55:54.6966870Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-11-03T15:55:54.6969020Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-11-03T15:55:54.6971450Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-11-03T15:55:54.6974120Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-11-03T15:55:54.6976230Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-11-03T15:55:54.6987260Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-11-03T15:55:54.6990010Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-11-03T15:55:54.6991110Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-11-03T15:55:54.6992320Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-11-03T15:55:54.6994550Z adding 'torch/include/kai/kai_common.h' 2025-11-03T15:55:54.6996950Z adding 'torch/include/kai/ukernels/dwconv/dwconv_f32_f32_f32p/kai_dwconv_clamp_f32_f32_f32p1vlx1b_3x3_s1_4xc_sme2_mla.h' 2025-11-03T15:55:54.6997710Z adding 'torch/include/kai/ukernels/dwconv/dwconv_f32_f32_f32p/kai_dwconv_clamp_f32_f32_f32p_interface.h' 2025-11-03T15:55:54.6998980Z adding 'torch/include/kai/ukernels/dwconv/pack/kai_rhs_dwconv_pack_x32p1vlx1b_x32_x32_sme.h' 2025-11-03T15:55:54.7002050Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-11-03T15:55:54.7002960Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2b_2vlx2vl_sme_mopa.h' 2025-11-03T15:55:54.7004000Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p_f16p_interface.h' 2025-11-03T15:55:54.7005520Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.h' 2025-11-03T15:55:54.7006670Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme_mopa.h' 2025-11-03T15:55:54.7007760Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p_f32p_interface.h' 2025-11-03T15:55:54.7009350Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxp2vlx4sb_2vlx2vl_sme_mopa.h' 2025-11-03T15:55:54.7010440Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h' 2025-11-03T15:55:54.7011430Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p_qsi8cxp_interface.h' 2025-11-03T15:55:54.7013330Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p/kai_matmul_clamp_bf16_qai8dxp1x8_qsi4c32p4x8_1x4_neon_dotprod.h' 2025-11-03T15:55:54.7014910Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p/kai_matmul_clamp_bf16_qai8dxp4x8_qsi4c32p4x8_16x4_neon_i8mm.h' 2025-11-03T15:55:54.7015950Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4c32p/kai_matmul_clamp_bf16_qai8dxp_qsi4c32p_interface.h' 2025-11-03T15:55:54.7017720Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp/kai_matmul_clamp_bf16_qai8dxp1x8_qsi4cxp8x8_1x8_neon_dotprod.h' 2025-11-03T15:55:54.7019220Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp/kai_matmul_clamp_bf16_qai8dxp4x8_qsi4cxp8x8_8x8_neon_i8mm.h' 2025-11-03T15:55:54.7020300Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_bf16_qai8dxp_qsi4cxp/kai_matmul_clamp_bf16_qai8dxp_qsi4cxp_interface.h' 2025-11-03T15:55:54.7021850Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h' 2025-11-03T15:55:54.7022850Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p_bf16p_interface.h' 2025-11-03T15:55:54.7024490Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.h' 2025-11-03T15:55:54.7025820Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.h' 2025-11-03T15:55:54.7027150Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x8vl_sme_mla.h' 2025-11-03T15:55:54.7028440Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p32x1b_6x32_neon_mla.h' 2025-11-03T15:55:54.7029770Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p32x1b_6x32_neon_mla_cortexa55.h' 2025-11-03T15:55:54.7030760Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p_interface.h' 2025-11-03T15:55:54.7032410Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-11-03T15:55:54.7033660Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2b_2vlx2vl_sme_mopa.h' 2025-11-03T15:55:54.7034700Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p_f16p_interface.h' 2025-11-03T15:55:54.7036510Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h' 2025-11-03T15:55:54.7037940Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.h' 2025-11-03T15:55:54.7039430Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.h' 2025-11-03T15:55:54.7040810Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.h' 2025-11-03T15:55:54.7041880Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp_qsi4cxp_interface.h' 2025-11-03T15:55:54.7043600Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h' 2025-11-03T15:55:54.7044940Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h' 2025-11-03T15:55:54.7046340Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h' 2025-11-03T15:55:54.7047660Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h' 2025-11-03T15:55:54.7048710Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp_qsi8cxp_interface.h' 2025-11-03T15:55:54.7050600Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1vlx4_qai4c32p4vlx4_1vlx4vl_sme2_mopa.h' 2025-11-03T15:55:54.7052100Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x4_qai4c32p4vlx4_1x4vl_sme2_dot.h' 2025-11-03T15:55:54.7053610Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x4_qai4c32p4x4_1x4_neon_dotprod.h' 2025-11-03T15:55:54.7055170Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h' 2025-11-03T15:55:54.7056580Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x4_qai4c32p4x4_8x4_neon_dotprod.h' 2025-11-03T15:55:54.7058050Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h' 2025-11-03T15:55:54.7059120Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p_qai4c32p_interface.h' 2025-11-03T15:55:54.7060700Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.h' 2025-11-03T15:55:54.7061970Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h' 2025-11-03T15:55:54.7063030Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h' 2025-11-03T15:55:54.7064620Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.h' 2025-11-03T15:55:54.7065890Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16x1b_6x16_neon_mla.h' 2025-11-03T15:55:54.7067200Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16x1b_6x16_neon_mla_cortexa55.h' 2025-11-03T15:55:54.7068480Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.h' 2025-11-03T15:55:54.7069700Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x8vl_sme_mla.h' 2025-11-03T15:55:54.7070980Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.h' 2025-11-03T15:55:54.7072020Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p_interface.h' 2025-11-03T15:55:54.7073610Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme_mopa.h' 2025-11-03T15:55:54.7074820Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.h' 2025-11-03T15:55:54.7075870Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p_f32p_interface.h' 2025-11-03T15:55:54.7078300Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.h' 2025-11-03T15:55:54.7079440Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.h' 2025-11-03T15:55:54.7080980Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h' 2025-11-03T15:55:54.7082400Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.h' 2025-11-03T15:55:54.7083920Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.h' 2025-11-03T15:55:54.7085370Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.h' 2025-11-03T15:55:54.7086920Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.h' 2025-11-03T15:55:54.7088420Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.h' 2025-11-03T15:55:54.7091000Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h' 2025-11-03T15:55:54.7093210Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.h' 2025-11-03T15:55:54.7095850Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.h' 2025-11-03T15:55:54.7096950Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp_qsi4c32p_interface.h' 2025-11-03T15:55:54.7099400Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.h' 2025-11-03T15:55:54.7100480Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.h' 2025-11-03T15:55:54.7102180Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h' 2025-11-03T15:55:54.7103760Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.h' 2025-11-03T15:55:54.7105250Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.h' 2025-11-03T15:55:54.7106740Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.h' 2025-11-03T15:55:54.7108410Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.h' 2025-11-03T15:55:54.7109880Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.h' 2025-11-03T15:55:54.7111380Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.h' 2025-11-03T15:55:54.7112830Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.h' 2025-11-03T15:55:54.7114440Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.h' 2025-11-03T15:55:54.7115490Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp_qsi4cxp_interface.h' 2025-11-03T15:55:54.7117340Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1vlx4_qsi8cxp4vlx4_1vlx4vl_sme2_mopa.h' 2025-11-03T15:55:54.7118780Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1vlx4_qsi8cxp4vlx4_1vlx4vl_sme_mopa.h' 2025-11-03T15:55:54.7120350Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4vlx4_1x4vl_sme2_dot.h' 2025-11-03T15:55:54.7121750Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4vlx4_1x4vl_sme_dot.h' 2025-11-03T15:55:54.7123120Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h' 2025-11-03T15:55:54.7124440Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h' 2025-11-03T15:55:54.7126000Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h' 2025-11-03T15:55:54.7127330Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h' 2025-11-03T15:55:54.7128390Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp_qsi8cxp_interface.h' 2025-11-03T15:55:54.7130300Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qai4c32p4vlx4_1vlx4vl_sme2_mopa.h' 2025-11-03T15:55:54.7131930Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qai4c32p4vlx4_1x4vl_sme2_dot.h' 2025-11-03T15:55:54.7133460Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qai4c32p4x4_1x4_neon_dotprod.h' 2025-11-03T15:55:54.7134940Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h' 2025-11-03T15:55:54.7136420Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qai4c32p4x4_8x4_neon_dotprod.h' 2025-11-03T15:55:54.7138040Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h' 2025-11-03T15:55:54.7139100Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p_qai4c32p_interface.h' 2025-11-03T15:55:54.7140910Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.h' 2025-11-03T15:55:54.7142320Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.h' 2025-11-03T15:55:54.7143950Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.h' 2025-11-03T15:55:54.7145500Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h' 2025-11-03T15:55:54.7146880Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.h' 2025-11-03T15:55:54.7148300Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.h' 2025-11-03T15:55:54.7149920Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h' 2025-11-03T15:55:54.7151030Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p_qsi4c32p_interface.h' 2025-11-03T15:55:54.7152620Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-11-03T15:55:54.7153610Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h' 2025-11-03T15:55:54.7155460Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.h' 2025-11-03T15:55:54.7156530Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp_interface.h' 2025-11-03T15:55:54.7158160Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxp2vlx4sb_2vlx2vl_sme_mopa.h' 2025-11-03T15:55:54.7159470Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h' 2025-11-03T15:55:54.7160730Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p_qsi8cxpsb_interface.h' 2025-11-03T15:55:54.7162950Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.h' 2025-11-03T15:55:54.7163510Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.h' 2025-11-03T15:55:54.7164600Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.h' 2025-11-03T15:55:54.7165940Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.h' 2025-11-03T15:55:54.7167090Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.h' 2025-11-03T15:55:54.7168260Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.h' 2025-11-03T15:55:54.7169260Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.h' 2025-11-03T15:55:54.7170500Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.h' 2025-11-03T15:55:54.7171640Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.h' 2025-11-03T15:55:54.7172690Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.h' 2025-11-03T15:55:54.7173920Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_bf16_neon.h' 2025-11-03T15:55:54.7175350Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.h' 2025-11-03T15:55:54.7176570Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.h' 2025-11-03T15:55:54.7177790Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p4x8sb_f32_neon.h' 2025-11-03T15:55:54.7178980Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.h' 2025-11-03T15:55:54.7180420Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.h' 2025-11-03T15:55:54.7181630Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.h' 2025-11-03T15:55:54.7182790Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.h' 2025-11-03T15:55:54.7184010Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h' 2025-11-03T15:55:54.7185310Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.h' 2025-11-03T15:55:54.7186330Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.h' 2025-11-03T15:55:54.7187520Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.h' 2025-11-03T15:55:54.7188700Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.h' 2025-11-03T15:55:54.7190060Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.h' 2025-11-03T15:55:54.7191180Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.h' 2025-11-03T15:55:54.7192340Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.h' 2025-11-03T15:55:54.7193470Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.h' 2025-11-03T15:55:54.7194880Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.h' 2025-11-03T15:55:54.7196440Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.h' 2025-11-03T15:55:54.7197930Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.h' 2025-11-03T15:55:54.7199180Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h' 2025-11-03T15:55:54.7200740Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.h' 2025-11-03T15:55:54.7201980Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.h' 2025-11-03T15:55:54.7203110Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p32x1b_x16_x16_neon.h' 2025-11-03T15:55:54.7204120Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x32p16x1b_x32_x32_neon.h' 2025-11-03T15:55:54.7205500Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.h' 2025-11-03T15:55:54.7206930Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.h' 2025-11-03T15:55:54.7208440Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32ps1s0nrx4_qau4c32s0s1_f32_f32_f32_neon.h' 2025-11-03T15:55:54.7209950Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32ps1s0nrx4_qau4c32s1s0_f32_f32_f32_neon.h' 2025-11-03T15:55:54.7211660Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.h' 2025-11-03T15:55:54.7213330Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pnrx4_qsu4c32s1s0_neon.h' 2025-11-03T15:55:54.7214890Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pnrx8_qsu4c32s1s0_neon.h' 2025-11-03T15:55:54.7216470Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.h' 2025-11-03T15:55:54.7218210Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.h' 2025-11-03T15:55:54.7219630Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.h' 2025-11-03T15:55:54.7221140Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.h' 2025-11-03T15:55:54.7222450Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.h' 2025-11-03T15:55:54.7223880Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.h' 2025-11-03T15:55:54.7225090Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.h' 2025-11-03T15:55:54.7227190Z adding 'torch/include/kineto/AbstractConfig.h' 2025-11-03T15:55:54.7228280Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-11-03T15:55:54.7229420Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-11-03T15:55:54.7230560Z adding 'torch/include/kineto/ActivityType.h' 2025-11-03T15:55:54.7231440Z adding 'torch/include/kineto/ClientInterface.h' 2025-11-03T15:55:54.7235130Z adding 'torch/include/kineto/Config.h' 2025-11-03T15:55:54.7236570Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-11-03T15:55:54.7238180Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-11-03T15:55:54.7239260Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-11-03T15:55:54.7240400Z adding 'torch/include/kineto/ITraceActivity.h' 2025-11-03T15:55:54.7241590Z adding 'torch/include/kineto/LoggingAPI.h' 2025-11-03T15:55:54.7242510Z adding 'torch/include/kineto/ThreadUtil.h' 2025-11-03T15:55:54.7243430Z adding 'torch/include/kineto/TraceSpan.h' 2025-11-03T15:55:54.7244820Z adding 'torch/include/kineto/libkineto.h' 2025-11-03T15:55:54.7246060Z adding 'torch/include/kineto/output_base.h' 2025-11-03T15:55:54.7246960Z adding 'torch/include/kineto/time_since_epoch.h' 2025-11-03T15:55:54.7252700Z adding 'torch/include/pybind11/attr.h' 2025-11-03T15:55:54.7254880Z adding 'torch/include/pybind11/buffer_info.h' 2025-11-03T15:55:54.7274440Z adding 'torch/include/pybind11/cast.h' 2025-11-03T15:55:54.7277560Z adding 'torch/include/pybind11/chrono.h' 2025-11-03T15:55:54.7278190Z adding 'torch/include/pybind11/common.h' 2025-11-03T15:55:54.7279660Z adding 'torch/include/pybind11/complex.h' 2025-11-03T15:55:54.7281120Z adding 'torch/include/pybind11/critical_section.h' 2025-11-03T15:55:54.7281970Z adding 'torch/include/pybind11/eigen.h' 2025-11-03T15:55:54.7285240Z adding 'torch/include/pybind11/embed.h' 2025-11-03T15:55:54.7287070Z adding 'torch/include/pybind11/eval.h' 2025-11-03T15:55:54.7289330Z adding 'torch/include/pybind11/functional.h' 2025-11-03T15:55:54.7291220Z adding 'torch/include/pybind11/gil.h' 2025-11-03T15:55:54.7292540Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-11-03T15:55:54.7293460Z adding 'torch/include/pybind11/gil_simple.h' 2025-11-03T15:55:54.7295980Z adding 'torch/include/pybind11/iostream.h' 2025-11-03T15:55:54.7296990Z adding 'torch/include/pybind11/native_enum.h' 2025-11-03T15:55:54.7315300Z adding 'torch/include/pybind11/numpy.h' 2025-11-03T15:55:54.7325180Z adding 'torch/include/pybind11/operators.h' 2025-11-03T15:55:54.7326560Z adding 'torch/include/pybind11/options.h' 2025-11-03T15:55:54.7358540Z adding 'torch/include/pybind11/pybind11.h' 2025-11-03T15:55:54.7378520Z adding 'torch/include/pybind11/pytypes.h' 2025-11-03T15:55:54.7383960Z adding 'torch/include/pybind11/stl.h' 2025-11-03T15:55:54.7389670Z adding 'torch/include/pybind11/stl_bind.h' 2025-11-03T15:55:54.7392640Z adding 'torch/include/pybind11/subinterpreter.h' 2025-11-03T15:55:54.7393930Z adding 'torch/include/pybind11/trampoline_self_life_support.h' 2025-11-03T15:55:54.7395080Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-11-03T15:55:54.7397240Z adding 'torch/include/pybind11/typing.h' 2025-11-03T15:55:54.7398200Z adding 'torch/include/pybind11/warnings.h' 2025-11-03T15:55:54.7400620Z adding 'torch/include/pybind11/conduit/pybind11_conduit_v1.h' 2025-11-03T15:55:54.7401980Z adding 'torch/include/pybind11/conduit/pybind11_platform_abi_id.h' 2025-11-03T15:55:54.7403150Z adding 'torch/include/pybind11/conduit/wrap_include_python_h.h' 2025-11-03T15:55:54.7410250Z adding 'torch/include/pybind11/detail/class.h' 2025-11-03T15:55:54.7422240Z adding 'torch/include/pybind11/detail/common.h' 2025-11-03T15:55:54.7423690Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-11-03T15:55:54.7425830Z adding 'torch/include/pybind11/detail/descr.h' 2025-11-03T15:55:54.7426830Z adding 'torch/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h' 2025-11-03T15:55:54.7428050Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-11-03T15:55:54.7430260Z adding 'torch/include/pybind11/detail/function_record_pyobject.h' 2025-11-03T15:55:54.7434950Z adding 'torch/include/pybind11/detail/init.h' 2025-11-03T15:55:54.7441710Z adding 'torch/include/pybind11/detail/internals.h' 2025-11-03T15:55:54.7443920Z adding 'torch/include/pybind11/detail/native_enum_data.h' 2025-11-03T15:55:54.7444960Z adding 'torch/include/pybind11/detail/pybind11_namespace_macros.h' 2025-11-03T15:55:54.7448170Z adding 'torch/include/pybind11/detail/struct_smart_holder.h' 2025-11-03T15:55:54.7461950Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-11-03T15:55:54.7463150Z adding 'torch/include/pybind11/detail/typeid.h' 2025-11-03T15:55:54.7464090Z adding 'torch/include/pybind11/detail/using_smart_holder.h' 2025-11-03T15:55:54.7466170Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-11-03T15:55:54.7467050Z adding 'torch/include/pybind11/eigen/common.h' 2025-11-03T15:55:54.7473840Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-11-03T15:55:54.7477090Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-11-03T15:55:54.7478440Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-11-03T15:55:54.7483170Z adding 'torch/include/torch/custom_class.h' 2025-11-03T15:55:54.7485440Z adding 'torch/include/torch/custom_class_detail.h' 2025-11-03T15:55:54.7485970Z adding 'torch/include/torch/extension.h' 2025-11-03T15:55:54.7495460Z adding 'torch/include/torch/library.h' 2025-11-03T15:55:54.7496360Z adding 'torch/include/torch/script.h' 2025-11-03T15:55:54.7498690Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-11-03T15:55:54.7499240Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-11-03T15:55:54.7500120Z adding 'torch/include/torch/csrc/Device.h' 2025-11-03T15:55:54.7501010Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-11-03T15:55:54.7501920Z adding 'torch/include/torch/csrc/Dtype.h' 2025-11-03T15:55:54.7502890Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-11-03T15:55:54.7503770Z adding 'torch/include/torch/csrc/Event.h' 2025-11-03T15:55:54.7507220Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-11-03T15:55:54.7507780Z adding 'torch/include/torch/csrc/Export.h' 2025-11-03T15:55:54.7508770Z adding 'torch/include/torch/csrc/Generator.h' 2025-11-03T15:55:54.7509630Z adding 'torch/include/torch/csrc/Layout.h' 2025-11-03T15:55:54.7510530Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-11-03T15:55:54.7511290Z adding 'torch/include/torch/csrc/Module.h' 2025-11-03T15:55:54.7512140Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-11-03T15:55:54.7512980Z adding 'torch/include/torch/csrc/PyInterpreterHooks.h' 2025-11-03T15:55:54.7513840Z adding 'torch/include/torch/csrc/QScheme.h' 2025-11-03T15:55:54.7514700Z adding 'torch/include/torch/csrc/Size.h' 2025-11-03T15:55:54.7515710Z adding 'torch/include/torch/csrc/Storage.h' 2025-11-03T15:55:54.7516580Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-11-03T15:55:54.7517400Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-11-03T15:55:54.7518270Z adding 'torch/include/torch/csrc/Stream.h' 2025-11-03T15:55:54.7519130Z adding 'torch/include/torch/csrc/THConcat.h' 2025-11-03T15:55:54.7519940Z adding 'torch/include/torch/csrc/THP.h' 2025-11-03T15:55:54.7520810Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-11-03T15:55:54.7521580Z adding 'torch/include/torch/csrc/Types.h' 2025-11-03T15:55:54.7522560Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-11-03T15:55:54.7527800Z adding 'torch/include/torch/csrc/itt.h' 2025-11-03T15:55:54.7528020Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-11-03T15:55:54.7528590Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-11-03T15:55:54.7528830Z adding 'torch/include/torch/csrc/python_headers.h' 2025-11-03T15:55:54.7529060Z adding 'torch/include/torch/csrc/serialization.h' 2025-11-03T15:55:54.7529280Z adding 'torch/include/torch/csrc/utils.h' 2025-11-03T15:55:54.7530050Z adding 'torch/include/torch/csrc/acc/Module.h' 2025-11-03T15:55:54.7532020Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-11-03T15:55:54.7532920Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-11-03T15:55:54.7533700Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-11-03T15:55:54.7534620Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-11-03T15:55:54.7535420Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-11-03T15:55:54.7537450Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-11-03T15:55:54.7539170Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-11-03T15:55:54.7541790Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-11-03T15:55:54.7542810Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-11-03T15:55:54.7543770Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-11-03T15:55:54.7544780Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-11-03T15:55:54.7546400Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-11-03T15:55:54.7547100Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-11-03T15:55:54.7547950Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-11-03T15:55:54.7551380Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-11-03T15:55:54.7553790Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-11-03T15:55:54.7555050Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-11-03T15:55:54.7555930Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-11-03T15:55:54.7559700Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-11-03T15:55:54.7560590Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-11-03T15:55:54.7561760Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-11-03T15:55:54.7563070Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-11-03T15:55:54.7563990Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-11-03T15:55:54.7564870Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-11-03T15:55:54.7566880Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-11-03T15:55:54.7567800Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-11-03T15:55:54.7568760Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-11-03T15:55:54.7569810Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-11-03T15:55:54.7571760Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-11-03T15:55:54.7572200Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-11-03T15:55:54.7573230Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-11-03T15:55:54.7574300Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-11-03T15:55:54.7577340Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-11-03T15:55:54.7578270Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-11-03T15:55:54.7580250Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-11-03T15:55:54.7581360Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-11-03T15:55:54.7586390Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-11-03T15:55:54.7587670Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-11-03T15:55:54.7588900Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-11-03T15:55:54.7590070Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-11-03T15:55:54.7591230Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-11-03T15:55:54.7592200Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-11-03T15:55:54.7594400Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-11-03T15:55:54.7595470Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-11-03T15:55:54.7597280Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-11-03T15:55:54.7598300Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-11-03T15:55:54.7599470Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-11-03T15:55:54.7600710Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-11-03T15:55:54.7601780Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-11-03T15:55:54.7602760Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-11-03T15:55:54.7603880Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-11-03T15:55:54.7605010Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-11-03T15:55:54.7606380Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-11-03T15:55:54.7607340Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-11-03T15:55:54.7608540Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-11-03T15:55:54.7609490Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-11-03T15:55:54.7610610Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-11-03T15:55:54.7614030Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-11-03T15:55:54.7615130Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-11-03T15:55:54.7616380Z adding 'torch/include/torch/csrc/api/include/torch/nativert/ModelRunnerHandle.h' 2025-11-03T15:55:54.7618320Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-11-03T15:55:54.7618870Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-11-03T15:55:54.7620840Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-11-03T15:55:54.7625720Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-11-03T15:55:54.7626430Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-11-03T15:55:54.7627280Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-11-03T15:55:54.7628970Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-11-03T15:55:54.7630900Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-11-03T15:55:54.7631510Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-11-03T15:55:54.7636200Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-11-03T15:55:54.7637420Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-11-03T15:55:54.7638780Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-11-03T15:55:54.7639950Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-11-03T15:55:54.7641310Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-11-03T15:55:54.7643530Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-11-03T15:55:54.7644370Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-11-03T15:55:54.7645430Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-11-03T15:55:54.7646350Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-11-03T15:55:54.7650380Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-11-03T15:55:54.7651710Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-11-03T15:55:54.7652800Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-11-03T15:55:54.7653790Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-11-03T15:55:54.7657670Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-11-03T15:55:54.7659970Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-11-03T15:55:54.7661020Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-11-03T15:55:54.7662550Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-11-03T15:55:54.7666030Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-11-03T15:55:54.7667200Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-11-03T15:55:54.7669320Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-11-03T15:55:54.7670650Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-11-03T15:55:54.7673340Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-11-03T15:55:54.7674370Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-11-03T15:55:54.7675770Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-11-03T15:55:54.7677630Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-11-03T15:55:54.7678630Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-11-03T15:55:54.7680060Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-11-03T15:55:54.7681560Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-11-03T15:55:54.7685650Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-11-03T15:55:54.7687220Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-11-03T15:55:54.7689250Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-11-03T15:55:54.7690260Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-11-03T15:55:54.7693760Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-11-03T15:55:54.7696070Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-11-03T15:55:54.7697660Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-11-03T15:55:54.7699100Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-11-03T15:55:54.7701040Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-11-03T15:55:54.7701930Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-11-03T15:55:54.7702890Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-11-03T15:55:54.7706440Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-11-03T15:55:54.7708240Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-11-03T15:55:54.7709560Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-11-03T15:55:54.7710970Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-11-03T15:55:54.7713200Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-11-03T15:55:54.7715590Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-11-03T15:55:54.7716630Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-11-03T15:55:54.7718110Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-11-03T15:55:54.7719670Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-11-03T15:55:54.7723180Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-11-03T15:55:54.7726220Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-11-03T15:55:54.7727050Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-11-03T15:55:54.7728160Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-11-03T15:55:54.7730480Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-11-03T15:55:54.7731340Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-11-03T15:55:54.7732390Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-11-03T15:55:54.7734400Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-11-03T15:55:54.7735970Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-11-03T15:55:54.7736670Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-11-03T15:55:54.7737800Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-11-03T15:55:54.7741280Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-11-03T15:55:54.7743180Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-11-03T15:55:54.7744480Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-11-03T15:55:54.7745660Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-11-03T15:55:54.7748230Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-11-03T15:55:54.7750130Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-11-03T15:55:54.7751070Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-11-03T15:55:54.7752160Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-11-03T15:55:54.7753250Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-11-03T15:55:54.7754990Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-11-03T15:55:54.7755810Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-11-03T15:55:54.7759030Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-11-03T15:55:54.7760720Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-11-03T15:55:54.7761950Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-11-03T15:55:54.7765100Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-11-03T15:55:54.7766500Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-11-03T15:55:54.7767790Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-11-03T15:55:54.7769250Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-11-03T15:55:54.7770640Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-11-03T15:55:54.7772830Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-11-03T15:55:54.7773890Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-11-03T15:55:54.7776800Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-11-03T15:55:54.7777890Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-11-03T15:55:54.7779310Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-11-03T15:55:54.7780500Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-11-03T15:55:54.7781490Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-11-03T15:55:54.7782520Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-11-03T15:55:54.7783570Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-11-03T15:55:54.7784960Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-11-03T15:55:54.7786250Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-11-03T15:55:54.7787140Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-11-03T15:55:54.7792780Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-11-03T15:55:54.7793640Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-11-03T15:55:54.7796880Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-11-03T15:55:54.7798000Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-11-03T15:55:54.7799850Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-11-03T15:55:54.7800820Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-11-03T15:55:54.7801730Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-11-03T15:55:54.7806890Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-11-03T15:55:54.7807760Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-11-03T15:55:54.7810690Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-11-03T15:55:54.7813260Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-11-03T15:55:54.7821020Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-11-03T15:55:54.7822080Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-11-03T15:55:54.7822910Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-11-03T15:55:54.7825670Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-11-03T15:55:54.7826860Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-11-03T15:55:54.7828250Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-11-03T15:55:54.7829320Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-11-03T15:55:54.7830060Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-11-03T15:55:54.7832570Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-11-03T15:55:54.7835340Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-11-03T15:55:54.7835870Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-11-03T15:55:54.7836830Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-11-03T15:55:54.7837860Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-11-03T15:55:54.7839260Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-11-03T15:55:54.7840260Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-11-03T15:55:54.7841080Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-11-03T15:55:54.7842470Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-11-03T15:55:54.7844390Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-11-03T15:55:54.7845250Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-11-03T15:55:54.7846100Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-11-03T15:55:54.7847060Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-11-03T15:55:54.7847870Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-11-03T15:55:54.7848620Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-11-03T15:55:54.7849560Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-11-03T15:55:54.7850580Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-11-03T15:55:54.7851290Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-11-03T15:55:54.7852170Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-11-03T15:55:54.7853450Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-11-03T15:55:54.7854860Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-11-03T15:55:54.7855750Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-11-03T15:55:54.7857690Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-11-03T15:55:54.7858310Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-11-03T15:55:54.7859270Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-11-03T15:55:54.7869170Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-11-03T15:55:54.7870110Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-11-03T15:55:54.7874510Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-11-03T15:55:54.7875540Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-11-03T15:55:54.7876550Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-11-03T15:55:54.7877390Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-11-03T15:55:54.7880020Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-11-03T15:55:54.7881070Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-11-03T15:55:54.7915050Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-11-03T15:55:54.7918390Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-11-03T15:55:54.7921510Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-11-03T15:55:54.7922630Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-11-03T15:55:54.7923770Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-11-03T15:55:54.7928250Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-11-03T15:55:54.7929650Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-11-03T15:55:54.7930920Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-11-03T15:55:54.7931890Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-11-03T15:55:54.7933080Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-11-03T15:55:54.7933950Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-11-03T15:55:54.7935210Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-11-03T15:55:54.7936280Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-11-03T15:55:54.7938570Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-11-03T15:55:54.7939270Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-11-03T15:55:54.7940070Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-11-03T15:55:54.7940910Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-11-03T15:55:54.7941950Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-11-03T15:55:54.7942750Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-11-03T15:55:54.7943700Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-11-03T15:55:54.7944530Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-11-03T15:55:54.7945650Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-11-03T15:55:54.7947520Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-11-03T15:55:54.7948090Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-11-03T15:55:54.7948900Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-11-03T15:55:54.7949900Z adding 'torch/include/torch/csrc/cuda/utils.h' 2025-11-03T15:55:54.7951510Z adding 'torch/include/torch/csrc/distributed/Placement.h' 2025-11-03T15:55:54.7952180Z adding 'torch/include/torch/csrc/distributed/python_placement.h' 2025-11-03T15:55:54.7953680Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-11-03T15:55:54.7954620Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-11-03T15:55:54.7955740Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-11-03T15:55:54.7958130Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-11-03T15:55:54.7960060Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-11-03T15:55:54.7965520Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-11-03T15:55:54.7965730Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-11-03T15:55:54.7965910Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-11-03T15:55:54.7966110Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-11-03T15:55:54.7967110Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-11-03T15:55:54.7968150Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-11-03T15:55:54.7969090Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-11-03T15:55:54.7969870Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-11-03T15:55:54.7971450Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-11-03T15:55:54.7972500Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-11-03T15:55:54.7973830Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-11-03T15:55:54.7974490Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-11-03T15:55:54.7975570Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-11-03T15:55:54.7979110Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-11-03T15:55:54.7979820Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-11-03T15:55:54.7981800Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-11-03T15:55:54.7982720Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-11-03T15:55:54.7985530Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-11-03T15:55:54.7989360Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp' 2025-11-03T15:55:54.7990250Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-11-03T15:55:54.7991400Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-11-03T15:55:54.7992220Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-11-03T15:55:54.7993270Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-11-03T15:55:54.7996730Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-11-03T15:55:54.7997550Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-11-03T15:55:54.7999490Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-11-03T15:55:54.8000280Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-11-03T15:55:54.8006000Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-11-03T15:55:54.8009730Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-11-03T15:55:54.8014160Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp' 2025-11-03T15:55:54.8016140Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-11-03T15:55:54.8029280Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-11-03T15:55:54.8032140Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-11-03T15:55:54.8033540Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-11-03T15:55:54.8036010Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-11-03T15:55:54.8037070Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-11-03T15:55:54.8038460Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-11-03T15:55:54.8040300Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-11-03T15:55:54.8041350Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-11-03T15:55:54.8043810Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-11-03T15:55:54.8045380Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-11-03T15:55:54.8046420Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-11-03T15:55:54.8048500Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-11-03T15:55:54.8049360Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-11-03T15:55:54.8053920Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-11-03T15:55:54.8054740Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-11-03T15:55:54.8056860Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-11-03T15:55:54.8057550Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-11-03T15:55:54.8059260Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-11-03T15:55:54.8059960Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-11-03T15:55:54.8061160Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-11-03T15:55:54.8062100Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-11-03T15:55:54.8063120Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-11-03T15:55:54.8065360Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-11-03T15:55:54.8066260Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-11-03T15:55:54.8067280Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-11-03T15:55:54.8073760Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-11-03T15:55:54.8074940Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-11-03T15:55:54.8076230Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-11-03T15:55:54.8077360Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-11-03T15:55:54.8078300Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-11-03T15:55:54.8079830Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-11-03T15:55:54.8081020Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-11-03T15:55:54.8082410Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-11-03T15:55:54.8083250Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-11-03T15:55:54.8084390Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/CUDAEventCache.hpp' 2025-11-03T15:55:54.8085500Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp' 2025-11-03T15:55:54.8086320Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-11-03T15:55:54.8087450Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-11-03T15:55:54.8088280Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-11-03T15:55:54.8089440Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-11-03T15:55:54.8092370Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h' 2025-11-03T15:55:54.8093550Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp' 2025-11-03T15:55:54.8094480Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp' 2025-11-03T15:55:54.8096000Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp' 2025-11-03T15:55:54.8096930Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp' 2025-11-03T15:55:54.8099180Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp' 2025-11-03T15:55:54.8099890Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/env.hpp' 2025-11-03T15:55:54.8101220Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp' 2025-11-03T15:55:54.8103430Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/nvshmem_team_manager.hpp' 2025-11-03T15:55:54.8104640Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-11-03T15:55:54.8106760Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-11-03T15:55:54.8107940Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-11-03T15:55:54.8108860Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-11-03T15:55:54.8109920Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-11-03T15:55:54.8110850Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-11-03T15:55:54.8111880Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-11-03T15:55:54.8113820Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-11-03T15:55:54.8114520Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-11-03T15:55:54.8115520Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-11-03T15:55:54.8116930Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-11-03T15:55:54.8117670Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-11-03T15:55:54.8121260Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-11-03T15:55:54.8121980Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-11-03T15:55:54.8126560Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-11-03T15:55:54.8130820Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-11-03T15:55:54.8131960Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-11-03T15:55:54.8133120Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-11-03T15:55:54.8134360Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-11-03T15:55:54.8135240Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-11-03T15:55:54.8139530Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-11-03T15:55:54.8140850Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-11-03T15:55:54.8142030Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-11-03T15:55:54.8143160Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-11-03T15:55:54.8144140Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-11-03T15:55:54.8145120Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-11-03T15:55:54.8146780Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-11-03T15:55:54.8148020Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-11-03T15:55:54.8149440Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-11-03T15:55:54.8150890Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-11-03T15:55:54.8152850Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-11-03T15:55:54.8153500Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-11-03T15:55:54.8155170Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-11-03T15:55:54.8165530Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-11-03T15:55:54.8167610Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-11-03T15:55:54.8168540Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-11-03T15:55:54.8169930Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-11-03T15:55:54.8171830Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-11-03T15:55:54.8172560Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-11-03T15:55:54.8173520Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-11-03T15:55:54.8175630Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-11-03T15:55:54.8176830Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-11-03T15:55:54.8178060Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-11-03T15:55:54.8178930Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-11-03T15:55:54.8179900Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-11-03T15:55:54.8180670Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-11-03T15:55:54.8181900Z adding 'torch/include/torch/csrc/export/example_upgraders.h' 2025-11-03T15:55:54.8183700Z adding 'torch/include/torch/csrc/export/pt2_archive_constants.h' 2025-11-03T15:55:54.8184130Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-11-03T15:55:54.8186040Z adding 'torch/include/torch/csrc/export/upgrader.h' 2025-11-03T15:55:54.8186960Z adding 'torch/include/torch/csrc/functionalization/Module.h' 2025-11-03T15:55:54.8187930Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-11-03T15:55:54.8188920Z adding 'torch/include/torch/csrc/fx/node.h' 2025-11-03T15:55:54.8190560Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-11-03T15:55:54.8198060Z adding 'torch/include/torch/csrc/inductor/cpp_prefix.h' 2025-11-03T15:55:54.8198870Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-11-03T15:55:54.8199720Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-11-03T15:55:54.8201860Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-11-03T15:55:54.8203650Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-11-03T15:55:54.8204510Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-11-03T15:55:54.8205380Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-11-03T15:55:54.8206180Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-11-03T15:55:54.8206950Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-11-03T15:55:54.8207690Z adding 'torch/include/torch/csrc/inductor/aoti_include/mps.h' 2025-11-03T15:55:54.8208420Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-11-03T15:55:54.8209800Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-11-03T15:55:54.8210630Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-11-03T15:55:54.8212710Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-11-03T15:55:54.8213440Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-11-03T15:55:54.8214360Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-11-03T15:55:54.8215280Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h' 2025-11-03T15:55:54.8216260Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-11-03T15:55:54.8217040Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-11-03T15:55:54.8219350Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-11-03T15:55:54.8220000Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-11-03T15:55:54.8221150Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-11-03T15:55:54.8223550Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-11-03T15:55:54.8224310Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/kernel_context_tls.h' 2025-11-03T15:55:54.8225820Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-11-03T15:55:54.8226900Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-11-03T15:55:54.8233190Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_base.h' 2025-11-03T15:55:54.8238700Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-11-03T15:55:54.8239600Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-11-03T15:55:54.8241680Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-11-03T15:55:54.8242710Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-11-03T15:55:54.8245500Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-11-03T15:55:54.8246390Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-11-03T15:55:54.8247320Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-11-03T15:55:54.8248480Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-11-03T15:55:54.8249980Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-11-03T15:55:54.8250930Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-11-03T15:55:54.8251840Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-11-03T15:55:54.8254210Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-11-03T15:55:54.8255640Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/macros.h' 2025-11-03T15:55:54.8260090Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-11-03T15:55:54.8261470Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-11-03T15:55:54.8262860Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_deprecated.h' 2025-11-03T15:55:54.8263990Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h' 2025-11-03T15:55:54.8265250Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-11-03T15:55:54.8266670Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.h' 2025-11-03T15:55:54.8270310Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-11-03T15:55:54.8274150Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-11-03T15:55:54.8277270Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h' 2025-11-03T15:55:54.8279190Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-11-03T15:55:54.8280090Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-11-03T15:55:54.8281170Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-11-03T15:55:54.8281970Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-11-03T15:55:54.8282740Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-11-03T15:55:54.8283480Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/mps.h' 2025-11-03T15:55:54.8284320Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-11-03T15:55:54.8285380Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-11-03T15:55:54.8286230Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-11-03T15:55:54.8287010Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h' 2025-11-03T15:55:54.8287790Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-11-03T15:55:54.8288780Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-11-03T15:55:54.8290830Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-11-03T15:55:54.8291630Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-11-03T15:55:54.8292560Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-11-03T15:55:54.8296300Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-11-03T15:55:54.8298100Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-11-03T15:55:54.8299200Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-11-03T15:55:54.8304830Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-11-03T15:55:54.8306640Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-11-03T15:55:54.8308120Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-11-03T15:55:54.8310440Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-11-03T15:55:54.8311410Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-11-03T15:55:54.8312380Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-11-03T15:55:54.8313530Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-11-03T15:55:54.8314350Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-11-03T15:55:54.8315430Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-11-03T15:55:54.8316290Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-11-03T15:55:54.8317160Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-11-03T15:55:54.8318790Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-11-03T15:55:54.8319800Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-11-03T15:55:54.8320700Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-11-03T15:55:54.8321580Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-11-03T15:55:54.8322460Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-11-03T15:55:54.8323370Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-11-03T15:55:54.8325310Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-11-03T15:55:54.8326290Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-11-03T15:55:54.8327510Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-11-03T15:55:54.8328940Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-11-03T15:55:54.8330840Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-11-03T15:55:54.8331890Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-11-03T15:55:54.8332860Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-11-03T15:55:54.8333960Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-11-03T15:55:54.8334930Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-11-03T15:55:54.8335790Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-11-03T15:55:54.8337120Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-11-03T15:55:54.8338230Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-11-03T15:55:54.8339240Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-11-03T15:55:54.8341240Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-11-03T15:55:54.8341940Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-11-03T15:55:54.8343200Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-11-03T15:55:54.8344140Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-11-03T15:55:54.8345530Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-11-03T15:55:54.8346710Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-11-03T15:55:54.8348000Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-11-03T15:55:54.8349290Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-11-03T15:55:54.8352050Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-11-03T15:55:54.8354410Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-11-03T15:55:54.8355000Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-11-03T15:55:54.8355830Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-11-03T15:55:54.8356830Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-11-03T15:55:54.8358020Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-11-03T15:55:54.8358850Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-11-03T15:55:54.8359890Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-11-03T15:55:54.8361060Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-11-03T15:55:54.8361940Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-11-03T15:55:54.8363300Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-11-03T15:55:54.8364250Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-11-03T15:55:54.8366140Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-11-03T15:55:54.8367190Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-11-03T15:55:54.8368150Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-11-03T15:55:54.8370830Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-11-03T15:55:54.8371450Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-11-03T15:55:54.8372300Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-11-03T15:55:54.8373390Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-11-03T15:55:54.8374210Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-11-03T15:55:54.8375150Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-11-03T15:55:54.8375990Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-11-03T15:55:54.8376790Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-11-03T15:55:54.8381580Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-11-03T15:55:54.8382650Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-11-03T15:55:54.8383530Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-11-03T15:55:54.8384740Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-11-03T15:55:54.8385610Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-11-03T15:55:54.8386460Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-11-03T15:55:54.8387510Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-11-03T15:55:54.8388600Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-11-03T15:55:54.8389600Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-11-03T15:55:54.8390600Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-11-03T15:55:54.8394700Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-11-03T15:55:54.8395550Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-11-03T15:55:54.8396510Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-11-03T15:55:54.8402100Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-11-03T15:55:54.8404750Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-11-03T15:55:54.8406830Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-11-03T15:55:54.8413180Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-11-03T15:55:54.8413990Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-11-03T15:55:54.8418060Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-11-03T15:55:54.8419310Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-11-03T15:55:54.8420400Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-11-03T15:55:54.8422320Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-11-03T15:55:54.8422900Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-11-03T15:55:54.8435640Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-11-03T15:55:54.8437400Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-11-03T15:55:54.8438290Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-11-03T15:55:54.8439540Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-11-03T15:55:54.8440380Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-11-03T15:55:54.8442520Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-11-03T15:55:54.8443720Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-11-03T15:55:54.8444570Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-11-03T15:55:54.8446150Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-11-03T15:55:54.8447130Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-11-03T15:55:54.8449220Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-11-03T15:55:54.8450530Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-11-03T15:55:54.8451390Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-11-03T15:55:54.8456820Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-11-03T15:55:54.8457000Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-11-03T15:55:54.8457440Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-11-03T15:55:54.8458390Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-11-03T15:55:54.8459240Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-11-03T15:55:54.8460130Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-11-03T15:55:54.8462130Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-11-03T15:55:54.8463140Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-11-03T15:55:54.8464080Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-11-03T15:55:54.8464960Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-11-03T15:55:54.8465830Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-11-03T15:55:54.8467420Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-11-03T15:55:54.8468200Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-11-03T15:55:54.8469150Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-11-03T15:55:54.8470220Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-11-03T15:55:54.8471200Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-11-03T15:55:54.8472100Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-11-03T15:55:54.8473430Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-11-03T15:55:54.8474420Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-11-03T15:55:54.8475630Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-11-03T15:55:54.8476600Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-11-03T15:55:54.8477780Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-11-03T15:55:54.8478760Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-11-03T15:55:54.8479690Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-11-03T15:55:54.8481600Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-11-03T15:55:54.8482210Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-11-03T15:55:54.8483040Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-11-03T15:55:54.8483920Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-11-03T15:55:54.8485050Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-11-03T15:55:54.8486970Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-11-03T15:55:54.8487690Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-11-03T15:55:54.8488960Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-11-03T15:55:54.8489960Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-11-03T15:55:54.8490920Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-11-03T15:55:54.8492820Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-11-03T15:55:54.8493750Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-11-03T15:55:54.8494640Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-11-03T15:55:54.8495610Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-11-03T15:55:54.8496530Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-11-03T15:55:54.8498610Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-11-03T15:55:54.8499140Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-11-03T15:55:54.8499920Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-11-03T15:55:54.8500980Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-11-03T15:55:54.8501680Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-11-03T15:55:54.8502540Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-11-03T15:55:54.8503390Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-11-03T15:55:54.8504140Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-11-03T15:55:54.8504980Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-11-03T15:55:54.8505910Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-11-03T15:55:54.8506740Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-11-03T15:55:54.8507520Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-11-03T15:55:54.8508320Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-11-03T15:55:54.8509330Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-11-03T15:55:54.8510240Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-11-03T15:55:54.8511120Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-11-03T15:55:54.8512120Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-11-03T15:55:54.8512860Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-11-03T15:55:54.8513690Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-11-03T15:55:54.8514540Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-11-03T15:55:54.8515390Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-11-03T15:55:54.8516300Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-11-03T15:55:54.8517380Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-11-03T15:55:54.8518360Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-11-03T15:55:54.8519250Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-11-03T15:55:54.8520200Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-11-03T15:55:54.8521060Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-11-03T15:55:54.8521850Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-11-03T15:55:54.8522680Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-11-03T15:55:54.8523530Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-11-03T15:55:54.8524320Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-11-03T15:55:54.8525130Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-11-03T15:55:54.8525940Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-11-03T15:55:54.8526780Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-11-03T15:55:54.8527590Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-11-03T15:55:54.8528550Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-11-03T15:55:54.8529590Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-11-03T15:55:54.8530400Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-11-03T15:55:54.8531200Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-11-03T15:55:54.8532010Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-11-03T15:55:54.8532830Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-11-03T15:55:54.8533630Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-11-03T15:55:54.8534390Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-11-03T15:55:54.8535170Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-11-03T15:55:54.8535980Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-11-03T15:55:54.8536780Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-11-03T15:55:54.8537590Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-11-03T15:55:54.8538390Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-11-03T15:55:54.8539320Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-11-03T15:55:54.8540110Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-11-03T15:55:54.8540990Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-11-03T15:55:54.8541840Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-11-03T15:55:54.8542700Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-11-03T15:55:54.8543560Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-11-03T15:55:54.8544380Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-11-03T15:55:54.8545220Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-11-03T15:55:54.8546220Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-11-03T15:55:54.8547060Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-11-03T15:55:54.8549000Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-11-03T15:55:54.8549520Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-11-03T15:55:54.8550400Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-11-03T15:55:54.8551280Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-11-03T15:55:54.8552320Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-11-03T15:55:54.8553130Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-11-03T15:55:54.8553900Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-11-03T15:55:54.8555100Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-11-03T15:55:54.8555900Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-11-03T15:55:54.8556810Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-11-03T15:55:54.8557580Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-11-03T15:55:54.8558380Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-11-03T15:55:54.8559550Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-11-03T15:55:54.8560360Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-11-03T15:55:54.8561190Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-11-03T15:55:54.8561960Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-11-03T15:55:54.8562960Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-11-03T15:55:54.8563880Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-11-03T15:55:54.8564770Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-11-03T15:55:54.8566260Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-11-03T15:55:54.8567330Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-11-03T15:55:54.8568280Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-11-03T15:55:54.8569500Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-11-03T15:55:54.8570650Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-11-03T15:55:54.8572670Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-11-03T15:55:54.8573440Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-11-03T15:55:54.8574300Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-11-03T15:55:54.8575180Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-11-03T15:55:54.8576020Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-11-03T15:55:54.8577330Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-11-03T15:55:54.8578540Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-11-03T15:55:54.8579450Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-11-03T15:55:54.8580810Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-11-03T15:55:54.8581650Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-11-03T15:55:54.8582490Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-11-03T15:55:54.8583240Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-11-03T15:55:54.8584070Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-11-03T15:55:54.8585240Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-11-03T15:55:54.8586030Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-11-03T15:55:54.8587070Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-11-03T15:55:54.8587930Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-11-03T15:55:54.8588780Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-11-03T15:55:54.8589640Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-11-03T15:55:54.8590440Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-11-03T15:55:54.8591370Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-11-03T15:55:54.8592140Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-11-03T15:55:54.8592940Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-11-03T15:55:54.8593740Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-11-03T15:55:54.8595220Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-11-03T15:55:54.8596060Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-11-03T15:55:54.8597200Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-11-03T15:55:54.8597980Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-11-03T15:55:54.8599190Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-11-03T15:55:54.8600180Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-11-03T15:55:54.8601380Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-11-03T15:55:54.8602500Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-11-03T15:55:54.8603390Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-11-03T15:55:54.8605400Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-11-03T15:55:54.8606250Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-11-03T15:55:54.8607270Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-11-03T15:55:54.8613540Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-11-03T15:55:54.8614370Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-11-03T15:55:54.8615260Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-11-03T15:55:54.8616340Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-11-03T15:55:54.8618430Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-11-03T15:55:54.8619090Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-11-03T15:55:54.8619950Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-11-03T15:55:54.8621090Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-11-03T15:55:54.8622190Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-11-03T15:55:54.8623280Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-11-03T15:55:54.8624420Z adding 'torch/include/torch/csrc/jit/python/opaque_obj.h' 2025-11-03T15:55:54.8626670Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-11-03T15:55:54.8636200Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-11-03T15:55:54.8638470Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-11-03T15:55:54.8639070Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-11-03T15:55:54.8640300Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-11-03T15:55:54.8641370Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-11-03T15:55:54.8642810Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-11-03T15:55:54.8644610Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-11-03T15:55:54.8646950Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-11-03T15:55:54.8647640Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-11-03T15:55:54.8648440Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-11-03T15:55:54.8649190Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-11-03T15:55:54.8650010Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-11-03T15:55:54.8650770Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-11-03T15:55:54.8655260Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-11-03T15:55:54.8656540Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-11-03T15:55:54.8657760Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-11-03T15:55:54.8658720Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-11-03T15:55:54.8659690Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-11-03T15:55:54.8660550Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-11-03T15:55:54.8661390Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-11-03T15:55:54.8663060Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-11-03T15:55:54.8664350Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-11-03T15:55:54.8666330Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-11-03T15:55:54.8667760Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-11-03T15:55:54.8669630Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-11-03T15:55:54.8670290Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-11-03T15:55:54.8671090Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-11-03T15:55:54.8672350Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-11-03T15:55:54.8675100Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-11-03T15:55:54.8675670Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-11-03T15:55:54.8676490Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-11-03T15:55:54.8677770Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-11-03T15:55:54.8680230Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-11-03T15:55:54.8685830Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-11-03T15:55:54.8686930Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-11-03T15:55:54.8687810Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-11-03T15:55:54.8688570Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-11-03T15:55:54.8689470Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-11-03T15:55:54.8690360Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-11-03T15:55:54.8691210Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-11-03T15:55:54.8692440Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-11-03T15:55:54.8693290Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-11-03T15:55:54.8694170Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-11-03T15:55:54.8695090Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-11-03T15:55:54.8697140Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-11-03T15:55:54.8703790Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-11-03T15:55:54.8704880Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-11-03T15:55:54.8705780Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-11-03T15:55:54.8708120Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-11-03T15:55:54.8708710Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-11-03T15:55:54.8716890Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-11-03T15:55:54.8717580Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-11-03T15:55:54.8720500Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-11-03T15:55:54.8721780Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-11-03T15:55:54.8723150Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-11-03T15:55:54.8725090Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-11-03T15:55:54.8725840Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-11-03T15:55:54.8726720Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-11-03T15:55:54.8728710Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-11-03T15:55:54.8731100Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-11-03T15:55:54.8731870Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-11-03T15:55:54.8733160Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-11-03T15:55:54.8733990Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-11-03T15:55:54.8735200Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-11-03T15:55:54.8736130Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-11-03T15:55:54.8736990Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-11-03T15:55:54.8737840Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-11-03T15:55:54.8738730Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-11-03T15:55:54.8739960Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-11-03T15:55:54.8752480Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-11-03T15:55:54.8753730Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-11-03T15:55:54.8755230Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-11-03T15:55:54.8757560Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-11-03T15:55:54.8759340Z adding 'torch/include/torch/csrc/jit/serialization/pickler_helper.h' 2025-11-03T15:55:54.8760260Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-11-03T15:55:54.8761380Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-11-03T15:55:54.8762290Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-11-03T15:55:54.8763350Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-11-03T15:55:54.8764270Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-11-03T15:55:54.8766610Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-11-03T15:55:54.8769190Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-11-03T15:55:54.8770410Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-11-03T15:55:54.8771500Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-11-03T15:55:54.8773400Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-11-03T15:55:54.8775230Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-11-03T15:55:54.8776200Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-11-03T15:55:54.8777110Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-11-03T15:55:54.8779340Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-11-03T15:55:54.8780330Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-11-03T15:55:54.8782870Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-11-03T15:55:54.8783720Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-11-03T15:55:54.8786790Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-11-03T15:55:54.8787900Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-11-03T15:55:54.8788800Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-11-03T15:55:54.8789990Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-11-03T15:55:54.8791250Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-11-03T15:55:54.8793580Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-11-03T15:55:54.8795450Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-11-03T15:55:54.8797510Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-11-03T15:55:54.8798900Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-11-03T15:55:54.8803370Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-11-03T15:55:54.8804300Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-11-03T15:55:54.8805400Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-11-03T15:55:54.8807030Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-11-03T15:55:54.8810270Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-11-03T15:55:54.8811010Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-11-03T15:55:54.8812070Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-11-03T15:55:54.8815550Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-11-03T15:55:54.8816750Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-11-03T15:55:54.8817800Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-11-03T15:55:54.8823200Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-11-03T15:55:54.8824180Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-11-03T15:55:54.8825130Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-11-03T15:55:54.8828510Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-11-03T15:55:54.8830570Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-11-03T15:55:54.8833920Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-11-03T15:55:54.8838420Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-11-03T15:55:54.8840500Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-11-03T15:55:54.8841140Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-11-03T15:55:54.8843040Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-11-03T15:55:54.8843760Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-11-03T15:55:54.8844790Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-11-03T15:55:54.8846250Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-11-03T15:55:54.8847290Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-11-03T15:55:54.8848410Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-11-03T15:55:54.8849270Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-11-03T15:55:54.8850110Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-11-03T15:55:54.8851290Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-11-03T15:55:54.8852490Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-11-03T15:55:54.8853290Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-11-03T15:55:54.8854130Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-11-03T15:55:54.8855420Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-11-03T15:55:54.8856600Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-11-03T15:55:54.8857500Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-11-03T15:55:54.8859430Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-11-03T15:55:54.8860550Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-11-03T15:55:54.8862470Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-11-03T15:55:54.8863420Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-11-03T15:55:54.8865390Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-11-03T15:55:54.8866240Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-11-03T15:55:54.8867220Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-11-03T15:55:54.8868230Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-11-03T15:55:54.8870310Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-11-03T15:55:54.8871370Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-11-03T15:55:54.8873790Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-11-03T15:55:54.8875010Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-11-03T15:55:54.8875900Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-11-03T15:55:54.8877090Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-11-03T15:55:54.8878110Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-11-03T15:55:54.8881580Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-11-03T15:55:54.8883720Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-11-03T15:55:54.8884760Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-11-03T15:55:54.8885780Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-11-03T15:55:54.8886910Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-11-03T15:55:54.8889280Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-11-03T15:55:54.8892050Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-11-03T15:55:54.8892990Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-11-03T15:55:54.8894170Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-11-03T15:55:54.8895080Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-11-03T15:55:54.8896420Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-11-03T15:55:54.8897390Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-11-03T15:55:54.8898630Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-11-03T15:55:54.8899980Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-11-03T15:55:54.8901230Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-11-03T15:55:54.8902150Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-11-03T15:55:54.8928770Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-11-03T15:55:54.8933040Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-11-03T15:55:54.8934180Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-11-03T15:55:54.8935550Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-11-03T15:55:54.8936460Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-11-03T15:55:54.8937580Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-11-03T15:55:54.8938720Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-11-03T15:55:54.8940050Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-11-03T15:55:54.8940930Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-11-03T15:55:54.8941900Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-11-03T15:55:54.8942780Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-11-03T15:55:54.8943860Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-11-03T15:55:54.8945490Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-11-03T15:55:54.8946670Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-11-03T15:55:54.8947600Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-11-03T15:55:54.8949200Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-11-03T15:55:54.8950030Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-11-03T15:55:54.8951410Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-11-03T15:55:54.8953910Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-11-03T15:55:54.8955070Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-11-03T15:55:54.8955910Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-11-03T15:55:54.8956910Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-11-03T15:55:54.8957910Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-11-03T15:55:54.8959310Z adding 'torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h' 2025-11-03T15:55:54.8960290Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-11-03T15:55:54.8961410Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-11-03T15:55:54.8962190Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-11-03T15:55:54.8963260Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-11-03T15:55:54.8964460Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-11-03T15:55:54.8969130Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-11-03T15:55:54.8970150Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-11-03T15:55:54.8972370Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-11-03T15:55:54.8973530Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-11-03T15:55:54.8974490Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-11-03T15:55:54.8975430Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-11-03T15:55:54.8977270Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-11-03T15:55:54.8977850Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-11-03T15:55:54.8979050Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-11-03T15:55:54.8981150Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-11-03T15:55:54.8983740Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-11-03T15:55:54.8984660Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-11-03T15:55:54.8985540Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-11-03T15:55:54.8986720Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-11-03T15:55:54.8987800Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-11-03T15:55:54.8988770Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-11-03T15:55:54.8989990Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-11-03T15:55:54.8990790Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-11-03T15:55:54.8991820Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-11-03T15:55:54.8992870Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-11-03T15:55:54.8994020Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-11-03T15:55:54.8995420Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-11-03T15:55:54.8996700Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-11-03T15:55:54.8999040Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-11-03T15:55:54.8999880Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-11-03T15:55:54.9001790Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-11-03T15:55:54.9002800Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-11-03T15:55:54.9004080Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-11-03T15:55:54.9006870Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-11-03T15:55:54.9008030Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-11-03T15:55:54.9010880Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-11-03T15:55:54.9012190Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-11-03T15:55:54.9013640Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-11-03T15:55:54.9014660Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-11-03T15:55:54.9015910Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-11-03T15:55:54.9016890Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-11-03T15:55:54.9018020Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-11-03T15:55:54.9019630Z adding 'torch/include/torch/csrc/stable/accelerator.h' 2025-11-03T15:55:54.9021740Z adding 'torch/include/torch/csrc/stable/library.h' 2025-11-03T15:55:54.9023530Z adding 'torch/include/torch/csrc/stable/ops.h' 2025-11-03T15:55:54.9026790Z adding 'torch/include/torch/csrc/stable/stableivalue_conversions.h' 2025-11-03T15:55:54.9027310Z adding 'torch/include/torch/csrc/stable/tensor.h' 2025-11-03T15:55:54.9028410Z adding 'torch/include/torch/csrc/stable/tensor_inl.h' 2025-11-03T15:55:54.9030380Z adding 'torch/include/torch/csrc/stable/tensor_struct.h' 2025-11-03T15:55:54.9031050Z adding 'torch/include/torch/csrc/stable/version.h' 2025-11-03T15:55:54.9032330Z adding 'torch/include/torch/csrc/stable/c/shim.h' 2025-11-03T15:55:54.9033720Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-11-03T15:55:54.9035570Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-11-03T15:55:54.9036240Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-11-03T15:55:54.9037020Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-11-03T15:55:54.9038400Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-11-03T15:55:54.9039490Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-11-03T15:55:54.9053580Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-11-03T15:55:54.9054750Z adding 'torch/include/torch/csrc/utils/init.h' 2025-11-03T15:55:54.9055860Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-11-03T15:55:54.9056700Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-11-03T15:55:54.9057600Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-11-03T15:55:54.9058730Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-11-03T15:55:54.9059710Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-11-03T15:55:54.9062750Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-11-03T15:55:54.9063480Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-11-03T15:55:54.9064300Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-11-03T15:55:54.9072320Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-11-03T15:55:54.9073510Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-11-03T15:55:54.9074350Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-11-03T15:55:54.9076400Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-11-03T15:55:54.9077250Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-11-03T15:55:54.9078940Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-11-03T15:55:54.9080230Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-11-03T15:55:54.9081190Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-11-03T15:55:54.9083180Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-11-03T15:55:54.9083910Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-11-03T15:55:54.9084790Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-11-03T15:55:54.9091120Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-11-03T15:55:54.9092540Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-11-03T15:55:54.9093570Z adding 'torch/include/torch/csrc/utils/six.h' 2025-11-03T15:55:54.9094600Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-11-03T15:55:54.9095450Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-11-03T15:55:54.9096240Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-11-03T15:55:54.9097470Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-11-03T15:55:54.9098390Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-11-03T15:55:54.9099270Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-11-03T15:55:54.9100110Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-11-03T15:55:54.9101250Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-11-03T15:55:54.9102360Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-11-03T15:55:54.9103170Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-11-03T15:55:54.9104030Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-11-03T15:55:54.9106160Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-11-03T15:55:54.9108380Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-11-03T15:55:54.9109200Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-11-03T15:55:54.9110420Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-11-03T15:55:54.9111210Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-11-03T15:55:54.9112550Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-11-03T15:55:54.9113350Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-11-03T15:55:54.9114180Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-11-03T15:55:54.9115340Z adding 'torch/include/torch/headeronly/version.h' 2025-11-03T15:55:54.9117670Z adding 'torch/include/torch/headeronly/core/DeviceType.h' 2025-11-03T15:55:54.9120770Z adding 'torch/include/torch/headeronly/core/ScalarType.h' 2025-11-03T15:55:54.9122160Z adding 'torch/include/torch/headeronly/cpu/vec/intrinsics.h' 2025-11-03T15:55:54.9123200Z adding 'torch/include/torch/headeronly/cpu/vec/vec_half.h' 2025-11-03T15:55:54.9125550Z adding 'torch/include/torch/headeronly/cpu/vec/vec256/missing_vld1_neon.h' 2025-11-03T15:55:54.9126190Z adding 'torch/include/torch/headeronly/cpu/vec/vec256/missing_vst1_neon.h' 2025-11-03T15:55:54.9128430Z adding 'torch/include/torch/headeronly/macros/Export.h' 2025-11-03T15:55:54.9133250Z adding 'torch/include/torch/headeronly/macros/Macros.h' 2025-11-03T15:55:54.9134150Z adding 'torch/include/torch/headeronly/macros/cmake_macros.h' 2025-11-03T15:55:54.9137080Z adding 'torch/include/torch/headeronly/util/BFloat16.h' 2025-11-03T15:55:54.9138240Z adding 'torch/include/torch/headeronly/util/Exception.h' 2025-11-03T15:55:54.9139240Z adding 'torch/include/torch/headeronly/util/Float4_e2m1fn_x2.h' 2025-11-03T15:55:54.9142840Z adding 'torch/include/torch/headeronly/util/Float8_e4m3fn.h' 2025-11-03T15:55:54.9145270Z adding 'torch/include/torch/headeronly/util/Float8_e4m3fnuz.h' 2025-11-03T15:55:54.9147700Z adding 'torch/include/torch/headeronly/util/Float8_e5m2.h' 2025-11-03T15:55:54.9150140Z adding 'torch/include/torch/headeronly/util/Float8_e5m2fnuz.h' 2025-11-03T15:55:54.9152210Z adding 'torch/include/torch/headeronly/util/Float8_e8m0fnu.h' 2025-11-03T15:55:54.9153010Z adding 'torch/include/torch/headeronly/util/Float8_fnuz_cvt.h' 2025-11-03T15:55:54.9158130Z adding 'torch/include/torch/headeronly/util/Half.h' 2025-11-03T15:55:54.9159410Z adding 'torch/include/torch/headeronly/util/TypeSafeSignMath.h' 2025-11-03T15:55:54.9160580Z adding 'torch/include/torch/headeronly/util/bit_cast.h' 2025-11-03T15:55:54.9161560Z adding 'torch/include/torch/headeronly/util/bits.h' 2025-11-03T15:55:54.9165230Z adding 'torch/include/torch/headeronly/util/complex.h' 2025-11-03T15:55:54.9165990Z adding 'torch/include/torch/headeronly/util/floating_point_utils.h' 2025-11-03T15:55:54.9167050Z adding 'torch/include/torch/headeronly/util/qint32.h' 2025-11-03T15:55:54.9167880Z adding 'torch/include/torch/headeronly/util/qint8.h' 2025-11-03T15:55:54.9168740Z adding 'torch/include/torch/headeronly/util/quint2x4.h' 2025-11-03T15:55:54.9169570Z adding 'torch/include/torch/headeronly/util/quint4x2.h' 2025-11-03T15:55:54.9170580Z adding 'torch/include/torch/headeronly/util/quint8.h' 2025-11-03T15:55:54.9171560Z adding 'torch/include/torch/headeronly/util/shim_utils.h' 2025-11-03T15:55:54.9174630Z adding 'torch/jit/__init__.py' 2025-11-03T15:55:54.9175780Z adding 'torch/jit/_async.py' 2025-11-03T15:55:54.9176850Z adding 'torch/jit/_await.py' 2025-11-03T15:55:54.9179040Z adding 'torch/jit/_builtins.py' 2025-11-03T15:55:54.9181380Z adding 'torch/jit/_check.py' 2025-11-03T15:55:54.9183440Z adding 'torch/jit/_dataclass_impls.py' 2025-11-03T15:55:54.9184090Z adding 'torch/jit/_decomposition_utils.py' 2025-11-03T15:55:54.9186010Z adding 'torch/jit/_decompositions.py' 2025-11-03T15:55:54.9188240Z adding 'torch/jit/_freeze.py' 2025-11-03T15:55:54.9189960Z adding 'torch/jit/_fuser.py' 2025-11-03T15:55:54.9190910Z adding 'torch/jit/_ir_utils.py' 2025-11-03T15:55:54.9191720Z adding 'torch/jit/_logging.py' 2025-11-03T15:55:54.9194040Z adding 'torch/jit/_monkeytype_config.py' 2025-11-03T15:55:54.9194720Z adding 'torch/jit/_pickle.py' 2025-11-03T15:55:54.9204560Z adding 'torch/jit/_recursive.py' 2025-11-03T15:55:54.9220310Z adding 'torch/jit/_script.py' 2025-11-03T15:55:54.9222740Z adding 'torch/jit/_script.pyi' 2025-11-03T15:55:54.9225370Z adding 'torch/jit/_serialization.py' 2025-11-03T15:55:54.9234580Z adding 'torch/jit/_shape_functions.py' 2025-11-03T15:55:54.9235860Z adding 'torch/jit/_state.py' 2025-11-03T15:55:54.9247860Z adding 'torch/jit/_trace.py' 2025-11-03T15:55:54.9252590Z adding 'torch/jit/annotations.py' 2025-11-03T15:55:54.9262230Z adding 'torch/jit/frontend.py' 2025-11-03T15:55:54.9263360Z adding 'torch/jit/generate_bytecode.py' 2025-11-03T15:55:54.9264420Z adding 'torch/jit/quantized.py' 2025-11-03T15:55:54.9267150Z adding 'torch/jit/supported_ops.py' 2025-11-03T15:55:54.9268250Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-11-03T15:55:54.9269350Z adding 'torch/jit/_passes/__init__.py' 2025-11-03T15:55:54.9270390Z adding 'torch/jit/_passes/_property_propagation.py' 2025-11-03T15:55:54.9272700Z adding 'torch/jit/mobile/__init__.py' 2025-11-03T15:55:54.9561130Z adding 'torch/lib/libc10.dylib' 2025-11-03T15:55:54.9783600Z adding 'torch/lib/libomp.dylib' 2025-11-03T15:55:54.9799620Z adding 'torch/lib/libshm.dylib' 2025-11-03T15:55:54.9802510Z adding 'torch/lib/libtorch.dylib' 2025-11-03T15:55:58.6932360Z adding 'torch/lib/libtorch_cpu.dylib' 2025-11-03T15:55:58.7731960Z adding 'torch/lib/libtorch_global_deps.dylib' 2025-11-03T15:55:59.3698310Z adding 'torch/lib/libtorch_python.dylib' 2025-11-03T15:55:59.3818220Z adding 'torch/lib/libshm/alloc_info.h' 2025-11-03T15:55:59.3819180Z adding 'torch/lib/libshm/err.h' 2025-11-03T15:55:59.3820480Z adding 'torch/lib/libshm/libshm.h' 2025-11-03T15:55:59.3822480Z adding 'torch/lib/libshm/socket.h' 2025-11-03T15:55:59.3823470Z adding 'torch/lib/libshm_windows/libshm.h' 2025-11-03T15:55:59.3844610Z adding 'torch/linalg/__init__.py' 2025-11-03T15:55:59.3847460Z adding 'torch/masked/__init__.py' 2025-11-03T15:55:59.3851340Z adding 'torch/masked/_docs.py' 2025-11-03T15:55:59.3864230Z adding 'torch/masked/_ops.py' 2025-11-03T15:55:59.3865490Z adding 'torch/masked/maskedtensor/__init__.py' 2025-11-03T15:55:59.3869000Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-11-03T15:55:59.3870440Z adding 'torch/masked/maskedtensor/binary.py' 2025-11-03T15:55:59.3873650Z adding 'torch/masked/maskedtensor/core.py' 2025-11-03T15:55:59.3874350Z adding 'torch/masked/maskedtensor/creation.py' 2025-11-03T15:55:59.3875320Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-11-03T15:55:59.3877330Z adding 'torch/masked/maskedtensor/reductions.py' 2025-11-03T15:55:59.3878330Z adding 'torch/masked/maskedtensor/unary.py' 2025-11-03T15:55:59.3879580Z adding 'torch/monitor/__init__.py' 2025-11-03T15:55:59.3882100Z adding 'torch/mps/__init__.py' 2025-11-03T15:55:59.3882720Z adding 'torch/mps/event.py' 2025-11-03T15:55:59.3884000Z adding 'torch/mps/profiler.py' 2025-11-03T15:55:59.3887570Z adding 'torch/mtia/__init__.py' 2025-11-03T15:55:59.3888370Z adding 'torch/mtia/_utils.py' 2025-11-03T15:55:59.3889390Z adding 'torch/mtia/memory.py' 2025-11-03T15:55:59.3891230Z adding 'torch/multiprocessing/__init__.py' 2025-11-03T15:55:59.3891920Z adding 'torch/multiprocessing/_atfork.py' 2025-11-03T15:55:59.3892970Z adding 'torch/multiprocessing/pool.py' 2025-11-03T15:55:59.3893950Z adding 'torch/multiprocessing/queue.py' 2025-11-03T15:55:59.3899130Z adding 'torch/multiprocessing/reductions.py' 2025-11-03T15:55:59.3902380Z adding 'torch/multiprocessing/spawn.py' 2025-11-03T15:55:59.3903130Z adding 'torch/nativert/__init__.py' 2025-11-03T15:55:59.3904090Z adding 'torch/nativert/backends/__init__.py' 2025-11-03T15:55:59.3905480Z adding 'torch/nativert/backends/_lower_utils.py' 2025-11-03T15:55:59.3906420Z adding 'torch/nativert/backends/_lowered_aoti_module.py' 2025-11-03T15:55:59.3911300Z adding 'torch/nested/__init__.py' 2025-11-03T15:55:59.3912100Z adding 'torch/nested/_internal/__init__.py' 2025-11-03T15:55:59.3913310Z adding 'torch/nested/_internal/nested_int.py' 2025-11-03T15:55:59.3918750Z adding 'torch/nested/_internal/nested_tensor.py' 2025-11-03T15:55:59.4044470Z adding 'torch/nested/_internal/ops.py' 2025-11-03T15:55:59.4052180Z adding 'torch/nested/_internal/sdpa.py' 2025-11-03T15:55:59.4055780Z adding 'torch/nn/__init__.py' 2025-11-03T15:55:59.4056780Z adding 'torch/nn/_reduction.py' 2025-11-03T15:55:59.4058600Z adding 'torch/nn/common_types.py' 2025-11-03T15:55:59.4059670Z adding 'torch/nn/cpp.py' 2025-11-03T15:55:59.4105070Z adding 'torch/nn/functional.py' 2025-11-03T15:55:59.4109810Z adding 'torch/nn/functional.pyi' 2025-11-03T15:55:59.4111220Z adding 'torch/nn/grad.py' 2025-11-03T15:55:59.4116400Z adding 'torch/nn/init.py' 2025-11-03T15:55:59.4119230Z adding 'torch/nn/parameter.py' 2025-11-03T15:55:59.4119920Z adding 'torch/nn/parameter.pyi' 2025-11-03T15:55:59.4122500Z adding 'torch/nn/attention/__init__.py' 2025-11-03T15:55:59.4123660Z adding 'torch/nn/attention/_utils.py' 2025-11-03T15:55:59.4126800Z adding 'torch/nn/attention/bias.py' 2025-11-03T15:55:59.4140680Z adding 'torch/nn/attention/flex_attention.py' 2025-11-03T15:55:59.4143340Z adding 'torch/nn/attention/varlen.py' 2025-11-03T15:55:59.4144320Z adding 'torch/nn/attention/experimental/__init__.py' 2025-11-03T15:55:59.4147600Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-11-03T15:55:59.4148330Z adding 'torch/nn/backends/__init__.py' 2025-11-03T15:55:59.4149190Z adding 'torch/nn/backends/thnn.py' 2025-11-03T15:55:59.4150340Z adding 'torch/nn/intrinsic/__init__.py' 2025-11-03T15:55:59.4151940Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-11-03T15:55:59.4152820Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-11-03T15:55:59.4153770Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-11-03T15:55:59.4154920Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-11-03T15:55:59.4156140Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-11-03T15:55:59.4157020Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-11-03T15:55:59.4157840Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-11-03T15:55:59.4158910Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-11-03T15:55:59.4160260Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-11-03T15:55:59.4161320Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-11-03T15:55:59.4162120Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-11-03T15:55:59.4163140Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-11-03T15:55:59.4164180Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-11-03T15:55:59.4164990Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-11-03T15:55:59.4165760Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-11-03T15:55:59.4168270Z adding 'torch/nn/modules/__init__.py' 2025-11-03T15:55:59.4171180Z adding 'torch/nn/modules/_functions.py' 2025-11-03T15:55:59.4181290Z adding 'torch/nn/modules/activation.py' 2025-11-03T15:55:59.4184520Z adding 'torch/nn/modules/adaptive.py' 2025-11-03T15:55:59.4190200Z adding 'torch/nn/modules/batchnorm.py' 2025-11-03T15:55:59.4191450Z adding 'torch/nn/modules/channelshuffle.py' 2025-11-03T15:55:59.4198540Z adding 'torch/nn/modules/container.py' 2025-11-03T15:55:59.4208670Z adding 'torch/nn/modules/conv.py' 2025-11-03T15:55:59.4210100Z adding 'torch/nn/modules/distance.py' 2025-11-03T15:55:59.4212720Z adding 'torch/nn/modules/dropout.py' 2025-11-03T15:55:59.4214100Z adding 'torch/nn/modules/flatten.py' 2025-11-03T15:55:59.4216980Z adding 'torch/nn/modules/fold.py' 2025-11-03T15:55:59.4219770Z adding 'torch/nn/modules/instancenorm.py' 2025-11-03T15:55:59.4222960Z adding 'torch/nn/modules/lazy.py' 2025-11-03T15:55:59.4225380Z adding 'torch/nn/modules/linear.py' 2025-11-03T15:55:59.4241500Z adding 'torch/nn/modules/loss.py' 2025-11-03T15:55:59.4266540Z adding 'torch/nn/modules/module.py' 2025-11-03T15:55:59.4270200Z adding 'torch/nn/modules/normalization.py' 2025-11-03T15:55:59.4273400Z adding 'torch/nn/modules/padding.py' 2025-11-03T15:55:59.4274540Z adding 'torch/nn/modules/pixelshuffle.py' 2025-11-03T15:55:59.4282150Z adding 'torch/nn/modules/pooling.py' 2025-11-03T15:55:59.4293720Z adding 'torch/nn/modules/rnn.py' 2025-11-03T15:55:59.4298000Z adding 'torch/nn/modules/sparse.py' 2025-11-03T15:55:59.4306200Z adding 'torch/nn/modules/transformer.py' 2025-11-03T15:55:59.4309090Z adding 'torch/nn/modules/upsampling.py' 2025-11-03T15:55:59.4310170Z adding 'torch/nn/modules/utils.py' 2025-11-03T15:55:59.4311400Z adding 'torch/nn/parallel/__init__.py' 2025-11-03T15:55:59.4313360Z adding 'torch/nn/parallel/_functions.py' 2025-11-03T15:55:59.4316020Z adding 'torch/nn/parallel/comm.py' 2025-11-03T15:55:59.4318920Z adding 'torch/nn/parallel/data_parallel.py' 2025-11-03T15:55:59.4344370Z adding 'torch/nn/parallel/distributed.py' 2025-11-03T15:55:59.4346630Z adding 'torch/nn/parallel/parallel_apply.py' 2025-11-03T15:55:59.4348930Z adding 'torch/nn/parallel/replicate.py' 2025-11-03T15:55:59.4350610Z adding 'torch/nn/parallel/scatter_gather.py' 2025-11-03T15:55:59.4351600Z adding 'torch/nn/qat/__init__.py' 2025-11-03T15:55:59.4352730Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-11-03T15:55:59.4354110Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-11-03T15:55:59.4354990Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-11-03T15:55:59.4356060Z adding 'torch/nn/qat/modules/__init__.py' 2025-11-03T15:55:59.4356910Z adding 'torch/nn/qat/modules/conv.py' 2025-11-03T15:55:59.4358060Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-11-03T15:55:59.4358910Z adding 'torch/nn/qat/modules/linear.py' 2025-11-03T15:55:59.4359860Z adding 'torch/nn/quantizable/__init__.py' 2025-11-03T15:55:59.4360900Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-11-03T15:55:59.4362030Z adding 'torch/nn/quantizable/modules/activation.py' 2025-11-03T15:55:59.4362890Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-11-03T15:55:59.4364020Z adding 'torch/nn/quantized/__init__.py' 2025-11-03T15:55:59.4364850Z adding 'torch/nn/quantized/functional.py' 2025-11-03T15:55:59.4366230Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-11-03T15:55:59.4367470Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-11-03T15:55:59.4368330Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-11-03T15:55:59.4369180Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-11-03T15:55:59.4370310Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-11-03T15:55:59.4371160Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-11-03T15:55:59.4372010Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-11-03T15:55:59.4372950Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-11-03T15:55:59.4374470Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-11-03T15:55:59.4375390Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-11-03T15:55:59.4376170Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-11-03T15:55:59.4377040Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-11-03T15:55:59.4379040Z adding 'torch/nn/quantized/modules/__init__.py' 2025-11-03T15:55:59.4379590Z adding 'torch/nn/quantized/modules/activation.py' 2025-11-03T15:55:59.4380380Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-11-03T15:55:59.4381240Z adding 'torch/nn/quantized/modules/conv.py' 2025-11-03T15:55:59.4382330Z adding 'torch/nn/quantized/modules/dropout.py' 2025-11-03T15:55:59.4383200Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-11-03T15:55:59.4384070Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-11-03T15:55:59.4384840Z adding 'torch/nn/quantized/modules/linear.py' 2025-11-03T15:55:59.4386000Z adding 'torch/nn/quantized/modules/normalization.py' 2025-11-03T15:55:59.4386800Z adding 'torch/nn/quantized/modules/rnn.py' 2025-11-03T15:55:59.4387640Z adding 'torch/nn/quantized/modules/utils.py' 2025-11-03T15:55:59.4388930Z adding 'torch/nn/utils/__init__.py' 2025-11-03T15:55:59.4390350Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-11-03T15:55:59.4393310Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-11-03T15:55:59.4394820Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-11-03T15:55:59.4397580Z adding 'torch/nn/utils/clip_grad.py' 2025-11-03T15:55:59.4398950Z adding 'torch/nn/utils/convert_parameters.py' 2025-11-03T15:55:59.4400920Z adding 'torch/nn/utils/fusion.py' 2025-11-03T15:55:59.4401780Z adding 'torch/nn/utils/init.py' 2025-11-03T15:55:59.4403860Z adding 'torch/nn/utils/memory_format.py' 2025-11-03T15:55:59.4409860Z adding 'torch/nn/utils/parametrizations.py' 2025-11-03T15:55:59.4417700Z adding 'torch/nn/utils/parametrize.py' 2025-11-03T15:55:59.4428220Z adding 'torch/nn/utils/prune.py' 2025-11-03T15:55:59.4433520Z adding 'torch/nn/utils/rnn.py' 2025-11-03T15:55:59.4437060Z adding 'torch/nn/utils/spectral_norm.py' 2025-11-03T15:55:59.4439870Z adding 'torch/nn/utils/stateless.py' 2025-11-03T15:55:59.4442070Z adding 'torch/nn/utils/weight_norm.py' 2025-11-03T15:55:59.4443150Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-11-03T15:55:59.4444580Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-11-03T15:55:59.4447520Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-11-03T15:55:59.4448910Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-11-03T15:55:59.4451080Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-11-03T15:55:59.4453310Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-11-03T15:55:59.4454220Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-11-03T15:55:59.4456170Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-11-03T15:55:59.4457180Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-11-03T15:55:59.4458460Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-11-03T15:55:59.4459420Z adding 'torch/numa/__init__.py' 2025-11-03T15:55:59.4464370Z adding 'torch/numa/binding.py' 2025-11-03T15:55:59.4468170Z adding 'torch/onnx/__init__.py' 2025-11-03T15:55:59.4469180Z adding 'torch/onnx/_constants.py' 2025-11-03T15:55:59.4469880Z adding 'torch/onnx/_flags.py' 2025-11-03T15:55:59.4471490Z adding 'torch/onnx/errors.py' 2025-11-03T15:55:59.4472450Z adding 'torch/onnx/operators.py' 2025-11-03T15:55:59.4473240Z adding 'torch/onnx/symbolic_helper.py' 2025-11-03T15:55:59.4474120Z adding 'torch/onnx/symbolic_opset10.py' 2025-11-03T15:55:59.4475230Z adding 'torch/onnx/symbolic_opset11.py' 2025-11-03T15:55:59.4476160Z adding 'torch/onnx/symbolic_opset12.py' 2025-11-03T15:55:59.4476960Z adding 'torch/onnx/symbolic_opset13.py' 2025-11-03T15:55:59.4477690Z adding 'torch/onnx/symbolic_opset14.py' 2025-11-03T15:55:59.4478710Z adding 'torch/onnx/symbolic_opset15.py' 2025-11-03T15:55:59.4479460Z adding 'torch/onnx/symbolic_opset16.py' 2025-11-03T15:55:59.4480220Z adding 'torch/onnx/symbolic_opset17.py' 2025-11-03T15:55:59.4480920Z adding 'torch/onnx/symbolic_opset18.py' 2025-11-03T15:55:59.4481940Z adding 'torch/onnx/symbolic_opset19.py' 2025-11-03T15:55:59.4482670Z adding 'torch/onnx/symbolic_opset20.py' 2025-11-03T15:55:59.4483450Z adding 'torch/onnx/symbolic_opset7.py' 2025-11-03T15:55:59.4484240Z adding 'torch/onnx/symbolic_opset8.py' 2025-11-03T15:55:59.4485370Z adding 'torch/onnx/symbolic_opset9.py' 2025-11-03T15:55:59.4486180Z adding 'torch/onnx/testing.py' 2025-11-03T15:55:59.4486950Z adding 'torch/onnx/utils.py' 2025-11-03T15:55:59.4487790Z adding 'torch/onnx/verification.py' 2025-11-03T15:55:59.4489290Z adding 'torch/onnx/_internal/__init__.py' 2025-11-03T15:55:59.4490370Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-11-03T15:55:59.4491580Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-11-03T15:55:59.4494290Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-11-03T15:55:59.4500680Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-11-03T15:55:59.4502990Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-11-03T15:55:59.4505350Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-11-03T15:55:59.4506020Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-11-03T15:55:59.4521480Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-11-03T15:55:59.4523160Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-11-03T15:55:59.4526680Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-11-03T15:55:59.4529880Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-11-03T15:55:59.4530830Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-11-03T15:55:59.4531760Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-11-03T15:55:59.4532840Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-11-03T15:55:59.4534440Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-11-03T15:55:59.4535830Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-11-03T15:55:59.4540250Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-11-03T15:55:59.4543050Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-11-03T15:55:59.4544690Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-11-03T15:55:59.4549640Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-11-03T15:55:59.4550540Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-11-03T15:55:59.4552060Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-11-03T15:55:59.4553250Z adding 'torch/onnx/_internal/exporter/_type_casting.py' 2025-11-03T15:55:59.4556770Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-11-03T15:55:59.4557640Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-11-03T15:55:59.4558730Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-11-03T15:55:59.4559980Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-11-03T15:55:59.4561430Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-11-03T15:55:59.4562440Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-11-03T15:55:59.4564500Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-11-03T15:55:59.4567330Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-11-03T15:55:59.4568870Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-11-03T15:55:59.4569830Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symops.py' 2025-11-03T15:55:59.4570760Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-11-03T15:55:59.4573450Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-11-03T15:55:59.4575380Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-11-03T15:55:59.4576300Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-11-03T15:55:59.4585610Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-11-03T15:55:59.4586730Z adding 'torch/onnx/_internal/torchscript_exporter/__init__.py' 2025-11-03T15:55:59.4587740Z adding 'torch/onnx/_internal/torchscript_exporter/_experimental.py' 2025-11-03T15:55:59.4589220Z adding 'torch/onnx/_internal/torchscript_exporter/_globals.py' 2025-11-03T15:55:59.4592320Z adding 'torch/onnx/_internal/torchscript_exporter/_type_utils.py' 2025-11-03T15:55:59.4595360Z adding 'torch/onnx/_internal/torchscript_exporter/jit_utils.py' 2025-11-03T15:55:59.4597670Z adding 'torch/onnx/_internal/torchscript_exporter/onnx_proto_utils.py' 2025-11-03T15:55:59.4600630Z adding 'torch/onnx/_internal/torchscript_exporter/registration.py' 2025-11-03T15:55:59.4618040Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_helper.py' 2025-11-03T15:55:59.4624190Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py' 2025-11-03T15:55:59.4634430Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py' 2025-11-03T15:55:59.4637640Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py' 2025-11-03T15:55:59.4644740Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py' 2025-11-03T15:55:59.4647710Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py' 2025-11-03T15:55:59.4648790Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py' 2025-11-03T15:55:59.4651230Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py' 2025-11-03T15:55:59.4653540Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py' 2025-11-03T15:55:59.4655230Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py' 2025-11-03T15:55:59.4656280Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset19.py' 2025-11-03T15:55:59.4657710Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py' 2025-11-03T15:55:59.4658760Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset7.py' 2025-11-03T15:55:59.4662000Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py' 2025-11-03T15:55:59.4710320Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py' 2025-11-03T15:55:59.4724940Z adding 'torch/onnx/_internal/torchscript_exporter/utils.py' 2025-11-03T15:55:59.4729860Z adding 'torch/onnx/_internal/torchscript_exporter/verification.py' 2025-11-03T15:55:59.4734580Z adding 'torch/onnx/ops/__init__.py' 2025-11-03T15:55:59.4735640Z adding 'torch/onnx/ops/_dtype_mappings.py' 2025-11-03T15:55:59.4739880Z adding 'torch/onnx/ops/_impl.py' 2025-11-03T15:55:59.4742280Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-11-03T15:55:59.4743650Z adding 'torch/optim/__init__.py' 2025-11-03T15:55:59.4750550Z adding 'torch/optim/_adafactor.py' 2025-11-03T15:55:59.4751820Z adding 'torch/optim/_functional.py' 2025-11-03T15:55:59.4755330Z adding 'torch/optim/_muon.py' 2025-11-03T15:55:59.4759220Z adding 'torch/optim/adadelta.py' 2025-11-03T15:55:59.4763840Z adding 'torch/optim/adagrad.py' 2025-11-03T15:55:59.4771310Z adding 'torch/optim/adam.py' 2025-11-03T15:55:59.4776150Z adding 'torch/optim/adamax.py' 2025-11-03T15:55:59.4778260Z adding 'torch/optim/adamw.py' 2025-11-03T15:55:59.4781550Z adding 'torch/optim/asgd.py' 2025-11-03T15:55:59.4785750Z adding 'torch/optim/lbfgs.py' 2025-11-03T15:55:59.4802500Z adding 'torch/optim/lr_scheduler.py' 2025-11-03T15:55:59.4807700Z adding 'torch/optim/nadam.py' 2025-11-03T15:55:59.4818350Z adding 'torch/optim/optimizer.py' 2025-11-03T15:55:59.4823450Z adding 'torch/optim/radam.py' 2025-11-03T15:55:59.4827560Z adding 'torch/optim/rmsprop.py' 2025-11-03T15:55:59.4831160Z adding 'torch/optim/rprop.py' 2025-11-03T15:55:59.4835170Z adding 'torch/optim/sgd.py' 2025-11-03T15:55:59.4837510Z adding 'torch/optim/sparse_adam.py' 2025-11-03T15:55:59.4842110Z adding 'torch/optim/swa_utils.py' 2025-11-03T15:55:59.4843290Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-11-03T15:55:59.4844110Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-11-03T15:55:59.4845370Z adding 'torch/package/__init__.py' 2025-11-03T15:55:59.4847320Z adding 'torch/package/_digraph.py' 2025-11-03T15:55:59.4848170Z adding 'torch/package/_directory_reader.py' 2025-11-03T15:55:59.4849470Z adding 'torch/package/_importlib.py' 2025-11-03T15:55:59.4850630Z adding 'torch/package/_mangling.py' 2025-11-03T15:55:59.4851860Z adding 'torch/package/_mock.py' 2025-11-03T15:55:59.4853780Z adding 'torch/package/_package_pickler.py' 2025-11-03T15:55:59.4854410Z adding 'torch/package/_package_unpickler.py' 2025-11-03T15:55:59.4855920Z adding 'torch/package/_stdlib.py' 2025-11-03T15:55:59.4857710Z adding 'torch/package/file_structure_representation.py' 2025-11-03T15:55:59.4858880Z adding 'torch/package/find_file_dependencies.py' 2025-11-03T15:55:59.4860220Z adding 'torch/package/glob_group.py' 2025-11-03T15:55:59.4863060Z adding 'torch/package/importer.py' 2025-11-03T15:55:59.4873610Z adding 'torch/package/package_exporter.py' 2025-11-03T15:55:59.4881110Z adding 'torch/package/package_importer.py' 2025-11-03T15:55:59.4882120Z adding 'torch/package/analyze/__init__.py' 2025-11-03T15:55:59.4883180Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-11-03T15:55:59.4884000Z adding 'torch/package/analyze/is_from_package.py' 2025-11-03T15:55:59.4885190Z adding 'torch/package/analyze/trace_dependencies.py' 2025-11-03T15:55:59.4886520Z adding 'torch/profiler/__init__.py' 2025-11-03T15:55:59.4897170Z adding 'torch/profiler/_memory_profiler.py' 2025-11-03T15:55:59.4902370Z adding 'torch/profiler/_pattern_matcher.py' 2025-11-03T15:55:59.4905830Z adding 'torch/profiler/_utils.py' 2025-11-03T15:55:59.4906720Z adding 'torch/profiler/itt.py' 2025-11-03T15:55:59.4915950Z adding 'torch/profiler/profiler.py' 2025-11-03T15:55:59.4916750Z adding 'torch/profiler/python_tracer.py' 2025-11-03T15:55:59.4918700Z adding 'torch/quantization/__init__.py' 2025-11-03T15:55:59.4919360Z adding 'torch/quantization/_numeric_suite.py' 2025-11-03T15:55:59.4920290Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-11-03T15:55:59.4921830Z adding 'torch/quantization/_quantized_conversions.py' 2025-11-03T15:55:59.4922750Z adding 'torch/quantization/fake_quantize.py' 2025-11-03T15:55:59.4923610Z adding 'torch/quantization/fuse_modules.py' 2025-11-03T15:55:59.4924510Z adding 'torch/quantization/fuser_method_mappings.py' 2025-11-03T15:55:59.4925410Z adding 'torch/quantization/observer.py' 2025-11-03T15:55:59.4926290Z adding 'torch/quantization/qconfig.py' 2025-11-03T15:55:59.4927160Z adding 'torch/quantization/quant_type.py' 2025-11-03T15:55:59.4928070Z adding 'torch/quantization/quantization_mappings.py' 2025-11-03T15:55:59.4928910Z adding 'torch/quantization/quantize.py' 2025-11-03T15:55:59.4929790Z adding 'torch/quantization/quantize_fx.py' 2025-11-03T15:55:59.4930610Z adding 'torch/quantization/quantize_jit.py' 2025-11-03T15:55:59.4931410Z adding 'torch/quantization/stubs.py' 2025-11-03T15:55:59.4932280Z adding 'torch/quantization/utils.py' 2025-11-03T15:55:59.4933490Z adding 'torch/quantization/fx/__init__.py' 2025-11-03T15:55:59.4934460Z adding 'torch/quantization/fx/_equalize.py' 2025-11-03T15:55:59.4935260Z adding 'torch/quantization/fx/convert.py' 2025-11-03T15:55:59.4936060Z adding 'torch/quantization/fx/fuse.py' 2025-11-03T15:55:59.4936890Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-11-03T15:55:59.4937720Z adding 'torch/quantization/fx/graph_module.py' 2025-11-03T15:55:59.4938520Z adding 'torch/quantization/fx/match_utils.py' 2025-11-03T15:55:59.4939470Z adding 'torch/quantization/fx/pattern_utils.py' 2025-11-03T15:55:59.4940240Z adding 'torch/quantization/fx/prepare.py' 2025-11-03T15:55:59.4941220Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-11-03T15:55:59.4942010Z adding 'torch/quantization/fx/quantization_types.py' 2025-11-03T15:55:59.4942830Z adding 'torch/quantization/fx/utils.py' 2025-11-03T15:55:59.4944480Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-11-03T15:55:59.4946620Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-11-03T15:55:59.4947290Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-11-03T15:55:59.4948920Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-11-03T15:55:59.4956530Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-11-03T15:55:59.4957830Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-11-03T15:55:59.4959110Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-11-03T15:55:59.4960570Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-11-03T15:55:59.4961800Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-11-03T15:55:59.4963040Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-11-03T15:55:59.4964420Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-11-03T15:55:59.4983680Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-11-03T15:55:59.4985010Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-11-03T15:55:59.4987460Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-11-03T15:55:59.4988580Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-11-03T15:55:59.4991490Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-11-03T15:55:59.4994070Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-11-03T15:55:59.4996850Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-11-03T15:55:59.4999790Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-11-03T15:55:59.5000820Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-11-03T15:55:59.5001960Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-11-03T15:55:59.5002980Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-11-03T15:55:59.5003860Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-11-03T15:55:59.5005110Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-11-03T15:55:59.5009710Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-11-03T15:55:59.5010540Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-11-03T15:55:59.5012590Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-11-03T15:55:59.5013240Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-11-03T15:55:59.5014180Z adding 'torch/signal/__init__.py' 2025-11-03T15:55:59.5015250Z adding 'torch/signal/windows/__init__.py' 2025-11-03T15:55:59.5019080Z adding 'torch/signal/windows/windows.py' 2025-11-03T15:55:59.5024580Z adding 'torch/sparse/__init__.py' 2025-11-03T15:55:59.5027920Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-11-03T15:55:59.5029370Z adding 'torch/sparse/_semi_structured_ops.py' 2025-11-03T15:55:59.5045190Z adding 'torch/sparse/_triton_ops.py' 2025-11-03T15:55:59.5125500Z adding 'torch/sparse/_triton_ops_meta.py' 2025-11-03T15:55:59.5133290Z adding 'torch/sparse/semi_structured.py' 2025-11-03T15:55:59.5138180Z adding 'torch/special/__init__.py' 2025-11-03T15:55:59.5139230Z adding 'torch/testing/__init__.py' 2025-11-03T15:55:59.5152520Z adding 'torch/testing/_comparison.py' 2025-11-03T15:55:59.5156000Z adding 'torch/testing/_creation.py' 2025-11-03T15:55:59.5156990Z adding 'torch/testing/_utils.py' 2025-11-03T15:55:59.5158510Z adding 'torch/testing/_internal/__init__.py' 2025-11-03T15:55:59.5162720Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-11-03T15:55:59.5165690Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-11-03T15:55:59.5167770Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-11-03T15:55:59.5170860Z adding 'torch/testing/_internal/common_cuda.py' 2025-11-03T15:55:59.5187570Z adding 'torch/testing/_internal/common_device_type.py' 2025-11-03T15:55:59.5189690Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-11-03T15:55:59.5205090Z adding 'torch/testing/_internal/common_distributed.py' 2025-11-03T15:55:59.5206890Z adding 'torch/testing/_internal/common_dtype.py' 2025-11-03T15:55:59.5218470Z adding 'torch/testing/_internal/common_fsdp.py' 2025-11-03T15:55:59.5222170Z adding 'torch/testing/_internal/common_jit.py' 2025-11-03T15:55:59.5378520Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-11-03T15:55:59.5385300Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-11-03T15:55:59.5406390Z adding 'torch/testing/_internal/common_modules.py' 2025-11-03T15:55:59.5411810Z adding 'torch/testing/_internal/common_mps.py' 2025-11-03T15:55:59.5433880Z adding 'torch/testing/_internal/common_nn.py' 2025-11-03T15:55:59.5445550Z adding 'torch/testing/_internal/common_optimizers.py' 2025-11-03T15:55:59.5448280Z adding 'torch/testing/_internal/common_pruning.py' 2025-11-03T15:55:59.5467830Z adding 'torch/testing/_internal/common_quantization.py' 2025-11-03T15:55:59.5474640Z adding 'torch/testing/_internal/common_quantized.py' 2025-11-03T15:55:59.5477490Z adding 'torch/testing/_internal/common_subclass.py' 2025-11-03T15:55:59.5534250Z adding 'torch/testing/_internal/common_utils.py' 2025-11-03T15:55:59.5540860Z adding 'torch/testing/_internal/composite_compliance.py' 2025-11-03T15:55:59.5544470Z adding 'torch/testing/_internal/custom_op_db.py' 2025-11-03T15:55:59.5545870Z adding 'torch/testing/_internal/custom_tensor.py' 2025-11-03T15:55:59.5548190Z adding 'torch/testing/_internal/dist_utils.py' 2025-11-03T15:55:59.5549610Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-11-03T15:55:59.5550610Z adding 'torch/testing/_internal/fake_config_module.py' 2025-11-03T15:55:59.5551460Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-11-03T15:55:59.5552290Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-11-03T15:55:59.5554990Z adding 'torch/testing/_internal/hop_db.py' 2025-11-03T15:55:59.5558180Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-11-03T15:55:59.5561250Z adding 'torch/testing/_internal/inductor_utils.py' 2025-11-03T15:55:59.5567430Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-11-03T15:55:59.5574530Z adding 'torch/testing/_internal/jit_utils.py' 2025-11-03T15:55:59.5576620Z adding 'torch/testing/_internal/logging_tensor.py' 2025-11-03T15:55:59.5578700Z adding 'torch/testing/_internal/logging_utils.py' 2025-11-03T15:55:59.5579370Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-11-03T15:55:59.5580230Z adding 'torch/testing/_internal/static_module.py' 2025-11-03T15:55:59.5581400Z adding 'torch/testing/_internal/subclasses.py' 2025-11-03T15:55:59.5583430Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-11-03T15:55:59.5587620Z adding 'torch/testing/_internal/triton_utils.py' 2025-11-03T15:55:59.5588840Z adding 'torch/testing/_internal/two_tensor.py' 2025-11-03T15:55:59.5590110Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-11-03T15:55:59.5591060Z adding 'torch/testing/_internal/data/__init__.py' 2025-11-03T15:55:59.5591850Z adding 'torch/testing/_internal/data/network1.py' 2025-11-03T15:55:59.5592620Z adding 'torch/testing/_internal/data/network2.py' 2025-11-03T15:55:59.5593690Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-11-03T15:55:59.5595730Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-11-03T15:55:59.5597280Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-11-03T15:55:59.5602320Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-11-03T15:55:59.5667480Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-11-03T15:55:59.5670890Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-11-03T15:55:59.5671780Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-11-03T15:55:59.5676190Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-11-03T15:55:59.5678310Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-11-03T15:55:59.5679270Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-11-03T15:55:59.5680240Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-11-03T15:55:59.5681910Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-11-03T15:55:59.5683290Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-11-03T15:55:59.5684350Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-11-03T15:55:59.5685270Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-11-03T15:55:59.5691370Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-11-03T15:55:59.5692130Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-11-03T15:55:59.5693090Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-11-03T15:55:59.5697210Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-11-03T15:55:59.5698000Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-11-03T15:55:59.5715420Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-11-03T15:55:59.5718240Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-11-03T15:55:59.5720730Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-11-03T15:55:59.5721680Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-11-03T15:55:59.5722840Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-11-03T15:55:59.5760270Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-11-03T15:55:59.5762660Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-11-03T15:55:59.5763460Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-11-03T15:55:59.5765030Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-11-03T15:55:59.5767710Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-11-03T15:55:59.5768410Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-11-03T15:55:59.5769780Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-11-03T15:55:59.5778130Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-11-03T15:55:59.5780230Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-11-03T15:55:59.5780920Z adding 'torch/testing/_internal/generated/__init__.py' 2025-11-03T15:55:59.5814700Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-11-03T15:55:59.5818410Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-11-03T15:55:59.5844900Z adding 'torch/testing/_internal/opinfo/core.py' 2025-11-03T15:55:59.5847280Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-11-03T15:55:59.5850020Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-11-03T15:55:59.5851030Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-11-03T15:55:59.5856510Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-11-03T15:55:59.5859720Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-11-03T15:55:59.5871970Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-11-03T15:55:59.5882740Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-11-03T15:55:59.5885500Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-11-03T15:55:59.5890680Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-11-03T15:55:59.5894140Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-11-03T15:55:59.5895140Z adding 'torch/testing/_internal/optests/__init__.py' 2025-11-03T15:55:59.5897340Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-11-03T15:55:59.5898980Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-11-03T15:55:59.5899800Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-11-03T15:55:59.5906890Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-11-03T15:55:59.5908120Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-11-03T15:55:59.5909100Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-11-03T15:55:59.5909900Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-11-03T15:55:59.5910710Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-11-03T15:55:59.5913030Z adding 'torch/utils/__init__.py' 2025-11-03T15:55:59.5914220Z adding 'torch/utils/_appending_byte_serializer.py' 2025-11-03T15:55:59.5920990Z adding 'torch/utils/_config_module.py' 2025-11-03T15:55:59.5921940Z adding 'torch/utils/_config_typing.pyi' 2025-11-03T15:55:59.5924720Z adding 'torch/utils/_content_store.py' 2025-11-03T15:55:59.5926510Z adding 'torch/utils/_contextlib.py' 2025-11-03T15:55:59.5927480Z adding 'torch/utils/_cpp_embed_headers.py' 2025-11-03T15:55:59.5928590Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-11-03T15:55:59.5935310Z adding 'torch/utils/_cxx_pytree.py' 2025-11-03T15:55:59.5940010Z adding 'torch/utils/_debug_mode.py' 2025-11-03T15:55:59.5941230Z adding 'torch/utils/_device.py' 2025-11-03T15:55:59.5942110Z adding 'torch/utils/_dtype_abbrs.py' 2025-11-03T15:55:59.5943010Z adding 'torch/utils/_exposed_in.py' 2025-11-03T15:55:59.5944020Z adding 'torch/utils/_filelock.py' 2025-11-03T15:55:59.5945190Z adding 'torch/utils/_foreach_utils.py' 2025-11-03T15:55:59.5946230Z adding 'torch/utils/_functools.py' 2025-11-03T15:55:59.5948420Z adding 'torch/utils/_get_clean_triton.py' 2025-11-03T15:55:59.5948980Z adding 'torch/utils/_helion.py' 2025-11-03T15:55:59.5949980Z adding 'torch/utils/_import_utils.py' 2025-11-03T15:55:59.5950770Z adding 'torch/utils/_mode_utils.py' 2025-11-03T15:55:59.5952690Z adding 'torch/utils/_ordered_set.py' 2025-11-03T15:55:59.5961450Z adding 'torch/utils/_python_dispatch.py' 2025-11-03T15:55:59.5976850Z adding 'torch/utils/_pytree.py' 2025-11-03T15:55:59.5977970Z adding 'torch/utils/_stats.py' 2025-11-03T15:55:59.5979160Z adding 'torch/utils/_thunk.py' 2025-11-03T15:55:59.5982120Z adding 'torch/utils/_traceback.py' 2025-11-03T15:55:59.5983400Z adding 'torch/utils/_triton.py' 2025-11-03T15:55:59.5984300Z adding 'torch/utils/_typing_utils.py' 2025-11-03T15:55:59.5985520Z adding 'torch/utils/_zip.py' 2025-11-03T15:55:59.5990450Z adding 'torch/utils/backend_registration.py' 2025-11-03T15:55:59.5995020Z adding 'torch/utils/bundled_inputs.py' 2025-11-03T15:55:59.6012030Z adding 'torch/utils/checkpoint.py' 2025-11-03T15:55:59.6018860Z adding 'torch/utils/collect_env.py' 2025-11-03T15:55:59.6020030Z adding 'torch/utils/cpp_backtrace.py' 2025-11-03T15:55:59.6049540Z adding 'torch/utils/cpp_extension.py' 2025-11-03T15:55:59.6050840Z adding 'torch/utils/deterministic.py' 2025-11-03T15:55:59.6053110Z adding 'torch/utils/dlpack.py' 2025-11-03T15:55:59.6054020Z adding 'torch/utils/file_baton.py' 2025-11-03T15:55:59.6061140Z adding 'torch/utils/flop_counter.py' 2025-11-03T15:55:59.6063920Z adding 'torch/utils/hooks.py' 2025-11-03T15:55:59.6065310Z adding 'torch/utils/mkldnn.py' 2025-11-03T15:55:59.6067240Z adding 'torch/utils/mobile_optimizer.py' 2025-11-03T15:55:59.6067760Z adding 'torch/utils/model_zoo.py' 2025-11-03T15:55:59.6069710Z adding 'torch/utils/module_tracker.py' 2025-11-03T15:55:59.6071020Z adding 'torch/utils/show_pickle.py' 2025-11-03T15:55:59.6073210Z adding 'torch/utils/throughput_benchmark.py' 2025-11-03T15:55:59.6076040Z adding 'torch/utils/weak.py' 2025-11-03T15:55:59.6077170Z adding 'torch/utils/_strobelight/__init__.py' 2025-11-03T15:55:59.6079860Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-11-03T15:55:59.6080650Z adding 'torch/utils/_sympy/__init__.py' 2025-11-03T15:55:59.6092260Z adding 'torch/utils/_sympy/functions.py' 2025-11-03T15:55:59.6094670Z adding 'torch/utils/_sympy/interp.py' 2025-11-03T15:55:59.6096790Z adding 'torch/utils/_sympy/numbers.py' 2025-11-03T15:55:59.6100260Z adding 'torch/utils/_sympy/printers.py' 2025-11-03T15:55:59.6102850Z adding 'torch/utils/_sympy/reference.py' 2025-11-03T15:55:59.6103820Z adding 'torch/utils/_sympy/singleton_int.py' 2025-11-03T15:55:59.6105920Z adding 'torch/utils/_sympy/solve.py' 2025-11-03T15:55:59.6107120Z adding 'torch/utils/_sympy/symbol.py' 2025-11-03T15:55:59.6114940Z adding 'torch/utils/_sympy/value_ranges.py' 2025-11-03T15:55:59.6116280Z adding 'torch/utils/backcompat/__init__.py' 2025-11-03T15:55:59.6117360Z adding 'torch/utils/benchmark/__init__.py' 2025-11-03T15:55:59.6118490Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-11-03T15:55:59.6119790Z adding 'torch/utils/benchmark/examples/compare.py' 2025-11-03T15:55:59.6125720Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-11-03T15:55:59.6126080Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-11-03T15:55:59.6126360Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-11-03T15:55:59.6126650Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-11-03T15:55:59.6126940Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-11-03T15:55:59.6127190Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-11-03T15:55:59.6128470Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-11-03T15:55:59.6129710Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-11-03T15:55:59.6131070Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-11-03T15:55:59.6132190Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-11-03T15:55:59.6133210Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-11-03T15:55:59.6134170Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-11-03T15:55:59.6137700Z adding 'torch/utils/benchmark/utils/common.py' 2025-11-03T15:55:59.6140840Z adding 'torch/utils/benchmark/utils/compare.py' 2025-11-03T15:55:59.6142920Z adding 'torch/utils/benchmark/utils/compile.py' 2025-11-03T15:55:59.6144730Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-11-03T15:55:59.6148950Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-11-03T15:55:59.6150450Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-11-03T15:55:59.6151400Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-11-03T15:55:59.6156400Z adding 'torch/utils/benchmark/utils/timer.py' 2025-11-03T15:55:59.6157320Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-11-03T15:55:59.6159390Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-11-03T15:55:59.6160080Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-11-03T15:55:59.6161170Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-11-03T15:55:59.6169460Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-11-03T15:55:59.6204660Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-11-03T15:55:59.6208280Z adding 'torch/utils/data/__init__.py' 2025-11-03T15:55:59.6208950Z adding 'torch/utils/data/backward_compatibility.py' 2025-11-03T15:55:59.6228450Z adding 'torch/utils/data/dataloader.py' 2025-11-03T15:55:59.6232940Z adding 'torch/utils/data/dataset.py' 2025-11-03T15:55:59.6235250Z adding 'torch/utils/data/distributed.py' 2025-11-03T15:55:59.6236830Z adding 'torch/utils/data/graph.py' 2025-11-03T15:55:59.6238920Z adding 'torch/utils/data/graph_settings.py' 2025-11-03T15:55:59.6241770Z adding 'torch/utils/data/sampler.py' 2025-11-03T15:55:59.6243050Z adding 'torch/utils/data/_utils/__init__.py' 2025-11-03T15:55:59.6246610Z adding 'torch/utils/data/_utils/collate.py' 2025-11-03T15:55:59.6247490Z adding 'torch/utils/data/_utils/fetch.py' 2025-11-03T15:55:59.6248940Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-11-03T15:55:59.6250330Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-11-03T15:55:59.6253970Z adding 'torch/utils/data/_utils/worker.py' 2025-11-03T15:55:59.6254910Z adding 'torch/utils/data/datapipes/__init__.py' 2025-11-03T15:55:59.6257110Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-11-03T15:55:59.6259910Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-11-03T15:55:59.6263690Z adding 'torch/utils/data/datapipes/_typing.py' 2025-11-03T15:55:59.6266960Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-11-03T15:55:59.6272890Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-11-03T15:55:59.6275780Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-11-03T15:55:59.6276870Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-11-03T15:55:59.6278060Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-11-03T15:55:59.6281120Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-11-03T15:55:59.6282200Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-11-03T15:55:59.6283090Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-11-03T15:55:59.6284410Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-11-03T15:55:59.6287060Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-11-03T15:55:59.6288850Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-11-03T15:55:59.6293740Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-11-03T15:55:59.6294820Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-11-03T15:55:59.6296070Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-11-03T15:55:59.6298980Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-11-03T15:55:59.6299980Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-11-03T15:55:59.6301330Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-11-03T15:55:59.6302600Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-11-03T15:55:59.6303650Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-11-03T15:55:59.6304820Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-11-03T15:55:59.6305960Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-11-03T15:55:59.6307070Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-11-03T15:55:59.6308590Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-11-03T15:55:59.6309970Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-11-03T15:55:59.6311150Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-11-03T15:55:59.6312230Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-11-03T15:55:59.6313220Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-11-03T15:55:59.6316640Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-11-03T15:55:59.6319540Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-11-03T15:55:59.6320670Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-11-03T15:55:59.6321620Z adding 'torch/utils/hipify/__init__.py' 2025-11-03T15:55:59.6322660Z adding 'torch/utils/hipify/constants.py' 2025-11-03T15:55:59.6365380Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-11-03T15:55:59.6377620Z adding 'torch/utils/hipify/hipify_python.py' 2025-11-03T15:55:59.6378750Z adding 'torch/utils/hipify/version.py' 2025-11-03T15:55:59.6379750Z adding 'torch/utils/jit/__init__.py' 2025-11-03T15:55:59.6381700Z adding 'torch/utils/jit/log_extract.py' 2025-11-03T15:55:59.6386070Z adding 'torch/utils/model_dump/__init__.py' 2025-11-03T15:55:59.6386780Z adding 'torch/utils/model_dump/__main__.py' 2025-11-03T15:55:59.6390940Z adding 'torch/utils/model_dump/code.js' 2025-11-03T15:55:59.6391750Z adding 'torch/utils/model_dump/htm.mjs' 2025-11-03T15:55:59.6394770Z adding 'torch/utils/model_dump/preact.mjs' 2025-11-03T15:55:59.6395380Z adding 'torch/utils/model_dump/skeleton.html' 2025-11-03T15:55:59.6396390Z adding 'torch/utils/serialization/__init__.py' 2025-11-03T15:55:59.6397580Z adding 'torch/utils/serialization/config.py' 2025-11-03T15:55:59.6398450Z adding 'torch/utils/tensorboard/__init__.py' 2025-11-03T15:55:59.6399410Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-11-03T15:55:59.6400710Z adding 'torch/utils/tensorboard/_embedding.py' 2025-11-03T15:55:59.6401790Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-11-03T15:55:59.6402900Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-11-03T15:55:59.6406680Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-11-03T15:55:59.6408040Z adding 'torch/utils/tensorboard/_utils.py' 2025-11-03T15:55:59.6415900Z adding 'torch/utils/tensorboard/summary.py' 2025-11-03T15:55:59.6424320Z adding 'torch/utils/tensorboard/writer.py' 2025-11-03T15:55:59.6425600Z adding 'torch/utils/viz/__init__.py' 2025-11-03T15:55:59.6429700Z adding 'torch/utils/viz/_cycles.py' 2025-11-03T15:55:59.6434180Z adding 'torch/xpu/__init__.py' 2025-11-03T15:55:59.6435020Z adding 'torch/xpu/_gpu_trace.py' 2025-11-03T15:55:59.6436040Z adding 'torch/xpu/_utils.py' 2025-11-03T15:55:59.6438460Z adding 'torch/xpu/memory.py' 2025-11-03T15:55:59.6439650Z adding 'torch/xpu/random.py' 2025-11-03T15:55:59.6441710Z adding 'torch/xpu/streams.py' 2025-11-03T15:55:59.6520710Z adding 'torch-2.10.0a0+git3f6538f.dist-info/licenses/LICENSE' 2025-11-03T15:55:59.6528500Z adding 'torch-2.10.0a0+git3f6538f.dist-info/licenses/NOTICE' 2025-11-03T15:55:59.6529840Z adding 'torchgen/__init__.py' 2025-11-03T15:55:59.6531290Z adding 'torchgen/code_template.py' 2025-11-03T15:55:59.6532700Z adding 'torchgen/context.py' 2025-11-03T15:55:59.6556010Z adding 'torchgen/gen.py' 2025-11-03T15:55:59.6562470Z adding 'torchgen/gen_aoti_c_shim.py' 2025-11-03T15:55:59.6567290Z adding 'torchgen/gen_backend_stubs.py' 2025-11-03T15:55:59.6577370Z adding 'torchgen/gen_functionalization_type.py' 2025-11-03T15:55:59.6582810Z adding 'torchgen/gen_lazy_tensor.py' 2025-11-03T15:55:59.6584080Z adding 'torchgen/gen_schema_utils.py' 2025-11-03T15:55:59.6586530Z adding 'torchgen/gen_vmap_plumbing.py' 2025-11-03T15:55:59.6587460Z adding 'torchgen/local.py' 2025-11-03T15:55:59.6614090Z adding 'torchgen/model.py' 2025-11-03T15:55:59.6621370Z adding 'torchgen/native_function_generation.py' 2025-11-03T15:55:59.6625730Z adding 'torchgen/utils.py' 2025-11-03T15:55:59.6626620Z adding 'torchgen/yaml_utils.py' 2025-11-03T15:55:59.6627940Z adding 'torchgen/aoti/__init__.py' 2025-11-03T15:55:59.6629960Z adding 'torchgen/aoti/fallback_ops.py' 2025-11-03T15:55:59.6631010Z adding 'torchgen/api/__init__.py' 2025-11-03T15:55:59.6639850Z adding 'torchgen/api/autograd.py' 2025-11-03T15:55:59.6643750Z adding 'torchgen/api/cpp.py' 2025-11-03T15:55:59.6645010Z adding 'torchgen/api/dispatcher.py' 2025-11-03T15:55:59.6647400Z adding 'torchgen/api/functionalization.py' 2025-11-03T15:55:59.6651420Z adding 'torchgen/api/lazy.py' 2025-11-03T15:55:59.6652240Z adding 'torchgen/api/meta.py' 2025-11-03T15:55:59.6654390Z adding 'torchgen/api/native.py' 2025-11-03T15:55:59.6667120Z adding 'torchgen/api/python.py' 2025-11-03T15:55:59.6669600Z adding 'torchgen/api/structured.py' 2025-11-03T15:55:59.6673390Z adding 'torchgen/api/translate.py' 2025-11-03T15:55:59.6675480Z adding 'torchgen/api/ufunc.py' 2025-11-03T15:55:59.6677690Z adding 'torchgen/api/unboxing.py' 2025-11-03T15:55:59.6678570Z adding 'torchgen/api/types/__init__.py' 2025-11-03T15:55:59.6681620Z adding 'torchgen/api/types/signatures.py' 2025-11-03T15:55:59.6683380Z adding 'torchgen/api/types/types.py' 2025-11-03T15:55:59.6685520Z adding 'torchgen/api/types/types_base.py' 2025-11-03T15:55:59.6686450Z adding 'torchgen/dest/__init__.py' 2025-11-03T15:55:59.6692430Z adding 'torchgen/dest/lazy_ir.py' 2025-11-03T15:55:59.6693480Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-11-03T15:55:59.6694790Z adding 'torchgen/dest/native_functions.py' 2025-11-03T15:55:59.6703170Z adding 'torchgen/dest/register_dispatch_key.py' 2025-11-03T15:55:59.6707090Z adding 'torchgen/dest/ufunc.py' 2025-11-03T15:55:59.6707890Z adding 'torchgen/operator_versions/__init__.py' 2025-11-03T15:55:59.6710800Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-11-03T15:55:59.6711460Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-11-03T15:55:59.6787110Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-11-03T15:55:59.6791980Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-11-03T15:55:59.6793480Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-11-03T15:55:59.6794670Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-11-03T15:55:59.6795640Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-11-03T15:55:59.6796850Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-11-03T15:55:59.6797840Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-11-03T15:55:59.6798860Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-11-03T15:55:59.6799720Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-11-03T15:55:59.6800600Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-11-03T15:55:59.6801570Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-11-03T15:55:59.6802900Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-11-03T15:55:59.6804400Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-11-03T15:55:59.6805300Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-11-03T15:55:59.6806130Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-11-03T15:55:59.6807180Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-11-03T15:55:59.6808020Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-11-03T15:55:59.6809000Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-11-03T15:55:59.6809860Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-11-03T15:55:59.6810690Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-11-03T15:55:59.6811610Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-11-03T15:55:59.6812510Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-11-03T15:55:59.6813810Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-11-03T15:55:59.6814680Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-11-03T15:55:59.6816000Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-11-03T15:55:59.6816990Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-11-03T15:55:59.6818150Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-11-03T15:55:59.6818960Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-11-03T15:55:59.6819980Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-11-03T15:55:59.6821330Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-11-03T15:55:59.6822230Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-11-03T15:55:59.6823100Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-11-03T15:55:59.6830100Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-11-03T15:55:59.6831280Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-11-03T15:55:59.6832220Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-11-03T15:55:59.6833120Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-11-03T15:55:59.6834000Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-11-03T15:55:59.6834950Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-11-03T15:55:59.6835940Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-11-03T15:55:59.6836880Z adding 'torchgen/packaged/ATen/templates/ViewMetaClasses.cpp' 2025-11-03T15:55:59.6837760Z adding 'torchgen/packaged/ATen/templates/ViewMetaClasses.h' 2025-11-03T15:55:59.6838710Z adding 'torchgen/packaged/ATen/templates/ViewMetaClassesPythonBinding.cpp' 2025-11-03T15:55:59.6839660Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-11-03T15:55:59.6840480Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-11-03T15:55:59.6841870Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-11-03T15:55:59.6842750Z adding 'torchgen/packaged/autograd/README.md' 2025-11-03T15:55:59.6843510Z adding 'torchgen/packaged/autograd/__init__.py' 2025-11-03T15:55:59.6844480Z adding 'torchgen/packaged/autograd/build.bzl' 2025-11-03T15:55:59.6845440Z adding 'torchgen/packaged/autograd/context.py' 2025-11-03T15:55:59.6846740Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-11-03T15:55:59.6876730Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-11-03T15:55:59.6879590Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-11-03T15:55:59.6880820Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-11-03T15:55:59.6887590Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-11-03T15:55:59.6892900Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-11-03T15:55:59.6902560Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-11-03T15:55:59.6907020Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-11-03T15:55:59.6908390Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-11-03T15:55:59.6925060Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-11-03T15:55:59.6928490Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-11-03T15:55:59.6936940Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-11-03T15:55:59.6938350Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-11-03T15:55:59.6939390Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-11-03T15:55:59.6940480Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-11-03T15:55:59.6941400Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-11-03T15:55:59.6942530Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-11-03T15:55:59.6943540Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-11-03T15:55:59.6944380Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-11-03T15:55:59.6945240Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-11-03T15:55:59.6946130Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-11-03T15:55:59.6946990Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-11-03T15:55:59.6948060Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-11-03T15:55:59.6949010Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-11-03T15:55:59.6949880Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-11-03T15:55:59.6950990Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-11-03T15:55:59.6952000Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-11-03T15:55:59.6953240Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-11-03T15:55:59.6954240Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-11-03T15:55:59.6955100Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-11-03T15:55:59.6956160Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-11-03T15:55:59.6957170Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-11-03T15:55:59.6958300Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-11-03T15:55:59.6965610Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-11-03T15:55:59.6967300Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-11-03T15:55:59.6968250Z adding 'torchgen/selective_build/__init__.py' 2025-11-03T15:55:59.6970360Z adding 'torchgen/selective_build/operator.py' 2025-11-03T15:55:59.6973080Z adding 'torchgen/selective_build/selector.py' 2025-11-03T15:55:59.6973850Z adding 'torchgen/static_runtime/__init__.py' 2025-11-03T15:55:59.6976210Z adding 'torchgen/static_runtime/config.py' 2025-11-03T15:55:59.6978030Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-11-03T15:55:59.6982890Z adding 'torchgen/static_runtime/generator.py' 2025-11-03T15:55:59.6989670Z adding 'torch-2.10.0a0+git3f6538f.dist-info/METADATA' 2025-11-03T15:55:59.6990160Z adding 'torch-2.10.0a0+git3f6538f.dist-info/WHEEL' 2025-11-03T15:55:59.6990810Z adding 'torch-2.10.0a0+git3f6538f.dist-info/entry_points.txt' 2025-11-03T15:55:59.6991260Z adding 'torch-2.10.0a0+git3f6538f.dist-info/top_level.txt' 2025-11-03T15:55:59.7391980Z adding 'torch-2.10.0a0+git3f6538f.dist-info/RECORD' 2025-11-03T15:55:59.7805990Z removing build/bdist.macosx-14.0-arm64/wheel 2025-11-03T15:56:00.3353100Z Successfully built torch-2.10.0a0+git3f6538f-cp312-cp312-macosx_11_0_arm64.whl 2025-11-03T15:56:00.3437610Z + which sccache 2025-11-03T15:56:00.3465900Z + print_sccache_stats 2025-11-03T15:56:00.3466090Z + echo 'PyTorch Build Statistics' 2025-11-03T15:56:00.3466270Z + sccache --show-stats 2025-11-03T15:56:00.3466420Z PyTorch Build Statistics 2025-11-03T15:56:00.3496360Z Compile requests 5382 2025-11-03T15:56:00.3496600Z Compile requests executed 4961 2025-11-03T15:56:00.3496790Z Cache hits 4938 2025-11-03T15:56:00.3496980Z Cache hits (C/C++) 4938 2025-11-03T15:56:00.3497150Z Cache misses 1 2025-11-03T15:56:00.3497330Z Cache misses (C/C++) 1 2025-11-03T15:56:00.3497500Z Cache timeouts 0 2025-11-03T15:56:00.3497680Z Cache read errors 0 2025-11-03T15:56:00.3497860Z Forced recaches 0 2025-11-03T15:56:00.3498050Z Cache write errors 0 2025-11-03T15:56:00.3498230Z Compilation failures 2 2025-11-03T15:56:00.3498420Z Cache errors 20 2025-11-03T15:56:00.3498600Z Cache errors (C/C++) 20 2025-11-03T15:56:00.3498790Z Non-cacheable compilations 0 2025-11-03T15:56:00.3498980Z Non-cacheable calls 341 2025-11-03T15:56:00.3499160Z Non-compilation calls 80 2025-11-03T15:56:00.3499360Z Unsupported compiler calls 0 2025-11-03T15:56:00.3499550Z Average cache write 0.026 s 2025-11-03T15:56:00.3499750Z Average compiler 1.085 s 2025-11-03T15:56:00.3504520Z Average cache read hit 0.000 s 2025-11-03T15:56:00.3504730Z Failed distributed compilations 0 2025-11-03T15:56:00.3504860Z 2025-11-03T15:56:00.3504920Z Non-cacheable reasons: 2025-11-03T15:56:00.3505070Z unknown source language 329 2025-11-03T15:56:00.3505260Z multiple input files 6 2025-11-03T15:56:00.3505430Z @ 6 2025-11-03T15:56:00.3505640Z 2025-11-03T15:56:00.3505810Z Cache location s3, name: ossci-compiler-cache-circleci-v2, prefix: /trunk/ 2025-11-03T15:56:00.3506100Z Version (client) 0.4.1 2025-11-03T15:56:00.3506270Z + [[ -n 54375339888 ]] 2025-11-03T15:56:00.3506430Z + sccache --show-stats --stats-format json 2025-11-03T15:56:00.3506600Z + jq .stats 2025-11-03T15:56:00.4134040Z + python tools/stats/export_test_times.py 2025-11-03T15:56:00.5803530Z Exporting test times from test-infra 2025-11-03T15:56:00.5804200Z 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-11-03T15:56:00.5805230Z 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-11-03T15:56:00.5862670Z + assert_git_not_dirty 2025-11-03T15:56:00.5862870Z + [[ macos-py3-arm64 != *rocm* ]] 2025-11-03T15:56:00.5863060Z + [[ macos-py3-arm64 != *xla* ]] 2025-11-03T15:56:00.5869290Z ++ git status --porcelain 2025-11-03T15:56:00.5870380Z ++ grep -v '?? third_party' 2025-11-03T15:56:01.7892950Z ++ true 2025-11-03T15:56:01.7894120Z + git_status= 2025-11-03T15:56:01.7894290Z + [[ -n '' ]] 2025-11-03T15:56:01.7894680Z + rm -rfv /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ 2025-11-03T15:56:01.7953170Z /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang 2025-11-03T15:56:01.7953560Z /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ/clang++ 2025-11-03T15:56:01.7954150Z /var/folders/t4/p78vgy0x1f36n2z74mdx_l380000gn/T/tmp.kOuu3JCDRZ 2025-11-03T15:56:01.7979970Z ##[group]Run zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2025-11-03T15:56:01.7980570Z zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2025-11-03T15:56:01.8351300Z shell: /bin/bash -e {0} 2025-11-03T15:56:01.8351450Z env: 2025-11-03T15:56:01.8351570Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:56:01.8351740Z SCCACHE_USE_GHA: false 2025-11-03T15:56:01.8351940Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:56:01.8352210Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-11-03T15:56:01.8352420Z SCCACHE_S3_KEY_PREFIX: trunk 2025-11-03T15:56:01.8352560Z ##[endgroup] 2025-11-03T15:56:01.8680330Z adding: dist/ (stored 0%) 2025-11-03T15:56:03.3507300Z adding: dist/torch-2.10.0a0+git3f6538f-cp312-cp312-macosx_11_0_arm64.whl (deflated 3%) 2025-11-03T15:56:03.3632450Z adding: build/.ninja_log (deflated 90%) 2025-11-03T15:56:03.4123440Z adding: build/compile_commands.json (deflated 97%) 2025-11-03T15:56:03.4123710Z adding: .additional_ci_files/ (stored 0%) 2025-11-03T15:56:03.4195270Z adding: .additional_ci_files/test-times.json (deflated 66%) 2025-11-03T15:56:03.4474270Z adding: .additional_ci_files/test-class-times.json (deflated 64%) 2025-11-03T15:56:03.4647800Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-11-03T15:56:03.4648080Z with: 2025-11-03T15:56:03.4648200Z name: macos-py3-arm64 2025-11-03T15:56:03.4648360Z retention-days: 14 2025-11-03T15:56:03.4648510Z if-no-files-found: error 2025-11-03T15:56:03.4648660Z path: artifacts.zip 2025-11-03T15:56:03.4648810Z compression-level: 6 2025-11-03T15:56:03.4648960Z overwrite: false 2025-11-03T15:56:03.4649100Z include-hidden-files: false 2025-11-03T15:56:03.4649250Z env: 2025-11-03T15:56:03.4649380Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:56:03.4649600Z SCCACHE_USE_GHA: false 2025-11-03T15:56:03.4649820Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:56:03.4650120Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-11-03T15:56:03.4650340Z SCCACHE_S3_KEY_PREFIX: trunk 2025-11-03T15:56:03.4650500Z ##[endgroup] 2025-11-03T15:56:03.6059070Z With the provided path, there will be 1 file uploaded 2025-11-03T15:56:03.6061390Z Artifact name is valid! 2025-11-03T15:56:03.6061640Z Root directory input is valid! 2025-11-03T15:56:03.6682500Z Beginning upload of artifact content to blob storage 2025-11-03T15:56:04.0505810Z Uploaded bytes 8388608 2025-11-03T15:56:04.3634670Z Uploaded bytes 16777216 2025-11-03T15:56:04.5753600Z Uploaded bytes 25165824 2025-11-03T15:56:04.7185120Z Uploaded bytes 33554432 2025-11-03T15:56:04.7917550Z Uploaded bytes 41943040 2025-11-03T15:56:04.8864350Z Uploaded bytes 50331648 2025-11-03T15:56:05.0957900Z Uploaded bytes 58720256 2025-11-03T15:56:05.7180350Z Uploaded bytes 67108864 2025-11-03T15:56:06.1070480Z Uploaded bytes 71782575 2025-11-03T15:56:06.1386800Z Finished uploading artifact content to blob storage! 2025-11-03T15:56:06.1392120Z SHA256 digest of uploaded artifact zip is 8b82c23077c5ae648f188c0079fa0111a97d301bf38bbb0b3e2a226e7917d368 2025-11-03T15:56:06.1395370Z Finalizing artifact upload 2025-11-03T15:56:06.2332120Z Artifact macos-py3-arm64.zip successfully finalized. Artifact ID 4451032783 2025-11-03T15:56:06.2335450Z Artifact macos-py3-arm64 has been successfully uploaded! Final size is 71782575 bytes. Artifact ID is 4451032783 2025-11-03T15:56:06.2380450Z Artifact download URL: https://github.com/pytorch/pytorch/actions/runs/19040285449/artifacts/4451032783 2025-11-03T15:56:06.2634860Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-11-03T15:56:06.2635710Z with: 2025-11-03T15:56:06.2636300Z name: sccache-stats-macos-py3-arm64-runattempt1-54375339888 2025-11-03T15:56:06.2637040Z retention-days: 14 2025-11-03T15:56:06.2637530Z if-no-files-found: warn 2025-11-03T15:56:06.2638080Z path: sccache-stats-*.json 2025-11-03T15:56:06.2638550Z compression-level: 6 2025-11-03T15:56:06.2639030Z overwrite: false 2025-11-03T15:56:06.2639590Z include-hidden-files: false 2025-11-03T15:56:06.2640030Z env: 2025-11-03T15:56:06.2640390Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:56:06.2640970Z SCCACHE_USE_GHA: false 2025-11-03T15:56:06.2641650Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:56:06.2642530Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-11-03T15:56:06.2643180Z SCCACHE_S3_KEY_PREFIX: trunk 2025-11-03T15:56:06.2643660Z ##[endgroup] 2025-11-03T15:56:06.4245440Z With the provided path, there will be 1 file uploaded 2025-11-03T15:56:06.4247530Z Artifact name is valid! 2025-11-03T15:56:06.4248150Z Root directory input is valid! 2025-11-03T15:56:06.4840130Z Beginning upload of artifact content to blob storage 2025-11-03T15:56:06.5349250Z Uploaded bytes 530 2025-11-03T15:56:06.5526920Z Finished uploading artifact content to blob storage! 2025-11-03T15:56:06.5528490Z SHA256 digest of uploaded artifact zip is f86431701f1b9745c2215a836c5f6d4e1585c6962638a7df4eb840c6c505142b 2025-11-03T15:56:06.5529420Z Finalizing artifact upload 2025-11-03T15:56:06.6524520Z Artifact sccache-stats-macos-py3-arm64-runattempt1-54375339888.zip successfully finalized. Artifact ID 4451032864 2025-11-03T15:56:06.6526740Z Artifact sccache-stats-macos-py3-arm64-runattempt1-54375339888 has been successfully uploaded! Final size is 530 bytes. Artifact ID is 4451032864 2025-11-03T15:56:06.6547420Z Artifact download URL: https://github.com/pytorch/pytorch/actions/runs/19040285449/artifacts/4451032864 2025-11-03T15:56:06.6707970Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2025-11-03T15:56:06.6708540Z with: 2025-11-03T15:56:06.6708850Z minimum-available-space-in-gb: 6 2025-11-03T15:56:06.6709230Z env: 2025-11-03T15:56:06.6709530Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:56:06.6710000Z SCCACHE_USE_GHA: false 2025-11-03T15:56:06.6710490Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:56:06.6711120Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-11-03T15:56:06.6711640Z SCCACHE_S3_KEY_PREFIX: trunk 2025-11-03T15:56:06.6711990Z ##[endgroup] 2025-11-03T15:56:06.6734730Z ##[group]Run echo "Print the available disk space for manual inspection" 2025-11-03T15:56:06.6735540Z echo "Print the available disk space for manual inspection" 2025-11-03T15:56:06.6736080Z df -h 2025-11-03T15:56:06.6736360Z  2025-11-03T15:56:06.6736670Z function check_disk_space() { 2025-11-03T15:56:06.6737100Z  set +e 2025-11-03T15:56:06.6737380Z  2025-11-03T15:56:06.6737780Z  # Set the minimum requirement space to 6GB 2025-11-03T15:56:06.6738470Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2025-11-03T15:56:06.6739070Z  2025-11-03T15:56:06.6739440Z  # Use KB to avoid floating point warning like 3.1GB 2025-11-03T15:56:06.6740050Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2025-11-03T15:56:06.6740530Z  do 2025-11-03T15:56:06.6740870Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2025-11-03T15:56:06.6741360Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2025-11-03T15:56:06.6741760Z  2025-11-03T15:56:06.6742070Z  if [ "${MOUNT}" = "/" ]; then 2025-11-03T15:56:06.6742610Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2025-11-03T15:56:06.6743780Z  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-11-03T15:56:06.6744720Z  else 2025-11-03T15:56:06.6745290Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2025-11-03T15:56:06.6745940Z  fi 2025-11-03T15:56:06.6762240Z  fi 2025-11-03T15:56:06.6762570Z  done 2025-11-03T15:56:06.6762820Z  2025-11-03T15:56:06.6763050Z  set -e 2025-11-03T15:56:06.6763500Z } 2025-11-03T15:56:06.6763730Z  2025-11-03T15:56:06.6764050Z RESULT=$(check_disk_space) 2025-11-03T15:56:06.6764440Z echo "${RESULT}" 2025-11-03T15:56:06.6764770Z  2025-11-03T15:56:06.6765220Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2025-11-03T15:56:06.6766180Z  # 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-11-03T15:56:06.6767120Z  # https://github.com/pytorch/pytorch/issues/85440 2025-11-03T15:56:06.6767760Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2025-11-03T15:56:06.6768680Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2025-11-03T15:56:06.6769500Z  sudo launchctl stop com.apple.coresymbolicationd || true 2025-11-03T15:56:06.6769970Z  2025-11-03T15:56:06.6770240Z  # Clean up crash reports on the runner 2025-11-03T15:56:06.6770800Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2025-11-03T15:56:06.6771310Z  2025-11-03T15:56:06.6771630Z  # Also try to clean up torch.hub caching directory 2025-11-03T15:56:06.6772130Z  rm -rf "${HOME}/.cache/torch/hub" || true 2025-11-03T15:56:06.6772490Z  2025-11-03T15:56:06.6773130Z  # Purge conda 2025-11-03T15:56:06.6773470Z  conda clean -p -t -y || true 2025-11-03T15:56:06.6773830Z  # and pip cache 2025-11-03T15:56:06.6774160Z  pip cache purge || true 2025-11-03T15:56:06.6774460Z  2025-11-03T15:56:06.6774860Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2025-11-03T15:56:06.6775360Z  # Re-run the check 2025-11-03T15:56:06.6775690Z  RESULT=$(check_disk_space) 2025-11-03T15:56:06.6776040Z  echo "${RESULT}" 2025-11-03T15:56:06.6776330Z fi 2025-11-03T15:56:06.6776590Z  2025-11-03T15:56:06.6776860Z if [[ "${RESULT}" == *Failure* ]]; then 2025-11-03T15:56:06.6777200Z  df -h 2025-11-03T15:56:06.6777440Z  2025-11-03T15:56:06.6778230Z  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-11-03T15:56:06.6779210Z  exit 1 2025-11-03T15:56:06.6779460Z fi 2025-11-03T15:56:06.6810230Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-11-03T15:56:06.6810650Z env: 2025-11-03T15:56:06.6810900Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-11-03T15:56:06.6811270Z SCCACHE_USE_GHA: false 2025-11-03T15:56:06.6811730Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:56:06.6812310Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-11-03T15:56:06.6812730Z SCCACHE_S3_KEY_PREFIX: trunk 2025-11-03T15:56:06.6813070Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2025-11-03T15:56:06.6813390Z ##[endgroup] 2025-11-03T15:56:06.7130000Z Print the available disk space for manual inspection 2025-11-03T15:56:06.7158910Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-11-03T15:56:06.7159350Z /dev/disk5s2s1 256Gi 9.6Gi 165Gi 6% 404k 1.7G 0% / 2025-11-03T15:56:06.7159730Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-11-03T15:56:06.7160100Z /dev/disk5s5 256Gi 2.0Gi 165Gi 2% 2 1.7G 0% /System/Volumes/VM 2025-11-03T15:56:06.7160530Z /dev/disk5s3 256Gi 5.9Gi 165Gi 4% 1.1k 1.7G 0% /System/Volumes/Preboot 2025-11-03T15:56:06.7160950Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-11-03T15:56:06.7161400Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-11-03T15:56:06.7161990Z /dev/disk1s3 500Mi 936Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-11-03T15:56:06.7162440Z /dev/disk5s1 256Gi 72Gi 165Gi 31% 4.0M 1.7G 0% /System/Volumes/Data 2025-11-03T15:56:06.7162850Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-11-03T15:56:06.7163280Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-wJtxhC 2025-11-03T15:56:06.7545180Z Success: There is 172933632KB free space left in / for macOS, continue 2025-11-03T15:56:06.7596620Z Post job cleanup. 2025-11-03T15:56:06.8006060Z Removing virtual environment at /Users/ec2-user/runner/_work/_temp/venv-3.12-1762185092 2025-11-03T15:56:12.0657790Z Post job cleanup. 2025-11-03T15:56:12.0699490Z Post job cleanup. 2025-11-03T15:56:12.1444710Z [command]/usr/bin/git version 2025-11-03T15:56:12.1509360Z git version 2.39.5 (Apple Git-154) 2025-11-03T15:56:12.1527450Z Copying '/Users/ec2-user/.gitconfig' to '/Users/ec2-user/runner/_work/_temp/588d054b-1c43-4c35-8d3e-a0c639a3c357/.gitconfig' 2025-11-03T15:56:12.1534110Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/588d054b-1c43-4c35-8d3e-a0c639a3c357' before making global git config changes 2025-11-03T15:56:12.1534720Z Adding repository directory to the temporary git global config as a safe directory 2025-11-03T15:56:12.1537490Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2025-11-03T15:56:12.1609300Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-11-03T15:56:12.1672590Z [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-11-03T15:56:12.2518670Z Entering 'android/libs/fbjni' 2025-11-03T15:56:12.2634810Z Entering 'third_party/FP16' 2025-11-03T15:56:12.2735480Z Entering 'third_party/FXdiv' 2025-11-03T15:56:12.2834330Z Entering 'third_party/NNPACK' 2025-11-03T15:56:12.2933270Z Entering 'third_party/NVTX' 2025-11-03T15:56:12.3034240Z Entering 'third_party/VulkanMemoryAllocator' 2025-11-03T15:56:12.3134410Z Entering 'third_party/XNNPACK' 2025-11-03T15:56:12.3414210Z Entering 'third_party/aiter' 2025-11-03T15:56:12.3514290Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-11-03T15:56:12.3618090Z Entering 'third_party/benchmark' 2025-11-03T15:56:12.3718830Z Entering 'third_party/composable_kernel' 2025-11-03T15:56:12.3819530Z Entering 'third_party/cpp-httplib' 2025-11-03T15:56:12.3919230Z Entering 'third_party/cpuinfo' 2025-11-03T15:56:12.4018920Z Entering 'third_party/cudnn_frontend' 2025-11-03T15:56:12.4118760Z Entering 'third_party/cutlass' 2025-11-03T15:56:12.4220680Z Entering 'third_party/fbgemm' 2025-11-03T15:56:12.4337820Z Entering 'third_party/fbgemm/external/asmjit' 2025-11-03T15:56:12.4456320Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-11-03T15:56:12.4668280Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-11-03T15:56:12.4786520Z Entering 'third_party/fbgemm/external/cutlass' 2025-11-03T15:56:12.5024470Z Entering 'third_party/fbgemm/external/googletest' 2025-11-03T15:56:12.5142220Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-11-03T15:56:12.5258960Z Entering 'third_party/fbgemm/external/json' 2025-11-03T15:56:12.5367010Z Entering 'third_party/flash-attention' 2025-11-03T15:56:12.5466820Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-11-03T15:56:12.5567510Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-11-03T15:56:12.5671730Z Entering 'third_party/flatbuffers' 2025-11-03T15:56:12.5773990Z Entering 'third_party/fmt' 2025-11-03T15:56:12.5873320Z Entering 'third_party/gemmlowp/gemmlowp' 2025-11-03T15:56:12.5973570Z Entering 'third_party/gloo' 2025-11-03T15:56:12.6072080Z Entering 'third_party/googletest' 2025-11-03T15:56:12.6171100Z Entering 'third_party/ideep' 2025-11-03T15:56:12.6283940Z Entering 'third_party/ideep/mkl-dnn' 2025-11-03T15:56:12.6477790Z Entering 'third_party/ittapi' 2025-11-03T15:56:12.6579470Z Entering 'third_party/kineto' 2025-11-03T15:56:12.6677500Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-11-03T15:56:12.6775490Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-11-03T15:56:12.6875120Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-11-03T15:56:12.6976240Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-11-03T15:56:12.7075880Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-11-03T15:56:12.7174810Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-11-03T15:56:12.7275390Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-11-03T15:56:12.7374840Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-11-03T15:56:12.7473710Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-11-03T15:56:12.7573070Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-11-03T15:56:12.7671470Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp' 2025-11-03T15:56:12.7768090Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:56:12.7867290Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:56:12.7970730Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-11-03T15:56:12.8071790Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-11-03T15:56:12.8172500Z Entering 'third_party/kleidiai' 2025-11-03T15:56:12.8272610Z Entering 'third_party/mimalloc' 2025-11-03T15:56:12.8371540Z Entering 'third_party/nlohmann' 2025-11-03T15:56:12.8471150Z Entering 'third_party/onnx' 2025-11-03T15:56:12.8749210Z Entering 'third_party/onnx/third_party/pybind11' 2025-11-03T15:56:12.8858260Z Entering 'third_party/opentelemetry-cpp' 2025-11-03T15:56:12.8958100Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-11-03T15:56:12.9056260Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-11-03T15:56:12.9154580Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-11-03T15:56:12.9253620Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-11-03T15:56:12.9352630Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-11-03T15:56:12.9451970Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-11-03T15:56:12.9549760Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-11-03T15:56:12.9646000Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:56:12.9745400Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:56:12.9845480Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-11-03T15:56:12.9954470Z Entering 'third_party/pocketfft' 2025-11-03T15:56:13.0055580Z Entering 'third_party/protobuf' 2025-11-03T15:56:13.0174470Z Entering 'third_party/protobuf/third_party/benchmark' 2025-11-03T15:56:13.0291550Z Entering 'third_party/protobuf/third_party/googletest' 2025-11-03T15:56:13.0398690Z Entering 'third_party/psimd' 2025-11-03T15:56:13.0498630Z Entering 'third_party/pthreadpool' 2025-11-03T15:56:13.0598780Z Entering 'third_party/pybind11' 2025-11-03T15:56:13.0699230Z Entering 'third_party/python-peachpy' 2025-11-03T15:56:13.0798010Z Entering 'third_party/sleef' 2025-11-03T15:56:13.0901000Z Entering 'third_party/tensorpipe' 2025-11-03T15:56:13.1020860Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-11-03T15:56:13.1141460Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-11-03T15:56:13.1260620Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-11-03T15:56:13.1378120Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-11-03T15:56:13.1500470Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-11-03T15:56:13.1621500Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-11-03T15:56:13.1677690Z http.https://github.com/.extraheader 2025-11-03T15:56:13.1684760Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-11-03T15:56:13.1774560Z [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-11-03T15:56:13.2266360Z Entering 'android/libs/fbjni' 2025-11-03T15:56:13.2337060Z http.https://github.com/.extraheader 2025-11-03T15:56:13.2408130Z Entering 'third_party/FP16' 2025-11-03T15:56:13.2474590Z http.https://github.com/.extraheader 2025-11-03T15:56:13.2539740Z Entering 'third_party/FXdiv' 2025-11-03T15:56:13.2605170Z http.https://github.com/.extraheader 2025-11-03T15:56:13.2669340Z Entering 'third_party/NNPACK' 2025-11-03T15:56:13.2735830Z http.https://github.com/.extraheader 2025-11-03T15:56:13.2813250Z Entering 'third_party/NVTX' 2025-11-03T15:56:13.2879290Z http.https://github.com/.extraheader 2025-11-03T15:56:13.2944040Z Entering 'third_party/VulkanMemoryAllocator' 2025-11-03T15:56:13.3010020Z http.https://github.com/.extraheader 2025-11-03T15:56:13.3074590Z Entering 'third_party/XNNPACK' 2025-11-03T15:56:13.3140810Z http.https://github.com/.extraheader 2025-11-03T15:56:13.3210830Z Entering 'third_party/aiter' 2025-11-03T15:56:13.3278060Z http.https://github.com/.extraheader 2025-11-03T15:56:13.3342180Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-11-03T15:56:13.3407430Z http.https://github.com/.extraheader 2025-11-03T15:56:13.3476820Z Entering 'third_party/benchmark' 2025-11-03T15:56:13.3544020Z http.https://github.com/.extraheader 2025-11-03T15:56:13.3607940Z Entering 'third_party/composable_kernel' 2025-11-03T15:56:13.3673210Z http.https://github.com/.extraheader 2025-11-03T15:56:13.3740560Z Entering 'third_party/cpp-httplib' 2025-11-03T15:56:13.3807310Z http.https://github.com/.extraheader 2025-11-03T15:56:13.3871880Z Entering 'third_party/cpuinfo' 2025-11-03T15:56:13.3938060Z http.https://github.com/.extraheader 2025-11-03T15:56:13.4003030Z Entering 'third_party/cudnn_frontend' 2025-11-03T15:56:13.4068490Z http.https://github.com/.extraheader 2025-11-03T15:56:13.4133450Z Entering 'third_party/cutlass' 2025-11-03T15:56:13.4199020Z http.https://github.com/.extraheader 2025-11-03T15:56:13.4272710Z Entering 'third_party/fbgemm' 2025-11-03T15:56:13.4339950Z http.https://github.com/.extraheader 2025-11-03T15:56:13.4403750Z Entering 'third_party/fbgemm/external/asmjit' 2025-11-03T15:56:13.4469040Z http.https://github.com/.extraheader 2025-11-03T15:56:13.4533380Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-11-03T15:56:13.4598920Z http.https://github.com/.extraheader 2025-11-03T15:56:13.4666160Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-11-03T15:56:13.4732060Z http.https://github.com/.extraheader 2025-11-03T15:56:13.4796790Z Entering 'third_party/fbgemm/external/cutlass' 2025-11-03T15:56:13.4862380Z http.https://github.com/.extraheader 2025-11-03T15:56:13.4930020Z Entering 'third_party/fbgemm/external/googletest' 2025-11-03T15:56:13.4994650Z http.https://github.com/.extraheader 2025-11-03T15:56:13.5056830Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-11-03T15:56:13.5119820Z http.https://github.com/.extraheader 2025-11-03T15:56:13.5181850Z Entering 'third_party/fbgemm/external/json' 2025-11-03T15:56:13.5244540Z http.https://github.com/.extraheader 2025-11-03T15:56:13.5309390Z Entering 'third_party/flash-attention' 2025-11-03T15:56:13.5376260Z http.https://github.com/.extraheader 2025-11-03T15:56:13.5439900Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-11-03T15:56:13.5505260Z http.https://github.com/.extraheader 2025-11-03T15:56:13.5571440Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-11-03T15:56:13.5637070Z http.https://github.com/.extraheader 2025-11-03T15:56:13.5705800Z Entering 'third_party/flatbuffers' 2025-11-03T15:56:13.5773000Z http.https://github.com/.extraheader 2025-11-03T15:56:13.5846380Z Entering 'third_party/fmt' 2025-11-03T15:56:13.5905800Z http.https://github.com/.extraheader 2025-11-03T15:56:13.5970500Z Entering 'third_party/gemmlowp/gemmlowp' 2025-11-03T15:56:13.6035690Z http.https://github.com/.extraheader 2025-11-03T15:56:13.6100390Z Entering 'third_party/gloo' 2025-11-03T15:56:13.6165680Z http.https://github.com/.extraheader 2025-11-03T15:56:13.6230410Z Entering 'third_party/googletest' 2025-11-03T15:56:13.6295550Z http.https://github.com/.extraheader 2025-11-03T15:56:13.6360580Z Entering 'third_party/ideep' 2025-11-03T15:56:13.6425630Z http.https://github.com/.extraheader 2025-11-03T15:56:13.6487880Z Entering 'third_party/ideep/mkl-dnn' 2025-11-03T15:56:13.6551540Z http.https://github.com/.extraheader 2025-11-03T15:56:13.6619970Z Entering 'third_party/ittapi' 2025-11-03T15:56:13.6686460Z http.https://github.com/.extraheader 2025-11-03T15:56:13.6749420Z Entering 'third_party/kineto' 2025-11-03T15:56:13.6812620Z http.https://github.com/.extraheader 2025-11-03T15:56:13.6874250Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-11-03T15:56:13.6937370Z http.https://github.com/.extraheader 2025-11-03T15:56:13.7000300Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-11-03T15:56:13.7065340Z http.https://github.com/.extraheader 2025-11-03T15:56:13.7131250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-11-03T15:56:13.7196050Z http.https://github.com/.extraheader 2025-11-03T15:56:13.7260630Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-11-03T15:56:13.7324780Z http.https://github.com/.extraheader 2025-11-03T15:56:13.7388890Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-11-03T15:56:13.7452510Z http.https://github.com/.extraheader 2025-11-03T15:56:13.7514370Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-11-03T15:56:13.7577720Z http.https://github.com/.extraheader 2025-11-03T15:56:13.7643750Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-11-03T15:56:13.7707170Z http.https://github.com/.extraheader 2025-11-03T15:56:13.7771140Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-11-03T15:56:13.7835420Z http.https://github.com/.extraheader 2025-11-03T15:56:13.7899500Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-11-03T15:56:13.7964540Z http.https://github.com/.extraheader 2025-11-03T15:56:13.8028610Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-11-03T15:56:13.8092930Z http.https://github.com/.extraheader 2025-11-03T15:56:13.8156590Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp' 2025-11-03T15:56:13.8220090Z http.https://github.com/.extraheader 2025-11-03T15:56:13.8283030Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:56:13.8347160Z http.https://github.com/.extraheader 2025-11-03T15:56:13.8412950Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:56:13.8477430Z http.https://github.com/.extraheader 2025-11-03T15:56:13.8545820Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-11-03T15:56:13.8609580Z http.https://github.com/.extraheader 2025-11-03T15:56:13.8672250Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-11-03T15:56:13.8735850Z http.https://github.com/.extraheader 2025-11-03T15:56:13.8800430Z Entering 'third_party/kleidiai' 2025-11-03T15:56:13.8865020Z http.https://github.com/.extraheader 2025-11-03T15:56:13.8927810Z Entering 'third_party/mimalloc' 2025-11-03T15:56:13.8991330Z http.https://github.com/.extraheader 2025-11-03T15:56:13.9053880Z Entering 'third_party/nlohmann' 2025-11-03T15:56:13.9116880Z http.https://github.com/.extraheader 2025-11-03T15:56:13.9180470Z Entering 'third_party/onnx' 2025-11-03T15:56:13.9244260Z http.https://github.com/.extraheader 2025-11-03T15:56:13.9311910Z Entering 'third_party/onnx/third_party/pybind11' 2025-11-03T15:56:13.9376910Z http.https://github.com/.extraheader 2025-11-03T15:56:13.9441960Z Entering 'third_party/opentelemetry-cpp' 2025-11-03T15:56:13.9506760Z http.https://github.com/.extraheader 2025-11-03T15:56:13.9569210Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-11-03T15:56:13.9631960Z http.https://github.com/.extraheader 2025-11-03T15:56:13.9694920Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-11-03T15:56:13.9757650Z http.https://github.com/.extraheader 2025-11-03T15:56:13.9820210Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-11-03T15:56:13.9883550Z http.https://github.com/.extraheader 2025-11-03T15:56:13.9945760Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-11-03T15:56:14.0008320Z http.https://github.com/.extraheader 2025-11-03T15:56:14.0071100Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-11-03T15:56:14.0133770Z http.https://github.com/.extraheader 2025-11-03T15:56:14.0196760Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-11-03T15:56:14.0259690Z http.https://github.com/.extraheader 2025-11-03T15:56:14.0322220Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-11-03T15:56:14.0384830Z http.https://github.com/.extraheader 2025-11-03T15:56:14.0445800Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-11-03T15:56:14.0509810Z http.https://github.com/.extraheader 2025-11-03T15:56:14.0573830Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-11-03T15:56:14.0637010Z http.https://github.com/.extraheader 2025-11-03T15:56:14.0701610Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-11-03T15:56:14.0764790Z http.https://github.com/.extraheader 2025-11-03T15:56:14.0835630Z Entering 'third_party/pocketfft' 2025-11-03T15:56:14.0900940Z http.https://github.com/.extraheader 2025-11-03T15:56:14.0963370Z Entering 'third_party/protobuf' 2025-11-03T15:56:14.1027240Z http.https://github.com/.extraheader 2025-11-03T15:56:14.1089810Z Entering 'third_party/protobuf/third_party/benchmark' 2025-11-03T15:56:14.1153590Z http.https://github.com/.extraheader 2025-11-03T15:56:14.1216590Z Entering 'third_party/protobuf/third_party/googletest' 2025-11-03T15:56:14.1279450Z http.https://github.com/.extraheader 2025-11-03T15:56:14.1343850Z Entering 'third_party/psimd' 2025-11-03T15:56:14.1408690Z http.https://github.com/.extraheader 2025-11-03T15:56:14.1472660Z Entering 'third_party/pthreadpool' 2025-11-03T15:56:14.1538620Z http.https://github.com/.extraheader 2025-11-03T15:56:14.1602700Z Entering 'third_party/pybind11' 2025-11-03T15:56:14.1668320Z http.https://github.com/.extraheader 2025-11-03T15:56:14.1732900Z Entering 'third_party/python-peachpy' 2025-11-03T15:56:14.1798090Z http.https://github.com/.extraheader 2025-11-03T15:56:14.1862290Z Entering 'third_party/sleef' 2025-11-03T15:56:14.1928860Z http.https://github.com/.extraheader 2025-11-03T15:56:14.1994890Z Entering 'third_party/tensorpipe' 2025-11-03T15:56:14.2061430Z http.https://github.com/.extraheader 2025-11-03T15:56:14.2129280Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-11-03T15:56:14.2195040Z http.https://github.com/.extraheader 2025-11-03T15:56:14.2259580Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-11-03T15:56:14.2325140Z http.https://github.com/.extraheader 2025-11-03T15:56:14.2389780Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-11-03T15:56:14.2454620Z http.https://github.com/.extraheader 2025-11-03T15:56:14.2518910Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-11-03T15:56:14.2584100Z http.https://github.com/.extraheader 2025-11-03T15:56:14.2646820Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-11-03T15:56:14.2712220Z http.https://github.com/.extraheader 2025-11-03T15:56:14.2844960Z A job completed hook has been configured by the self-hosted runner administrator 2025-11-03T15:56:14.2887360Z ##[group]Run '/opt/runner_scripts/post-job.sh' 2025-11-03T15:56:14.2900380Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-11-03T15:56:14.2900600Z ##[endgroup] 2025-11-03T15:56:14.3195220Z + df -h 2025-11-03T15:56:14.3215090Z + ls -t /var/log/post_job 2025-11-03T15:56:14.3215800Z + awk 'NR>100' 2025-11-03T15:56:14.3216420Z + Checking if runner needs to be terminated...ok 2025-11-03T15:56:14.3216690Z + xargs rm -fv 2025-11-03T15:56:14.3216870Z + Outputting disk space 2025-11-03T15:56:14.3217170Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-11-03T15:56:14.3217530Z /dev/disk5s2s1 256Gi 9.6Gi 166Gi 6% 404k 1.7G 0% / 2025-11-03T15:56:14.3217900Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-11-03T15:56:14.3218330Z /dev/disk5s5 256Gi 2.0Gi 166Gi 2% 2 1.7G 0% /System/Volumes/VM 2025-11-03T15:56:14.3218760Z /dev/disk5s3 256Gi 5.9Gi 166Gi 4% 1.1k 1.7G 0% /System/Volumes/Preboot 2025-11-03T15:56:14.3219140Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-11-03T15:56:14.3219550Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-11-03T15:56:14.3219940Z /dev/disk1s3 500Mi 936Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-11-03T15:56:14.3220330Z /dev/disk5s1 256Gi 71Gi 166Gi 31% 4.0M 1.7G 0% /System/Volumes/Data 2025-11-03T15:56:14.3220750Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-11-03T15:56:14.3221150Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-wJtxhC 2025-11-03T15:56:14.3221500Z + Cleaning up old logs (Keep the latest 100) 2025-11-03T15:56:14.8750500Z + Restoring SSH key to be the skeleton key 2025-11-03T15:56:14.8826760Z Evaluate and set job outputs 2025-11-03T15:56:14.8829820Z Set output 'build-outcome' 2025-11-03T15:56:14.8831400Z Set output 'test-matrix' 2025-11-03T15:56:14.8831880Z Cleaning up orphan processes 2025-11-03T15:56:15.3133920Z Terminate orphan process: pid (11505) (sccache)